/* Main CSS file for the application - Blue Theme */

/* CSS Variables for Blue Theme */
:root {
    --primary-blue: #3b82f6;
    --primary-blue-dark: #2563eb;
    --primary-blue-light: #60a5fa;
    --secondary-blue: #1e40af;
    --accent-blue: #1d4ed8;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --light-pink: #fce7f3;
    --pink: #ec4899;
    --pink-light: #f9a8d4;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-padding-top: 100px; /* Offset for fixed navbar when scrolling to anchors */
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

/* Add scroll margin to all elements with IDs (service sections) */
[id] {
    scroll-margin-top: 120px; /* Extra spacing for fixed navbar when scrolling to sections */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 70px;
}

body.menu-open {
    overflow: hidden;
}

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

/* Navigation - Sticky White Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.navbar-scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.nav-brand .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand .brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-brand a:hover .brand-text {
    color: var(--primary-blue-dark);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-item.has-mega-menu[data-menu="services"] {
    position: static;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1.0625rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: var(--transition);
    border-radius: 4px;
    white-space: nowrap;
}

.nav-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-item.has-mega-menu:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-blue);
    background-color: var(--gray-100);
}

.nav-item.active .nav-link {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.nav-link.contact-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 6px;
    margin-left: 0.5rem;
}

.nav-link.contact-btn:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
}

/* Simple Mega Menu for Company */
.mega-menu-simple {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 0.5rem;
    z-index: 1001;
}

.nav-item.has-mega-menu[data-menu="company"]:hover .mega-menu-simple {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-simple ul {
    list-style: none;
}

.mega-menu-simple ul li {
    margin: 0;
}

.mega-menu-simple a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.mega-menu-simple a:hover {
    background-color: var(--gray-100);
    color: var(--primary-blue);
    padding-left: 2rem;
}

/* Full Width Mega Menu for Services */
.mega-menu-full {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    border-top: 1px solid var(--gray-200);
}

.mega-menu-full.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* Left Section: Main Service Options */
.mega-menu-left {
    padding-right: 1.5rem;
    border-right: 1px solid var(--gray-200);
}

.mega-menu-main-list {
    list-style: none;
}

.mega-menu-main-list li {
    margin-bottom: 0.5rem;
}

.mega-menu-main-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.mega-menu-main-list a:hover,
.mega-menu-main-list a.active {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 1.25rem;
}

.mega-menu-main-list .main-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.mega-menu-main-list .main-icon svg {
    width: 100%;
    height: 100%;
}

/* Middle Section: Sub-options */
.mega-menu-middle {
    padding: 0 1.5rem;
    border-right: 1px solid var(--gray-200);
}

.mega-menu-sub-list {
    list-style: none;
}

.mega-menu-sub-list li {
    margin-bottom: 0.75rem;
}

.mega-menu-sub-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.mega-menu-sub-list a:hover {
    background-color: var(--gray-100);
    color: var(--primary-blue);
    padding-left: 1.5rem;
}

.mega-menu-sub-list .sub-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.mega-menu-sub-list .sub-icon svg {
    width: 100%;
    height: 100%;
}

/* Right Section: Service Image */
.mega-menu-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
}

.mega-menu-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.mega-menu-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.mega-menu-image-placeholder svg {
    width: 80%;
    height: 80%;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    position: absolute;
    transition: var(--transition);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger.is-active .hamburger-inner {
    background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile-menu.is-active {
    max-height: 90vh;
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0625rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background-color: var(--gray-100);
    color: var(--primary-blue);
}

.mobile-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
    color: var(--text-gray);
}

.mobile-menu-item.active .mobile-arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--gray-50);
    padding: 0;
    display: block;
    visibility: visible;
}

.mobile-menu-item.active .mobile-submenu {
    max-height: 1000px;
    padding: 0.5rem 0;
    overflow: visible;
}

.mobile-submenu li {
    border-bottom: 1px solid var(--gray-200);
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-submenu a {
    display: block;
    padding: 0.75rem 2rem 0.75rem 3.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-item.active .mobile-submenu a {
    opacity: 1;
    visibility: visible;
}

.mobile-submenu a:hover {
    background-color: var(--gray-100);
    color: var(--primary-blue);
    padding-left: 4rem;
}

/* Flash Messages */
.flash-messages {
    padding: 1rem;
    margin-top: 70px;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-info {
    background-color: var(--light-blue);
    color: var(--dark-blue);
    border-left-color: var(--primary-blue);
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left-color: #10b981;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border-left-color: #f59e0b;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border-left-color: #ef4444;
}

/* Hero Section with Animation */
.hero-section {
    position: relative;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 0;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-section .typing-text {
    color: var(--primary-blue);
    position: relative;
}

.hero-section .typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-blue);
    margin-left: 2px;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section Button Animations */
.hero-section .btn {
    position: relative;
    overflow: hidden;
}

.hero-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 0;
}

.hero-section .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite 0.5s;
    z-index: 0;
}

.hero-section .btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.3));
    background-size: 200% 200%;
    animation: borderGlow 3s ease infinite;
    z-index: -1;
    opacity: 0.6;
}

.hero-section .btn-secondary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.25), rgba(59, 130, 246, 0.25));
    background-size: 200% 200%;
    animation: borderGlow 3s ease infinite 0.3s;
    z-index: -1;
    opacity: 0.5;
}

.hero-section .btn-primary,
.hero-section .btn-secondary {
    position: relative;
    z-index: 1;
}

.hero-section .btn-primary:hover::before,
.hero-section .btn-secondary:hover::before {
    animation: none;
}

.hero-section .btn-primary:hover::after,
.hero-section .btn-secondary:hover::after {
    animation: none;
    opacity: 0;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
}

/* Technology Section */
.technology-section {
    padding: 2.5rem 0;
    background: #f5f5f5;
    overflow: visible;
    position: relative;
}

.technology-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.technology-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
}

.technology-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 3rem;
}

.technology-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: scroll-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.technology-track:hover {
    animation-play-state: paused;
}

.technology-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    margin: 0.5rem 0;
}

.technology-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    z-index: 10;
    position: relative;
}

.technology-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.technology-item:hover img {
    filter: grayscale(0%);
}

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

/* Our Happy Clients Section */
.clients-section {
    padding: 2.5rem 0;
    background: #f5f5f5;
    overflow: visible;
    position: relative;
}

.clients-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.clients-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
}

.clients-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 3rem;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: scroll-clients 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0;
    will-change: transform;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    margin: 0.5rem 0;
}

.client-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    z-index: 10;
    position: relative;
}

.client-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.client-item:hover img {
    filter: grayscale(0%);
}

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

/* Our Company Section */
.company-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
    background-image: url('../images/bg/shape-bg2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.company-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.company-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.company-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.company-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.company-circle {
    position: relative;
    width: 500px;
    height: 500px;
    max-width: 100%;
}

.company-circle-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.company-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: zoomInOut 8s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    cursor: default !important;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background-color: var(--white);
    position: relative;
    cursor: default !important;
}

.stat-circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: var(--primary-blue-dark);
    stroke-width: 6;
    opacity: 0.3;
}

.stat-circle-progress {
    fill: none;
    stroke: var(--primary-blue-dark);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
}

.stat-item:hover .stat-circle-progress {
    animation: fillProgress 0.8s ease-in-out;
}

@keyframes fillProgress {
    0% {
        stroke-dashoffset: 283;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    position: relative;
    z-index: 1;
    cursor: default !important;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    cursor: default !important;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-image: url('../images/bg/counter-bg16.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

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

/* Features/Services Grid */
.features-section,
.content-section {
    padding: 5rem 0;
}

.features-section h2,
.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(236, 72, 153, 0.3) 20%,
        rgba(59, 130, 246, 0.4) 50%,
        rgba(37, 99, 235, 0.3) 80%,
        transparent 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 12px;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 80px;
    transition: transform 0.3s ease;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: color 0.3s ease, filter 0.3s ease;
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon {
    color: var(--primary-blue);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.service-card:hover .service-name {
    color: var(--primary-blue);
}

.service-card .service-icon-wrapper,
.service-card .service-name {
    position: relative;
    z-index: 1;
}

.service-card .service-name {
    transition: color 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.12) 0%,
        rgba(236, 72, 153, 0.18) 50%,
        rgba(59, 130, 246, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 12px;
    pointer-events: none;
}

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

/* Industries Section */
.industries-section {
    padding: 5rem 0 8rem 0; /* Extra bottom padding to accommodate overlapping pricing section */
    background-image: url('../images/bg/testi12-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.70) 50%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 0;
}

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

.industries-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ea580c; /* Orange color */
    margin-bottom: 1rem;
}

.industries-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default !important;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.industry-card:hover::before {
    width: 300px;
    height: 300px;
}

.industry-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.industry-icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    cursor: default !important;
}

.industry-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default !important;
    filter: grayscale(20%);
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0%) drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.industry-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
    cursor: default !important;
}

.industry-card:hover .industry-name {
    color: var(--primary-blue);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: visible;
}

.why-choose-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-us-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.why-choose-us-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #ea580c; /* Orange underline */
    border-radius: 2px;
}

.why-choose-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-choose-us-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.why-choose-us-stats {
    display: flex;
    gap: 3rem;
}

.why-choose-us-stat {
    display: flex;
    flex-direction: column;
    cursor: default !important;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    cursor: default !important;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    cursor: default !important;
}

.stat-number-orange {
    color: #ea580c; /* Orange */
}

.stat-number-blue {
    color: var(--primary-blue);
}

.why-choose-us-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem; /* Add bottom margin */
    padding-bottom: 3rem; /* Extra bottom padding so cards don't touch bottom */
    overflow: visible;
}

.why-choose-us-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default !important;
    border: 2px solid transparent;
    width: 100%;
    min-width: 300px; /* Increase card width slightly */
}

/* Move High-quality Code and Full-stack teams cards up */
.why-choose-us-card[data-card="1"],
.why-choose-us-card[data-card="3"] {
    transform: translateY(-30px);
}

/* Move Agile Approach and Tailored Solutions cards down */
.why-choose-us-card[data-card="2"],
.why-choose-us-card[data-card="4"] {
    transform: translateY(30px);
}

.why-choose-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
}

.why-choose-us-card[data-card="1"]::before {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); /* Orange gradient */
}

.why-choose-us-card[data-card="2"]::before {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); /* Light blue gradient */
}

.why-choose-us-card[data-card="3"]::before {
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%); /* Yellow/gold gradient */
}

.why-choose-us-card[data-card="4"]::before {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); /* Blue gradient */
}

.why-choose-us-card:hover::before {
    opacity: 1;
}

.why-choose-us-card[data-card="1"]:hover,
.why-choose-us-card[data-card="3"]:hover {
    transform: translateY(-38px);
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.4),
        0 20px 40px rgba(59, 130, 246, 0.45),
        0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.why-choose-us-card[data-card="2"]:hover,
.why-choose-us-card[data-card="4"]:hover {
    transform: translateY(22px);
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.4),
        0 20px 40px rgba(59, 130, 246, 0.45),
        0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.why-choose-us-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default !important;
}

.why-choose-us-icon-main,
.why-choose-us-icon-hover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: default !important;
}

.why-choose-us-icon-hover {
    opacity: 0;
}

.why-choose-us-card:hover .why-choose-us-icon-main {
    opacity: 0;
}

.why-choose-us-card:hover .why-choose-us-icon-hover {
    opacity: 1;
}

.why-choose-us-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    cursor: default !important;
}

.why-choose-us-card:hover .why-choose-us-card-title {
    color: var(--white);
}

.why-choose-us-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    cursor: default !important;
}

.why-choose-us-card:hover .why-choose-us-card-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
    position: relative;
    overflow: visible;
}

.testimonials-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.testimonials-carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    margin-top: 2rem;
    padding-top: 15px;
    padding-bottom: 4rem;
}

.testimonials-carousel {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
    padding: 0 calc((100vw - 1200px) / 2 + 20px);
    width: 100%;
    overflow: visible;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    cursor: default !important;
    flex: 0 0 calc((100% - 4.5rem) / 4);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
}


.testimonial-content {
    flex: 1 1 auto;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default !important;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-placeholder {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: default !important;
}

.testimonial-info {
    flex: 1;
    text-align: left;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    cursor: default !important;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
    cursor: default !important;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Blogs Section */
.blogs-section {
    padding: 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px; /* Ensure section is fully visible when scrolled to */
}

.blogs-section .container {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.blogs-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.blogs-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.blogs-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 300px);
    min-height: 700px;
    margin-top: 3rem;
    padding-bottom: 6rem;
    box-sizing: border-box;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.blogs-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.blogs-carousel {
    display: flex;
    flex-direction: row;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.blogs-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.blog-card {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    box-sizing: border-box;
    height: 100%;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem 2rem;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.blog-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.blog-text::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.blog-card-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 1rem 0;
    display: block;
    flex-shrink: 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.blog-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.blog-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
    width: fit-content;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    background: transparent;
    flex-shrink: 0;
}

.blog-read-more:hover {
    color: var(--white);
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.blog-read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.blog-read-more:hover::after {
    margin-left: 0.75rem;
    transform: translateX(4px);
}

.blog-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    align-self: center;
    z-index: 1;
    box-sizing: border-box;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.blogs-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: 300px;
    max-width: 500px;
}

.blog-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-nav-btn:active {
    transform: scale(0.95);
}

.blog-nav-btn svg {
    width: 20px;
    height: 20px;
}

.blog-indicators {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.blog-indicator.active {
    background-color: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

.blog-indicator:hover {
    background-color: var(--primary-blue-light);
}

/* SDLC Section */
.sdlc-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sdlc-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(96, 165, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: blobMove1 15s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes blobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-20px, 30px) rotate(240deg) scale(0.9);
    }
}

.sdlc-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(147, 197, 253, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: blobMove2 18s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes blobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-25px, 35px) rotate(180deg) scale(1.15);
    }
}

.sdlc-label {
    display: inline-block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin: 0 auto 1.5rem;
    display: block;
    width: fit-content;
}

.sdlc-section .container {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .sdlc-section .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.sdlc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sdlc-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sdlc-timeline-outer {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 2rem 0 5.5rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.sdlc-timeline-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.sdlc-timeline-wrapper::-webkit-scrollbar {
    display: none;
}

.sdlc-nav-btn {
    position: absolute;
    bottom: 1.5rem;
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sdlc-nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.sdlc-nav-btn:active {
    transform: scale(0.95);
}

.sdlc-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.sdlc-nav-prev {
    left: 1rem;
}

.sdlc-nav-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .sdlc-nav-prev {
        left: calc(50% - 60px);
    }
    
    .sdlc-nav-next {
        right: calc(50% - 60px);
    }
}

.sdlc-nav-btn svg {
    width: 20px;
    height: 20px;
}

.sdlc-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(59, 130, 246, 0.3) 10%,
        var(--primary-blue) 50%,
        rgba(59, 130, 246, 0.3) 90%,
        transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.sdlc-timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.sdlc-timeline-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4.5rem;
    min-width: fit-content;
    padding: 1rem 1rem;
    position: relative;
    z-index: 2;
    overflow: visible;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .sdlc-timeline-container {
        padding: 1rem max(1rem, calc((100vw - 1200px) / 2));
    }
}

@media (min-width: 1200px) {
    .sdlc-timeline-container {
        padding: 1rem max(1rem, calc((100vw - 1200px) / 2));
    }
}

.sdlc-phase-card {
    position: relative;
    flex-shrink: 0;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding-top: 0.5rem;
    cursor: default;
}

.sdlc-phase-connector {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, rgba(59, 130, 246, 0.3) 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

.sdlc-phase-card:last-child .sdlc-phase-connector {
    display: none;
}

.sdlc-phase-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid var(--primary-blue);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
}

.sdlc-phase-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.9),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    overflow: visible;
}

.sdlc-phase-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0;
    z-index: -1;
    animation: pulse 2s ease-out infinite;
}

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

.sdlc-phase-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease;
}

.sdlc-phase-card:hover .sdlc-phase-badge::after {
    opacity: 1;
    animation: badgeGlow 2s ease-in-out infinite;
}

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

.sdlc-phase-card:hover .sdlc-phase-badge {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.6),
        0 0 0 6px rgba(255, 255, 255, 0.95),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}


.sdlc-phase-content {
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    width: 100%;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
    border: 2px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.sdlc-phase-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sdlc-phase-card:hover .sdlc-phase-content::before {
    opacity: 1;
}

.sdlc-phase-card:hover .sdlc-phase-content {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 50%, var(--white) 100%);
}

.sdlc-phase-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sdlc-phase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.sdlc-phase-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sdlc-phase-card:hover .sdlc-phase-icon::before {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.sdlc-phase-card:hover .sdlc-phase-icon {
    transform: scale(1.2) rotate(8deg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.sdlc-phase-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sdlc-phase-card:hover .sdlc-phase-title {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.sdlc-phase-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.sdlc-step {
    font-size: 0.875rem;
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.sdlc-phase-card:hover .sdlc-step {
    color: var(--text-dark);
    background: var(--white);
    border-color: var(--primary-blue);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}



/* Responsive Design for SDLC */
@media (max-width: 1024px) {
    .sdlc-timeline-container {
        gap: 3.5rem;
        padding: 1rem 2rem;
        justify-content: flex-start;
    }
    
    .sdlc-phase-card {
        width: 280px;
    }
    
    .sdlc-phase-connector {
        width: 2.5rem;
    }
    
    .sdlc-timeline-outer {
        padding-bottom: 5.5rem;
    }
    
    .sdlc-nav-btn {
        width: 50px;
        height: 50px;
        bottom: 1.25rem;
        margin-bottom: 1.25rem;
        z-index: 30;
    }
    
    .sdlc-nav-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .sdlc-nav-prev {
        left: calc(50% - 65px);
    }
    
    .sdlc-nav-next {
        right: calc(50% - 65px);
    }
    
    .sdlc-nav-btn:hover {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .sdlc-section {
        padding: 3rem 0 4rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .sdlc-section::before,
    .sdlc-section::after {
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    .sdlc-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    .sdlc-title {
        font-size: 2rem;
    }
    
    .sdlc-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .sdlc-timeline-outer {
        padding: 1.5rem 0 5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
    }
    
    .sdlc-timeline-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .sdlc-timeline-container {
        padding: 1rem 1rem;
        box-sizing: border-box;
    }
    
    .sdlc-nav-prev {
        left: 0.5rem;
    }
    
    .sdlc-nav-next {
        right: 0.5rem;
    }
    
    .sdlc-nav-btn {
        width: 46px;
        height: 46px;
        bottom: 1.25rem;
        margin-bottom: 1rem;
        z-index: 30;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .sdlc-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .sdlc-nav-prev {
        left: calc(50% - 60px);
    }
    
    .sdlc-nav-next {
        right: calc(50% - 60px);
    }
    
    .sdlc-timeline-container {
        gap: 2.5rem;
        padding: 1rem 1.5rem;
        justify-content: flex-start;
    }
    
    .sdlc-phase-card {
        width: 260px;
    }
    
    .sdlc-phase-badge {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .sdlc-phase-icon {
        width: 72px;
        height: 72px;
    }
    
    .sdlc-phase-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .sdlc-phase-title {
        font-size: 1.375rem;
    }
    
    .sdlc-step {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .sdlc-section {
        padding: 2.5rem 0 3rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .sdlc-section::before,
    .sdlc-section::after {
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    .sdlc-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        box-sizing: border-box;
    }
    
    .sdlc-title {
        font-size: 1.75rem;
    }
    
    .sdlc-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .sdlc-timeline-outer {
        padding: 1rem 0 4.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
    }
    
    .sdlc-timeline-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .sdlc-timeline-container {
        padding: 1rem 0.75rem;
        box-sizing: border-box;
    }
    
    .sdlc-nav-prev {
        left: 0.25rem;
    }
    
    .sdlc-nav-next {
        right: 0.25rem;
    }
    
    .sdlc-nav-btn {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        margin-bottom: 0.75rem;
        z-index: 30;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .sdlc-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .sdlc-nav-prev {
        left: calc(50% - 55px);
    }
    
    .sdlc-nav-next {
        right: calc(50% - 55px);
    }
    
    .sdlc-timeline-container {
        gap: 2rem;
        padding: 1rem 1rem;
        justify-content: flex-start;
    }
    
    .sdlc-phase-card {
        width: 240px;
    }
    
    .sdlc-phase-badge {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .sdlc-phase-content {
        padding: 1.75rem 1.5rem;
    }
    
    .sdlc-phase-icon {
        width: 64px;
        height: 64px;
    }
    
    .sdlc-phase-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .sdlc-phase-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .sdlc-step {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .sdlc-phase-connector {
        width: 1.5rem;
    }
}

/* Get In Touch Section */
.get-in-touch-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.get-in-touch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.get-in-touch-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Information Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.contact-info-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 2rem 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary-blue);
}

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

.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    align-items: center;
    width: 100%;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.01em;
    word-break: break-word;
    text-align: center;
}

.contact-value:hover {
    color: var(--primary-blue);
}

.contact-link-icon {
    color: var(--text-gray);
    transition: all 0.3s ease;
    opacity: 0.6;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.contact-card:hover .contact-link-icon {
    color: var(--primary-blue);
    transform: translate(4px, -4px);
    opacity: 1;
}

/* Contact Form Side */
.get-in-touch-section .contact-form-wrapper {
    background: var(--white);
    padding: 3.5rem;
    padding-bottom: 6rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
}

.get-in-touch-section .contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.contact-form-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

/* Contact Form Styles */
.get-in-touch-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Row - 2 Column Layout */
.get-in-touch-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Group */
.get-in-touch-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

/* Form Label */
.get-in-touch-section .form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: block;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

/* Form Inputs */
.get-in-touch-section .form-input,
.get-in-touch-section .form-select,
.get-in-touch-section .form-textarea {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fafbfc;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.get-in-touch-section .form-input:hover,
.get-in-touch-section .form-select:hover,
.get-in-touch-section .form-textarea:hover {
    border-color: var(--primary-blue-light);
    background: var(--white);
}

.get-in-touch-section .form-input:focus,
.get-in-touch-section .form-select:focus,
.get-in-touch-section .form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 4px 12px rgba(59, 130, 246, 0.08);
}

.get-in-touch-section .form-input::placeholder,
.get-in-touch-section .form-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

/* Textarea */
.get-in-touch-section .form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.6;
}

/* Select Dropdown */
.select-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.get-in-touch-section .form-select {
    appearance: none;
    padding-right: 3rem;
    cursor: pointer;
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-gray);
}

/* Verification Code Section */
.verification-code-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.verification-input {
    flex: 1;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.captcha-code {
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    min-width: 120px;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.captcha-refresh {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.captcha-refresh:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.captcha-refresh svg {
    width: 16px;
    height: 16px;
}

/* Submit Button */
.get-in-touch-section .submit-btn {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.75rem;
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.3),
        0 2px 8px rgba(59, 130, 246, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.get-in-touch-section .submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.4),
        0 4px 12px rgba(59, 130, 246, 0.3);
}

.get-in-touch-section .submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.3),
        0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: #f3f4f6; /* Light gray background */
    margin-top: -100px; /* Overlap the why choose us section above */
    position: relative;
    z-index: 10;
}

.pricing-label {
    display: inline-block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin: 0 auto 1rem;
}

.pricing-section .container {
    text-align: center;
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.4),
        0 20px 40px rgba(59, 130, 246, 0.45),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pricing-badge-silver,
.pricing-badge-platinum {
    background-color: var(--primary-blue);
    color: var(--white);
}

.pricing-badge-gold {
    background-color: var(--white);
    color: var(--primary-blue);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-featured .pricing-icon {
    color: var(--white);
}

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

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-amount {
    color: var(--white);
}

.pricing-role {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.pricing-card-featured .pricing-role {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    width: 100%;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.pricing-card-featured .pricing-feature {
    color: var(--white);
}

.pricing-feature-included svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.pricing-card-featured .pricing-feature-included svg {
    color: var(--white);
}

.pricing-feature-excluded {
    opacity: 0.5;
}

.pricing-feature-excluded svg {
    color: #ef4444;
}

.pricing-feature span {
    flex: 1;
}

.pricing-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

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

.pricing-btn-blue:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

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

.pricing-btn-white:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

/* About Us Hero Section */
.about-hero-section {
    padding: 6rem 0 5rem;
    margin-top: 70px;
    background: var(--white);
    position: relative;
    overflow: visible;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

.services-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-services-section {
    margin-top: 2rem;
}

.about-services-scroll {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 0.5rem 0 3rem;
}

.about-services-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: scroll-services 25s linear infinite;
    width: fit-content;
    will-change: transform;
}

.about-services-track:hover {
    animation-play-state: paused;
}

.about-service-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--light-blue);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
    white-space: nowrap;
}

.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
    background: var(--white);
}

.about-service-card svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.about-service-card span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.about-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    min-height: 500px;
    width: 100%;
}

.about-hero-bg-animation {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    border-radius: 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 25%, #60a5fa 50%, #f472b6 75%, #3b82f6 100%);
    background-size: 400% 400%;
    animation: aboutGradientShift 10s ease infinite;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

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

.about-hero-bg-animation .bg-circle {
    position: absolute;
    border-radius: 50%;
    animation: aboutFloatCircle 10s ease-in-out infinite;
    pointer-events: none;
}

.about-hero-bg-animation .bg-circle-1 {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -50px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.5) 30%, rgba(59, 130, 246, 0.2) 60%, transparent 85%);
    animation-delay: 0s;
    filter: blur(50px);
    z-index: 1;
}

.about-hero-bg-animation .bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -40px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.85) 0%, rgba(236, 72, 153, 0.55) 30%, rgba(236, 72, 153, 0.25) 60%, transparent 85%);
    animation-delay: 3s;
    filter: blur(45px);
    z-index: 1;
}

.about-hero-bg-animation .bg-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.75) 0%, rgba(59, 130, 246, 0.45) 30%, rgba(59, 130, 246, 0.2) 60%, transparent 85%);
    animation-delay: 6s;
    filter: blur(40px);
    z-index: 1;
}

.about-hero-bg-animation .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    animation: aboutPulseRotate 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.about-hero-bg-animation .bg-shape-1 {
    width: 140px;
    height: 140px;
    top: 15%;
    left: 10%;
    animation-delay: 1s;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.4);
}

.about-hero-bg-animation .bg-shape-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    background: rgba(255, 255, 255, 0.6);
    animation-delay: 4s;
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.7), 0 0 90px rgba(255, 255, 255, 0.3);
}

.about-hero-bg-animation .bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-hero-bg-animation .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    animation: aboutParticleFloat 12s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.6);
    z-index: 3;
}

.about-hero-bg-animation .particle:nth-child(1) {
    left: 25%;
    top: 100%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
}

.about-hero-bg-animation .particle:nth-child(2) {
    left: 55%;
    top: 100%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
}

.about-hero-bg-animation .particle:nth-child(3) {
    left: 75%;
    top: 100%;
    width: 10px;
    height: 10px;
    animation-delay: 4s;
}

.about-hero-bg-animation .particle:nth-child(4) {
    left: 35%;
    top: 100%;
    width: 7px;
    height: 7px;
    animation-delay: 6s;
}

.about-hero-bg-animation .particle:nth-child(5) {
    left: 65%;
    top: 100%;
    width: 9px;
    height: 9px;
    animation-delay: 8s;
}

.about-hero-bg-animation .particle:nth-child(6) {
    left: 45%;
    top: 100%;
    width: 8px;
    height: 8px;
    animation-delay: 10s;
}

@keyframes aboutFloatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.15);
    }
    66% {
        transform: translate(-25px, 35px) scale(0.9);
    }
}

@keyframes aboutPulseRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes aboutParticleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-550px) translateX(50px);
        opacity: 0;
    }
}

/* Blog Cards on Blog Page */
.blog-card-page {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-page:hover {
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-blue-light);
}

.blog-image-wrapper-page {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.blog-card-page:hover .blog-image-wrapper-page {
    transform: scale(1.05);
}

.blog-content-page {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-content-page p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-content-page a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
}

.blog-content-page a:hover {
    color: var(--primary-blue-dark);
    gap: 0.75rem;
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    align-items: center;
}

.pagination-item {
    display: flex;
    align-items: center;
}

.pagination-link,
.pagination-link-active,
.pagination-link-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    cursor: pointer;
}

.pagination-link:hover:not(.pagination-link-disabled) {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.pagination-link-active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    cursor: default;
    font-weight: 600;
}

.pagination-link-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-100);
}

.pagination-link-prev,
.pagination-link-next {
    padding: 0.5rem;
}

.pagination-item-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.pagination-ellipsis {
    color: var(--text-gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pagination-link,
    .pagination-link-active,
    .pagination-link-disabled {
        min-width: 36px;
        height: 36px;
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .pagination-list {
        gap: 0.375rem;
    }
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Page Specific Styles */
.section-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(40px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-intro-text .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-intro-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro-image,
.story-image,
.quality-image,
.founder-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-intro-image:hover,
.story-image:hover,
.quality-image:hover,
.founder-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.image-placeholder:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.image-placeholder-small {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.image-placeholder-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.image-placeholder-medium {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.image-placeholder-medium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.image-placeholder-cert {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.image-placeholder-cert:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* About Page Technology Scroll Animation */
.about-tech-wrapper {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0;
    margin-top: 3rem;
}

.about-tech-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 3rem;
}

.about-tech-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0;
    will-change: transform;
}

.about-tech-track:hover {
    animation-play-state: paused;
}

.about-tech-item {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    margin: 0.5rem 0;
}

.about-tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
    z-index: 10;
    position: relative;
}

.about-tech-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.about-tech-item:hover img {
    filter: grayscale(0%);
}

.mission-vision-image {
    margin-top: 3rem;
}

.story-timeline-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-image-item {
    text-align: center;
    transition: var(--transition);
}

.timeline-image-item:hover {
    transform: translateY(-10px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.differentiators-image {
    margin-top: 3rem;
}

.quality-certifications {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cert-image-item {
    transition: var(--transition);
}

.cert-image-item:hover {
    transform: translateY(-5px);
}

.values-image {
    margin-top: 3rem;
}

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

.achievement-image-item {
    transition: var(--transition);
}

.achievement-image-item:hover {
    transform: translateY(-10px);
}

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

.mission-vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
    justify-content: flex-start;
}

.mv-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mission-vision-card:hover .mv-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.mission-vision-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.mission-vision-card:hover h3 {
    margin-bottom: 1rem;
}

.mv-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: hintPulse 2s ease-in-out infinite;
}

.mv-hint svg {
    width: 16px;
    height: 16px;
    animation: hintBounce 2s ease-in-out infinite;
}

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

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

.mission-vision-card:hover .mv-hint {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.mission-vision-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s, max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
    transform: translateY(20px);
}

.mission-vision-card:hover p {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}

.story-content,
.quality-content,
.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.story-text p,
.quality-text p,
.founder-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    row-gap: 1.75rem;
}

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

.differentiator-card {
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.differentiator-card:hover::before {
    left: 100%;
}

.differentiator-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.differentiator-card:hover .diff-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.diff-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.differentiator-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.differentiator-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
    flex: 1;
}

.quality-points {
    margin-top: 2rem;
}

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

.quality-point svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.quality-point span {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.founder-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.125rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.promise-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.promise-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.promise-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.promise-item:hover .promise-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.promise-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.promise-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.proof-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.proof-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.4),
        0 20px 40px rgba(59, 130, 246, 0.45),
        0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-blue);
}

.proof-card:hover .proof-number {
    transform: scale(1.1);
    color: var(--primary-blue-dark);
}

.proof-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.proof-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Responsive Styles for About Page */
@media (max-width: 968px) {
    .about-hero-section {
        padding: 5rem 0 4rem;
    }
    
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-hero-right {
        display: none;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-intro-content,
    .story-content,
    .quality-content,
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiators-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .story-timeline-images,
    .quality-certifications {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-tech-item {
        width: 90px;
        height: 90px;
        padding: 0.875rem;
    }
    
    .about-tech-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .differentiators-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
    }
    
    .story-timeline-images,
    .quality-certifications,
    .achievements-images {
        grid-template-columns: 1fr;
    }
    
    .about-tech-item {
        width: 80px;
        height: 80px;
        padding: 0.75rem;
    }
    
    .about-tech-track {
        gap: 1.25rem;
    }
}

/* Call to Action Section - About Page */
.cta-section-about {
    background-image: url('../images/bg/cta-bg16.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
    z-index: 1;
}

.cta-section-about .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-about .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.cta-section-about .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section-about .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section-about .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Forms - Legacy styles for contact page */
.content-section .contact-form-wrapper {
    max-width: 700px;
    margin: 2rem auto;
}

.content-section .contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.content-section .form-group {
    margin-bottom: 1.5rem;
}

.content-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.content-section .form-group input,
.content-section .form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.content-section .form-group input:focus,
.content-section .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.content-section .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Error Pages */
.error-page {
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-page h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-page p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background-image: url('../images/bg/testi-home7.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 0;
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.4) 0%, rgba(30, 64, 175, 0.35) 100%);
    z-index: 0;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Footer Company Section */
.footer-company {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
}

.footer-section p {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.95;
}

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

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

.footer-section ul li:not(.footer-contact .contact-info-list li) {
    display: block;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.95;
}

.footer-section ul li a:hover {
    color: var(--white);
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(147, 197, 253, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background-color: rgba(147, 197, 253, 0.5);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

/* Contact Info Section */
.footer-contact .contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ea580c;
    margin-top: 0.125rem;
}

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

.footer-contact .contact-info-list li span:not(.contact-icon),
.footer-contact .contact-info-list li a {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
    opacity: 0.95;
}

.footer-contact .contact-info-list li a:hover {
    color: var(--white);
    opacity: 1;
}

/* Newsletter Section */
.footer-newsletter {
    max-width: 100%;
}

.newsletter-description {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-input::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.newsletter-submit {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ea580c;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.newsletter-submit:hover {
    background: #f97316;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.newsletter-submit svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    background: transparent;
    position: relative;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.footer-copyright {
    color: var(--white);
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    opacity: 0.95;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

.footer-link-separator {
    color: #ea580c;
    font-size: 0.875rem;
    margin: 0 0.25rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-blue-dark);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    z-index: 10;
    opacity: 0;
}

.scroll-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1.25rem;
    }
    
    .footer-brand-text {
        font-size: 1.375rem;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 1.0625rem;
        margin-bottom: 1.25rem;
    }
    
    .social-links {
        gap: 0.625rem;
        margin-top: 1.25rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a svg {
        width: 18px;
        height: 18px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-input {
        width: 100%;
        border-radius: 12px;
    }
    
    .newsletter-submit {
        width: 100%;
        border-radius: 12px;
        height: 44px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-right: 3.5rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-logo-img {
        height: 32px;
    }
    
    .footer-brand-text {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.8125rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom-content {
        padding-right: 3rem;
    }
    
    .scroll-to-top {
        width: 36px;
        height: 36px;
        bottom: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-menu {
        min-width: 700px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 500px;
        padding: 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
    }
    
    .technology-section {
        padding: 3rem 0;
    }
    
    .clients-section {
        padding: 3rem 0;
    }
    
    .clients-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .technology-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .technology-item {
        width: 100px;
        height: 100px;
        padding: 1.25rem;
    }
    
    .technology-track {
        gap: 2rem;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-title {
        font-size: 2rem;
    }
    
    .company-circle {
        width: 350px;
        height: 350px;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-circle {
        width: 120px;
        height: 120px;
    }
    
    .stat-circle-bg,
    .stat-circle-progress {
        stroke-width: 5;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .mega-menu-full {
        display: none;
    }
    
    .mega-menu-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mega-menu-left,
    .mega-menu-middle {
        border-right: none;
        border-left: none;
        padding-right: 0;
        padding-left: 0;
    }
    
    .mega-menu-right {
        padding-left: 0;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonial-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-height: 380px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .blogs-carousel-wrapper {
        height: calc(100vh - 180px);
        min-height: 600px;
    }

    .blogs-carousel-wrapper {
        min-height: auto;
        height: auto;
        padding-bottom: 5rem;
    }

    .blog-card {
        width: 100%;
        min-width: 100%;
        padding: 1.5rem 0;
        height: auto;
        align-items: flex-start;
    }

    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem 5rem 1.5rem;
        align-items: start;
        height: auto;
    }

    .blog-text {
        gap: 1.25rem;
        order: 2;
        height: auto;
        width: 100%;
    }

    .blog-image-wrapper {
        height: 280px;
        max-height: 280px;
        min-height: 280px;
        order: 1;
        width: 100%;
        margin-bottom: 0;
    }
    
    .blog-card-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        margin-top: 0;
    }
    
    .blog-content {
        gap: 1rem;
    }
    
    .blog-paragraph {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }
    
    .blog-read-more {
        margin-top: 1rem;
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }
    
    .blogs-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .blogs-navigation {
        gap: 1.5rem;
        padding: 0.75rem 1.5rem;
        bottom: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industries-title {
        font-size: 2rem;
    }
    
    .industry-card {
        min-height: 180px;
        padding: 2rem 1rem;
    }
    
    .industry-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-right {
        display: none;
    }
    
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .about-services-track {
        gap: 0.75rem;
    }
    
    .about-service-card {
        padding: 0.875rem 1.25rem;
    }
    
    .about-service-card span {
        font-size: 0.875rem;
    }
    
    .features-section h2,
    .content-section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .why-choose-us-section {
        padding: 4rem 0;
        overflow: visible;
    }
    
    .why-choose-us-content {
        gap: 3rem;
    }
    
    .why-choose-us-cards {
        gap: 1.5rem;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
        overflow: visible;
    }
    
    .why-choose-us-card {
        padding: 2rem 1.5rem;
        min-width: auto;
        overflow: visible;
    }
    
    .why-choose-us-card[data-card="1"],
    .why-choose-us-card[data-card="3"] {
        transform: translateY(-15px);
    }
    
    .why-choose-us-card[data-card="2"],
    .why-choose-us-card[data-card="4"] {
        transform: translateY(15px);
    }
    
    .why-choose-us-card[data-card="1"]:hover,
    .why-choose-us-card[data-card="3"]:hover {
        transform: translateY(-20px);
    }
    
    .why-choose-us-card[data-card="2"]:hover,
    .why-choose-us-card[data-card="4"]:hover {
        transform: translateY(10px);
    }
    
    .why-choose-us-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-us-card-title {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .why-choose-us-card-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .why-choose-us-title {
        font-size: 2.25rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .blogs-carousel-wrapper {
        min-height: auto;
        height: auto;
        padding-bottom: 4.5rem;
    }

    .blog-card {
        width: 100%;
        min-width: 100%;
        padding: 1rem 0;
        height: auto;
        align-items: flex-start;
    }

    .blog-content-wrapper {
        padding: 0 1rem 5rem 1rem;
        gap: 1.5rem;
        align-items: start;
        height: auto;
    }

    .blog-text {
        order: 2;
        width: 100%;
    }

    .blog-card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        margin-top: 0;
    }

    .blog-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        -webkit-line-clamp: 2;
    }
    
    .blog-content {
        gap: 0.875rem;
    }

    .blog-image-wrapper {
        height: 220px;
        max-height: 220px;
        min-height: 220px;
        order: 1;
        width: 100%;
        margin-bottom: 0;
    }
    
    .blog-read-more {
        margin-top: 0.75rem;
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .blogs-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

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

    .blogs-navigation {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .blog-nav-btn {
        width: 40px;
        height: 40px;
    }

    .blog-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .blog-indicator {
        width: 10px;
        height: 10px;
    }

    .blog-indicator.active {
        width: 24px;
    }
    
    .why-choose-us-section {
        padding: 2.5rem 0;
    }
    
    .why-choose-us-content {
        gap: 2.5rem;
    }
    
    .why-choose-us-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-us-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
        line-height: 1.4;
    }
    
    .why-choose-us-description {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-us-stats {
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 0.85rem;
    }
    
    .why-choose-us-cards {
        gap: 1.25rem;
    }
    
    .why-choose-us-card {
        padding: 1.5rem 1.25rem;
    }
    
    .why-choose-us-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .why-choose-us-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .why-choose-us-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .get-in-touch-section {
        padding: 3rem 0;
    }
    
    .get-in-touch-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .get-in-touch-content {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-section {
        gap: 1.5rem;
    }
    
    .contact-info-title {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .contact-info-title,
    .contact-form-title {
        font-size: 2rem;
    }
    
    .get-in-touch-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 0.5rem;
        padding-bottom: 4rem;
        margin-top: 2rem;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .get-in-touch-section .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .get-in-touch-section .contact-form {
        gap: 1.25rem;
        width: 100%;
    }
    
    .get-in-touch-section .form-group {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .get-in-touch-section .form-input,
    .get-in-touch-section .form-select,
    .get-in-touch-section .form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        border-width: 1.5px;
        box-sizing: border-box;
        margin: 0;
    }
    
    .select-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
    }
    
    .get-in-touch-section .form-textarea {
        min-height: 120px;
    }
    
    .verification-code-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .verification-input {
        width: 100%;
    }
    
    .captcha-wrapper {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }
    
    .captcha-code {
        flex: 1;
        min-width: 0;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .captcha-refresh {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .get-in-touch-section .submit-btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.9375rem;
    }
    
    .nav-brand .logo-img {
        height: 28px;
    }
    
    .nav-brand .brand-text {
        font-size: 1.25rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .technology-section {
        padding: 2.5rem 0;
    }
    
    .technology-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .technology-item {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }
    
    .technology-track {
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industries-title {
        font-size: 1.75rem;
    }
    
    .industry-card {
        min-height: 160px;
        padding: 1.5rem 1rem;
    }
    
    .industry-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 0.75rem;
    }
    
    .industry-name {
        font-size: 1rem;
    }
    
    .why-choose-us-section {
        padding: 3rem 0;
    }
    
    .why-choose-us-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-us-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .why-choose-us-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .why-choose-us-stats {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .why-choose-us-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .why-choose-us-card {
        padding: 2rem 1.5rem;
        min-width: auto;
        transform: none !important;
    }
    
    .why-choose-us-card[data-card="1"],
    .why-choose-us-card[data-card="2"],
    .why-choose-us-card[data-card="3"],
    .why-choose-us-card[data-card="4"] {
        transform: none !important;
    }
    
    .why-choose-us-card[data-card="1"]:hover,
    .why-choose-us-card[data-card="2"]:hover,
    .why-choose-us-card[data-card="3"]:hover,
    .why-choose-us-card[data-card="4"]:hover {
        transform: translateY(-5px) !important;
    }
    
    .why-choose-us-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-us-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-us-card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .get-in-touch-section {
        padding: 2.5rem 0;
    }
    
    .get-in-touch-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .get-in-touch-content {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-info-section {
        gap: 1.25rem;
    }
    
    .contact-info-title {
        font-size: 1.625rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .contact-info-title,
    .contact-form-title {
        font-size: 1.75rem;
    }
    
    .get-in-touch-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem 0.25rem;
        padding-bottom: 3.5rem;
        margin-top: 1.5rem;
        border-radius: 20px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-form-description {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .get-in-touch-section .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .get-in-touch-section .contact-form {
        gap: 1rem;
        width: 100%;
        padding: 0 0.25rem;
    }
    
    .get-in-touch-section .form-group {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 0;
    }
    
    .get-in-touch-section .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .get-in-touch-section .form-input,
    .get-in-touch-section .form-select,
    .get-in-touch-section .form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.8125rem 0.9375rem;
        font-size: 0.9375rem;
        border-width: 1.5px;
        border-radius: 10px;
        box-sizing: border-box;
        margin: 0;
    }
    
    .select-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
    }
    
    .get-in-touch-section .form-textarea {
        min-height: 110px;
    }
    
    .select-arrow {
        right: 0.9375rem;
        width: 18px;
        height: 18px;
    }
    
    .verification-code-wrapper {
        flex-direction: column;
        gap: 0.875rem;
        align-items: stretch;
    }
    
    .verification-input {
        width: 100%;
    }
    
    .captcha-wrapper {
        width: 100%;
        justify-content: space-between;
        gap: 0.625rem;
    }
    
    .captcha-code {
        flex: 1;
        min-width: 0;
        padding: 0.8125rem 0.9375rem;
        font-size: 0.9375rem;
        letter-spacing: 2px;
        border-radius: 10px;
    }
    
    .captcha-refresh {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .captcha-refresh svg {
        width: 14px;
        height: 14px;
    }
    
    .get-in-touch-section .submit-btn {
        padding: 0.9375rem 1.75rem;
        font-size: 0.8125rem;
        margin-top: 0.5rem;
        border-radius: 10px;
        letter-spacing: 0.5px;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 0.875rem;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 22px;
        height: 22px;
    }
    
    .contact-label {
        font-size: 0.6875rem;
        letter-spacing: 0.3px;
    }
    
    .contact-value {
        font-size: 0.875rem;
    }
    
    .pricing-section {
        margin-top: -60px;
        padding: 3rem 0;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .company-content {
        grid-template-columns: 1fr;
    }
    
    .company-title {
        font-size: 1.75rem;
    }
    
    .company-circle {
        width: 300px;
        height: 300px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-circle-bg,
    .stat-circle-progress {
        stroke-width: 4;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .error-page h1 {
        font-size: 5rem;
    }
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Services Page Styles */
.services-hero-section {
    padding: 6rem 0 5rem;
    margin-top: 70px;
    background: var(--white);
    position: relative;
}



.services-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.services-overview-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

.service-card-main {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card-main.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

.service-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-card-main .service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card-main:hover .service-icon-wrapper {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.service-card-main .service-icon-wrapper svg {
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card-main:hover .service-icon-wrapper svg {
    color: var(--white);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How We Work Section */
.how-we-work-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.process-step-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-blue);
    line-height: 1;
    opacity: 0.3;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.process-step-icon svg {
    color: var(--primary-blue);
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.process-step:hover .process-step-icon svg {
    color: var(--white);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Choose Services Section */
.why-choose-services-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Tabs Component */
.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: 2px;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.tab-btn:hover::before {
    width: 100%;
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    font-weight: 600;
}

.tab-btn.active::before {
    width: 100%;
}

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

.tab-btn:hover svg,
.tab-btn.active svg {
    transform: scale(1.1);
}

.tab-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

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

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

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

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

.tab-content-image {
    position: relative;
    animation: slideInRight 0.6s ease-out;
}

.tab-content-text {
    animation: slideInLeft 0.6s ease-out;
}

.tab-content-image .image-placeholder {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-content-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmerImage 3s infinite;
}

@keyframes shimmerImage {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tab-content-image:hover .image-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}

.tab-content-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tab-content-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFeature 0.5s ease-out forwards;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }
.feature-list li:nth-child(5) { animation-delay: 0.5s; }

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

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.feature-list li:hover::before {
    transform: scale(1.3) rotate(360deg);
}

.feature-list li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Progress Bars */
.stats-progress-container {
    margin-top: 3rem;
}

.stats-progress-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat-progress-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-progress-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s ease;
}

.stat-progress-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.stat-progress-item:hover::before {
    left: 100%;
}

.stat-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-progress-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-progress-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerProgress 2s infinite;
}

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

.stat-progress-bar {
    position: relative;
}

.stat-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-progress-item:hover .stat-progress-bar::before {
    opacity: 1;
}

/* Timeline Component */
.timeline-container {
    margin-top: 3rem;
    position: relative;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gray-200), var(--primary-blue), var(--gray-200));
    background-size: 3px 100px;
    animation: timelineFlow 3s linear infinite;
}

@keyframes timelineFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100px;
    }
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 2;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    transition: all 0.3s ease;
    animation: pulseMarker 2s ease-in-out infinite;
}

@keyframes pulseMarker {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3), 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5), 0 0 0 15px rgba(59, 130, 246, 0);
    animation: none;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateX(15px) translateY(-5px);
    border-left: 4px solid var(--primary-blue);
}

.timeline-item:hover .timeline-content::before {
    left: 100%;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Expertise Sticky Section with 3D Logo */
.expertise-sticky-section {
    position: relative;
    min-height: 400vh;
    padding: 5rem 0;
    background: transparent;
    overflow: hidden;
}

.expertise-sticky-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #e8f4fd;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
    transform: translateZ(0);
}

.expertise-sticky-section.sticky-active .expertise-sticky-background {
    opacity: 1;
}

.expertise-sticky-section.sticky-active .section-label,
.expertise-sticky-section.sticky-active .section-title,
.expertise-sticky-section.sticky-active .section-subtitle {
    opacity: 1;
}

.expertise-sticky-section:not(.sticky-active) .section-label,
.expertise-sticky-section:not(.sticky-active) .section-title,
.expertise-sticky-section:not(.sticky-active) .section-subtitle {
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.expertise-sticky-section .section-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: fixed;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-sticky-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: fixed;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-sticky-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-content-wrapper {
    position: relative;
    min-height: 350vh;
    padding: 4rem 0;
}

.expertise-logo-center {
    position: fixed;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
    margin: 0;
    height: 0;
    pointer-events: none;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-sticky-section.sticky-active .expertise-logo-center {
    opacity: 0.5;
}

.expertise-logo-3d {
    width: 400px;
    height: 400px;
    object-fit: contain;
    animation: logoRotate3D 8s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
}

@keyframes logoRotate3D {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.expertise-cards-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

.expertise-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    position: fixed;
    pointer-events: auto;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, 200px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    z-index: 10;
    width: calc(100% - 4rem);
    max-width: 500px;
}

.expertise-card.expertise-card-right {
    transform: translate(calc(-50% + 250px), 200px);
}

.expertise-card.expertise-card-left {
    transform: translate(calc(-50% - 250px), 200px);
}

.expertise-card.entering {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.expertise-card.expertise-card-right.entering {
    transform: translate(calc(-50% + 250px), -50%);
}

.expertise-card.expertise-card-left.entering {
    transform: translate(calc(-50% - 250px), -50%);
}

.expertise-card.exiting {
    opacity: 0;
    transform: translate(-50%, -150px);
}

.expertise-card.expertise-card-right.exiting {
    transform: translate(calc(-50% + 250px), -150px);
}

.expertise-card.expertise-card-left.exiting {
    transform: translate(calc(-50% - 250px), -150px);
}

.expertise-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-card-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.expertise-card-icon svg {
    width: 28px;
    height: 28px;
}

.expertise-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.expertise-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.expertise-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-card-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.expertise-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.expertise-card-list li:hover {
    transform: translateX(5px);
    color: var(--primary-blue);
}

.expertise-card-list li:hover::before {
    transform: scale(1.2);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .expertise-sticky-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .expertise-content-wrapper {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .expertise-logo-center {
        display: none;
    }
    
    .expertise-logo-3d {
        display: none;
    }
    
    .expertise-sticky-background {
        position: absolute;
        height: 100%;
    }
    
    .expertise-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: translateY(0) !important;
        max-width: 100%;
        margin: 0 auto 2rem auto !important;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .expertise-card.expertise-card-right,
    .expertise-card.expertise-card-left {
        transform: translateY(0) !important;
        margin: 0 auto 2rem auto !important;
    }
    
    .expertise-cards-container {
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .expertise-sticky-section .section-label,
    .expertise-sticky-section .section-title,
    .expertise-sticky-section .section-subtitle {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .expertise-sticky-section {
        min-height: auto;
        padding: 3rem 0;
        background: #e8f4fd;
    }
    
    .expertise-content-wrapper {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .expertise-logo-center {
        display: none;
    }
    
    .expertise-logo-3d {
        display: none;
    }
    
    .expertise-sticky-background {
        position: absolute;
        height: 100%;
        opacity: 1;
    }
    
    .expertise-sticky-section.sticky-active .expertise-sticky-background {
        opacity: 1;
    }
    
    .expertise-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: translateY(0) !important;
        max-width: 100%;
        margin: 0 auto 2rem auto !important;
        width: calc(100% - 2rem);
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        padding: 2rem 1.5rem;
    }
    
    .expertise-card.expertise-card-right,
    .expertise-card.expertise-card-left {
        transform: translateY(0) !important;
        margin: 0 auto 2rem auto !important;
    }
    
    .expertise-card.entering,
    .expertise-card.exiting {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .expertise-cards-container {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
    }
    
    .expertise-sticky-section .section-label {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .expertise-sticky-section .section-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .expertise-sticky-section .section-subtitle {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .expertise-card-title {
        font-size: 1.25rem;
    }
    
    .expertise-card-description {
        font-size: 0.95rem;
    }
    
    .expertise-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .expertise-card-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Accordion Component */
.accordion-container {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.accordion-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: scaleY(1);
}

.accordion-header:hover {
    background: rgba(59, 130, 246, 0.05);
    padding-left: 2.5rem;
}

.accordion-item.active .accordion-header {
    background: rgba(59, 130, 246, 0.08);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-header:hover .accordion-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.accordion-item.active .accordion-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.accordion-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-header:hover .accordion-icon svg,
.accordion-item.active .accordion-icon svg {
    transform: scale(1.1);
}

.accordion-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    color: var(--primary-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    opacity: 1;
}

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
}

.accordion-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.accordion-body ul li {
    transition: all 0.3s ease;
}

.accordion-body ul li:hover {
    transform: translateX(5px);
    color: var(--primary-blue);
}

.accordion-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-body ul li:hover::before {
    transform: scale(1.2);
}

/* Comparison Table */
.comparison-table-container {
    margin-top: 3rem;
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    background: var(--gray-50);
    border-bottom: 2px solid var(--gray-200);
}

.comparison-cell {
    padding: 1.5rem;
    border-right: 1px solid var(--gray-200);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell-header {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.comparison-cell-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.comparison-row:hover {
    background: rgba(59, 130, 246, 0.03);
    transform: translateX(5px);
}

.comparison-row:hover::before {
    width: 4px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-badge.high {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.comparison-badge.low {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

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

.why-choose-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.why-choose-icon svg {
    color: var(--primary-blue);
    transition: var(--transition);
}

.why-choose-item:hover .why-choose-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.why-choose-item:hover .why-choose-icon svg {
    color: var(--white);
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-choose-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
}



/* Responsive Styles for Services Page */
@media (max-width: 968px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .services-grid-main {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Tabs Responsive */
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Progress Bars Responsive */
    .stats-progress-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Timeline Responsive */
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-marker {
        width: 80px;
        height: 80px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    /* Comparison Table Responsive */
    .comparison-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-cell {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .tabs-content {
        min-height: auto;
    }
    
    .tab-content-text h3 {
        font-size: 1.5rem;
    }
    
    .tab-content-text p {
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .accordion-icon {
        width: 40px;
        height: 40px;
    }
    
    .accordion-title {
        font-size: 1.125rem;
    }
    
    .accordion-body {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 5rem 0 4rem;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

/* ============================================
   CAREERS HERO SECTION - COMPLETE REWRITE
   ============================================ */

.careers-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    z-index: 0;
}

.careers-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
}

@keyframes careersBackgroundMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -20px) scale(1.05);
    }
}

.careers-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.careers-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.careers-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.careers-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
}

.careers-hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.careers-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.careers-hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    max-width: 550px;
}

.careers-hero-buttons {
    margin-top: 0.5rem;
}

.careers-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.careers-hero-cta svg {
    transition: transform 0.3s ease;
}

.careers-hero-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.careers-hero-cta:hover svg {
    transform: translateX(5px);
}

.careers-hero-image-section {
    width: 41.67%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.careers-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

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

.careers-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

/* Careers Hero Responsive Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .careers-hero-container {
        gap: 3rem;
        padding: 0 30px;
    }
    
    .careers-hero-content {
        width: 58.33%;
    }
    
    .careers-hero-image-section {
        width: 41.67%;
    }
    
    .careers-hero-title {
        font-size: 3rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .careers-hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .careers-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .careers-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .careers-hero-image-section {
        width: 100%;
    }
    
    .careers-hero-badge {
        margin: 0 auto;
    }
    
    .careers-hero-title {
        font-size: 2.5rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .careers-hero-image-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .careers-hero-section {
        padding: 5rem 0 4rem;
    }
    
    .careers-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    
    .careers-hero-title {
        font-size: 2rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1rem;
    }
    
    .careers-hero-image-container {
        max-width: 300px;
    }
    
    .careers-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Why Work With Us Section */
.careers-why-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.careers-highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.careers-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.careers-highlight-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.careers-highlight-card:hover .careers-highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.careers-highlight-title,
.careers-highlight-description {
    position: relative;
    z-index: 1;
}

.careers-highlight-card:hover .careers-highlight-title {
    color: var(--primary-blue);
}

.careers-highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.careers-highlight-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Culture & Values Section */
.careers-culture-section {
    padding: 5rem 0;
}

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

.culture-value-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.culture-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.culture-value-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.culture-value-item:hover .culture-value-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.culture-value-title,
.culture-value-description {
    position: relative;
    z-index: 1;
}

.culture-value-item:hover .culture-value-title {
    color: var(--primary-blue);
}

.culture-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.culture-value-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Life at Technologire Section */
.careers-life-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.life-feature-item {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.life-feature-item:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.life-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.life-feature-item:hover .life-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.life-feature-title,
.life-feature-description {
    position: relative;
    z-index: 1;
}

.life-feature-item:hover .life-feature-title {
    color: var(--primary-blue);
}

.life-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.life-feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Current Openings Section */
.careers-openings-section {
    padding: 5rem 0;
}

.job-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-blue);
    outline: none;
}

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

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

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.job-card-header,
.job-card-details,
.job-description,
.job-apply-btn {
    position: relative;
    z-index: 1;
}

.job-card:hover .job-title {
    color: var(--primary-blue);
}

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

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.job-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.job-badge-remote {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.job-badge-hybrid {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.job-badge-onsite {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.job-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.job-detail-item svg {
    color: var(--primary-blue);
}

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

.job-apply-btn {
    width: 100%;
    text-align: center;
}

/* Hiring Process Section */
.careers-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.hiring-process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #2563eb 100%);
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 2px;
}

.process-step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 200px;
}

.process-step-item[data-step="1"] .process-step-content,
.process-step-item[data-step="3"] .process-step-content,
.process-step-item[data-step="5"] .process-step-content {
    margin-top: 2.5rem;
    margin-bottom: 0;
    padding-top: 1rem;
}

.process-step-item[data-step="2"] .process-step-content,
.process-step-item[data-step="4"] .process-step-content {
    margin-bottom: 2.5rem;
    margin-top: 0;
    padding-bottom: 1rem;
    order: -1;
}

.process-step-number {
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.process-step-item[data-step="1"] .process-step-number,
.process-step-item[data-step="3"] .process-step-number,
.process-step-item[data-step="5"] .process-step-number {
    margin-bottom: 1rem;
}

.process-step-node-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-direction: column;
}

.process-step-item[data-step="2"] .process-step-node-wrapper,
.process-step-item[data-step="4"] .process-step-node-wrapper {
    flex-direction: row;
    justify-content: flex-start;
}

.process-step-item[data-step="2"] .process-step-number,
.process-step-item[data-step="4"] .process-step-number {
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.process-step-item[data-step="1"] .process-step-number {
    color: #10b981;
}

.process-step-item[data-step="2"] .process-step-number {
    color: #10b981;
}

.process-step-item[data-step="3"] .process-step-number {
    color: #3b82f6;
}

.process-step-item[data-step="4"] .process-step-number {
    color: #2563eb;
}

.process-step-item[data-step="5"] .process-step-number {
    color: #2563eb;
}

.process-step-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-step-item[data-step="1"] .process-step-node {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: var(--white);
}

.process-step-item[data-step="2"] .process-step-node {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: var(--white);
}

.process-step-item[data-step="3"] .process-step-node {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: var(--white);
}

.process-step-item[data-step="4"] .process-step-node {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: var(--white);
}

.process-step-item[data-step="5"] .process-step-node {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
}

.process-step-item:hover .process-step-node {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.process-step-connector {
    position: absolute;
    width: 2px;
    height: 80px;
    z-index: 1;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.process-step-item[data-step="1"] .process-step-connector,
.process-step-item[data-step="3"] .process-step-connector,
.process-step-item[data-step="5"] .process-step-connector {
    top: 80px;
}

.process-step-item[data-step="1"] .process-step-connector {
    background: linear-gradient(180deg, #10b981 0%, transparent 100%);
}

.process-step-item[data-step="3"] .process-step-connector {
    background: linear-gradient(180deg, #3b82f6 0%, transparent 100%);
}

.process-step-item[data-step="5"] .process-step-connector {
    background: linear-gradient(180deg, #2563eb 0%, transparent 100%);
}

.process-step-item[data-step="2"] .process-step-connector,
.process-step-item[data-step="4"] .process-step-connector {
    bottom: calc(80px + 0.75rem);
}

.process-step-item[data-step="2"] .process-step-connector {
    background: linear-gradient(0deg, #10b981 0%, transparent 100%);
}

.process-step-item[data-step="4"] .process-step-connector {
    background: linear-gradient(0deg, #2563eb 0%, transparent 100%);
}

.process-step-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 180px;
}

.process-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.process-step-item:hover .process-step-title {
    color: var(--primary-blue);
}

.process-step-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Learning & Growth Section */
.careers-learning-section {
    padding: 5rem 0;
}

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

.learning-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.learning-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.learning-feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.learning-feature-card:hover .learning-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.learning-feature-title,
.learning-feature-description {
    position: relative;
    z-index: 1;
}

.learning-feature-card:hover .learning-feature-title {
    color: var(--primary-blue);
}

.learning-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.learning-feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Benefits & Perks Section */
.careers-benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.benefit-item {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.benefit-item:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.benefit-title,
.benefit-description {
    position: relative;
    z-index: 1;
}

.benefit-item:hover .benefit-title {
    color: var(--primary-blue);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Internship & Freshers Program Section */
.careers-internship-section {
    padding: 5rem 0;
}

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

.internship-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
}

.internship-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.35),
        0 15px 30px rgba(59, 130, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.internship-feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.internship-feature-card:hover .internship-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.internship-feature-title,
.internship-feature-description {
    position: relative;
    z-index: 1;
}

.internship-feature-card:hover .internship-feature-title {
    color: var(--primary-blue);
}

.internship-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.internship-feature-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Don't See a Role Section */
.careers-general-section {
    padding: 5rem 0;
    background: var(--white);
}

.general-application-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.general-application-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.general-application-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.general-application-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* AI Solutions Page Styles */
/* AI Hero Section */
.ai-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.ai-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.ai-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.ai-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.ai-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.ai-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.ai-hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    max-width: 550px;
}

.ai-hero-buttons {
    margin-top: 0.5rem;
}

.ai-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.ai-hero-cta svg {
    transition: transform 0.3s ease;
}

.ai-hero-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ai-hero-cta:hover svg {
    transform: translateX(5px);
}

.ai-hero-image-section {
    width: 41.67%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.ai-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* AI Overview Section */
.ai-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.ai-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.ai-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ai-overview-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.ai-overview-card:hover .ai-overview-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.ai-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ai-overview-card:hover h3 {
    color: #8b5cf6;
}

.ai-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* AI Capabilities Section */
.ai-capabilities-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.ai-capabilities-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: aiBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes aiBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.ai-capabilities-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: aiBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes aiBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.ai-capability-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.ai-capability-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ai-capability-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.ai-capability-image {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ai-capability-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-capability-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.ai-capability-item:hover .ai-capability-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.ai-capability-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-capability-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.ai-capability-item:hover .ai-capability-title {
    color: #8b5cf6;
}

.ai-capability-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.ai-capability-use-cases {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.ai-capability-item:hover .ai-capability-use-cases {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.ai-capability-use-cases h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ai-capability-use-cases ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.ai-capability-use-cases li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.ai-capability-item:hover .ai-capability-use-cases li {
    color: var(--text-dark);
}

.ai-capability-use-cases li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.ai-capability-item:hover .ai-capability-use-cases li::before {
    transform: scale(1.2);
}

/* AI Process Section */
.ai-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.ai-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ai-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.ai-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ai-process-step-number {
    width: 60px;
    height: 60px;
    background: #8b5cf6;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.ai-process-step:hover .ai-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.ai-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.ai-process-step:hover h3 {
    color: #8b5cf6;
}

.ai-process-step p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* AI Technologies Section */
.ai-technologies-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.ai-technologies-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.ai-technologies-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.ai-technologies-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-ai-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.ai-technologies-track:hover {
    animation-play-state: paused;
}

.ai-technology-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.ai-technology-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.ai-technology-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.ai-technology-item:hover h4 {
    color: #8b5cf6;
}

.ai-technology-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* AI Why Choose Section */
.ai-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.ai-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.ai-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ai-why-choose-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.ai-why-choose-card:hover .ai-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.ai-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ai-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.ai-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* AI Industries Section */
.ai-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.ai-industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ai-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.ai-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.ai-industry-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.ai-industry-item:hover .ai-industry-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.ai-industry-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ai-industry-item:hover h3 {
    color: #8b5cf6;
}

.ai-industry-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* AI CTA Section */
.ai-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.ai-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.ai-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ai-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ai-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.ai-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ai-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ai-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.ai-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Cloud Consultancy Page Styles */
/* Cloud Hero Section */
.cloud-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.cloud-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.cloud-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.cloud-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cloud-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.cloud-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cloud-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
}

.cloud-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.cloud-hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cloud-hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cloud-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.cloud-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

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

.cloud-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    animation: floatIcon 6s ease-in-out infinite;
}

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

/* Cloud Overview Section */
.cloud-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.cloud-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.cloud-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.cloud-overview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.cloud-overview-card:hover .cloud-overview-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.cloud-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cloud-overview-card:hover h3 {
    color: #8b5cf6;
}

.cloud-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Cloud Services Section */
.cloud-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cloud-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: cloudBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes cloudBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.cloud-services-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: cloudBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes cloudBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.cloud-service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.cloud-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.cloud-service-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.cloud-service-image {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cloud-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cloud-service-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.cloud-service-item:hover .cloud-service-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.cloud-service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cloud-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.cloud-service-item:hover .cloud-service-title {
    color: #8b5cf6;
}

.cloud-service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.cloud-service-list {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.cloud-service-item:hover .cloud-service-list {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.cloud-service-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cloud-service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.cloud-service-list li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.cloud-service-item:hover .cloud-service-list li {
    color: var(--text-dark);
}

.cloud-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cloud-service-item:hover .cloud-service-list li::before {
    transform: scale(1.2);
}

/* Cloud Process Section */
.cloud-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.cloud-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cloud-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.cloud-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.cloud-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.cloud-process-step:hover .cloud-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.cloud-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.cloud-process-step:hover h3 {
    color: #8b5cf6;
}

.cloud-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Cloud Platforms Section */
.cloud-platforms-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.cloud-platforms-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.cloud-platforms-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.cloud-platforms-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-cloud-platforms 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.cloud-platforms-track:hover {
    animation-play-state: paused;
}

.cloud-platform-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.cloud-platform-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.cloud-platform-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.cloud-platform-item:hover h4 {
    color: #8b5cf6;
}

.cloud-platform-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Cloud Why Choose Section */
.cloud-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.cloud-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.cloud-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.cloud-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.cloud-why-choose-card:hover .cloud-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.cloud-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cloud-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.cloud-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Cloud Industries Section */
.cloud-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.cloud-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.cloud-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.cloud-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.cloud-industry-item:hover .cloud-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.cloud-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cloud-industry-item:hover h3 {
    color: #8b5cf6;
}

.cloud-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Cloud CTA Section */
.cloud-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cloud-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.cloud-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cloud-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cloud-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cloud-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cloud-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.cloud-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cloud-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cloud-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cloud-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive styles for Cloud Consultancy page */
@media (max-width: 1024px) {
    .cloud-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .cloud-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .cloud-hero-image-section {
        width: 100%;
    }
    .cloud-hero-title {
        font-size: 3rem;
    }
    .cloud-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .cloud-hero-image-container {
        max-width: 400px;
    }
    .cloud-overview-grid {
        grid-template-columns: 1fr;
    }
    .cloud-service-wrapper {
        grid-template-columns: 1fr;
    }
    .cloud-service-image-placeholder {
        min-height: 300px;
    }
    .cloud-service-content {
        padding: 2.5rem;
    }
    .cloud-service-title {
        font-size: 2rem;
    }
    .cloud-service-description {
        font-size: 1rem;
    }
    .cloud-service-list ul {
        grid-template-columns: 1fr;
    }
    .cloud-process-steps {
        grid-template-columns: 1fr;
    }
    .cloud-platform-item {
        width: 240px;
    }
    .cloud-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cloud-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cloud-cta-title {
        font-size: 2rem;
    }
    .cloud-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .cloud-hero-section {
        padding: 5rem 0 4rem;
    }
    .cloud-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .cloud-hero-title {
        font-size: 2rem;
    }
    .cloud-hero-subtitle {
        font-size: 1rem;
    }
    .cloud-hero-image-container {
        max-width: 300px;
    }
    .cloud-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .cloud-services-section .cloud-service-item {
        margin-bottom: 2rem;
    }
    .cloud-service-image-placeholder {
        min-height: 250px;
    }
    .cloud-service-content {
        padding: 2rem;
    }
    .cloud-service-title {
        font-size: 1.75rem;
    }
    .cloud-service-description {
        font-size: 0.9375rem;
    }
    .cloud-platform-item {
        width: 220px;
    }
    .cloud-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .cloud-industries-grid {
        grid-template-columns: 1fr;
    }
    .cloud-cta-title {
        font-size: 1.75rem;
    }
    .cloud-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cloud-cta-btn {
        width: 100%;
    }
}

/* ============================================
   Web Development Service Page Styles
   ============================================ */

/* Web Hero Section */
.web-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.web-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.web-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.web-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.web-hero-content {
    z-index: 1;
}

.web-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.web-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.web-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.web-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.web-hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.web-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 0;
}

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

.web-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

/* Web Overview Section */
.web-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.web-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.web-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.web-overview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.web-overview-card:hover .web-overview-icon {
    transform: scale(1.1) rotate(5deg);
}

.web-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.web-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Web Expertise Section */
.web-expertise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(99, 102, 241, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.web-expertise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: webBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes webBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.web-expertise-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: webBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes webBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.web-expertise-item {
    margin-bottom: 4rem;
}

.web-expertise-item:last-child {
    margin-bottom: 0;
}

.web-expertise-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.web-expertise-item:nth-child(even) .web-expertise-wrapper {
    grid-template-columns: 1fr 1fr;
}

.web-expertise-item:nth-child(even) .web-expertise-image {
    order: 2;
}

.web-expertise-item:nth-child(even) .web-expertise-content {
    order: 1;
}

.web-expertise-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.25),
        0 15px 35px rgba(99, 102, 241, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.web-expertise-image {
    position: relative;
}

.web-expertise-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.web-expertise-icon-large {
    color: #8b5cf6;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.web-expertise-wrapper:hover .web-expertise-icon-large {
    transform: scale(1.1);
    opacity: 1;
}

.web-expertise-content {
    padding: 1rem 0;
}

.web-expertise-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.web-expertise-description {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.web-expertise-list h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.web-expertise-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.web-expertise-list li {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.web-expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Web Process Section */
.web-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.web-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.web-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.web-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.2),
        0 15px 30px rgba(99, 102, 241, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.web-process-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.web-process-step:hover .web-process-step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.web-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.web-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* Web Technologies Section */
.web-technologies-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.web-technologies-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.web-technologies-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.web-technologies-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-web-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.web-technologies-track:hover {
    animation-play-state: paused;
}

.web-technology-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.web-technology-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.web-technology-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.web-technology-item:hover h4 {
    color: #8b5cf6;
}

.web-technology-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Web Why Choose Section */
.web-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.web-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.web-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.web-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.web-why-choose-card:hover .web-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.web-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.web-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.web-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Web Industries Section */
.web-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.web-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.web-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.web-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.web-industry-item:hover .web-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.web-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.web-industry-item:hover h3 {
    color: #8b5cf6;
}

.web-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Web CTA Section */
.web-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.web-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.web-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.web-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.web-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.web-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.web-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.web-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.web-cta-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.web-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.web-cta-btn.btn-secondary:hover {
    background: var(--white);
    color: #8b5cf6;
    transform: translateY(-2px);
}

/* Web Development Responsive Styles */
@media (max-width: 1024px) {
    .web-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }
    .web-hero-image-section {
        width: 100%;
    }
    .web-hero-title {
        font-size: 3rem;
    }
    .web-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .web-hero-image-container {
        max-width: 400px;
    }
    .web-overview-grid {
        grid-template-columns: 1fr;
    }
    .web-expertise-wrapper {
        grid-template-columns: 1fr;
    }
    .web-expertise-image-placeholder {
        min-height: 300px;
    }
    .web-expertise-content {
        padding: 2.5rem;
    }
    .web-expertise-title {
        font-size: 2rem;
    }
    .web-expertise-description {
        font-size: 1rem;
    }
    .web-expertise-list ul {
        grid-template-columns: 1fr;
    }
    .web-process-steps {
        grid-template-columns: 1fr;
    }
    .web-technology-item {
        width: 240px;
    }
    .web-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .web-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .web-cta-title {
        font-size: 2rem;
    }
    .web-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .web-hero-section {
        padding: 5rem 0 4rem;
    }
    .web-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .web-hero-title {
        font-size: 2rem;
    }
    .web-hero-subtitle {
        font-size: 1rem;
    }
    .web-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .web-expertise-section .web-expertise-item {
        margin-bottom: 2rem;
    }
    .web-expertise-image-placeholder {
        min-height: 250px;
    }
    .web-expertise-content {
        padding: 2rem;
    }
    .web-expertise-title {
        font-size: 1.75rem;
    }
    .web-expertise-description {
        font-size: 0.9375rem;
    }
    .web-technology-item {
        width: 220px;
    }
    .web-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .web-industries-grid {
        grid-template-columns: 1fr;
    }
    .web-cta-title {
        font-size: 1.75rem;
    }
    .web-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .web-cta-btn {
        width: 100%;
    }
}

/* ============================================
   Mobile App Development Service Page Styles
   ============================================ */

/* Mobile Hero Section */
.mobile-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.mobile-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.mobile-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.mobile-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.mobile-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.mobile-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.mobile-hero-buttons {
    margin-top: 0.5rem;
}

.mobile-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.mobile-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.mobile-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Mobile Overview Section */
.mobile-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.mobile-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.mobile-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.mobile-overview-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.mobile-overview-card:hover .mobile-overview-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.mobile-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mobile-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Mobile Services Section */
.mobile-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.mobile-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: mobileBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes mobileBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.mobile-services-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: mobileBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes mobileBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.mobile-service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.mobile-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.mobile-service-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.mobile-service-item:nth-child(even) .mobile-service-wrapper {
    grid-template-columns: 1fr 400px;
}

.mobile-service-item:nth-child(even) .mobile-service-image {
    order: 2;
}

.mobile-service-item:nth-child(even) .mobile-service-content {
    order: 1;
}

.mobile-service-image {
    position: relative;
}

.mobile-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-service-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.mobile-service-item:hover .mobile-service-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.mobile-service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.mobile-service-item:hover .mobile-service-title {
    color: #8b5cf6;
}

.mobile-service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.mobile-service-list {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.mobile-service-item:hover .mobile-service-list {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.mobile-service-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mobile-service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mobile-service-list li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-service-item:hover .mobile-service-list li {
    color: var(--text-dark);
}

.mobile-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* Mobile Process Section */
.mobile-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.mobile-process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.mobile-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.mobile-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.mobile-process-step:hover .mobile-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.mobile-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-process-step:hover h3 {
    color: #8b5cf6;
}

.mobile-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Technologies Section */
.mobile-technologies-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.mobile-technologies-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.mobile-technologies-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.mobile-technologies-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-mobile-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.mobile-technologies-track:hover {
    animation-play-state: paused;
}

.mobile-technology-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.mobile-technology-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.mobile-technology-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-technology-item:hover h4 {
    color: #8b5cf6;
}

.mobile-technology-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Mobile Why Choose Section */
.mobile-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.mobile-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.mobile-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.mobile-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.mobile-why-choose-card:hover .mobile-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.mobile-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mobile-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.mobile-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Mobile Industries Section */
.mobile-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.mobile-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.mobile-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.mobile-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.mobile-industry-item:hover .mobile-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.mobile-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mobile-industry-item:hover h3 {
    color: #8b5cf6;
}

.mobile-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Mobile CTA Section */
.mobile-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.mobile-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.mobile-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mobile-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.mobile-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.mobile-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mobile-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.mobile-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile App Development Responsive Styles */
@media (max-width: 1024px) {
    .mobile-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .mobile-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .mobile-hero-image-section {
        width: 100%;
    }
    .mobile-hero-title {
        font-size: 3rem;
    }
    .mobile-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .mobile-hero-image-container {
        max-width: 400px;
    }
    .mobile-overview-grid {
        grid-template-columns: 1fr;
    }
    .mobile-service-wrapper {
        grid-template-columns: 1fr;
    }
    .mobile-service-image-placeholder {
        min-height: 300px;
    }
    .mobile-service-content {
        padding: 2.5rem;
    }
    .mobile-service-title {
        font-size: 2rem;
    }
    .mobile-service-description {
        font-size: 1rem;
    }
    .mobile-service-list ul {
        grid-template-columns: 1fr;
    }
    .mobile-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .mobile-technology-item {
        width: 240px;
    }
    .mobile-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-cta-title {
        font-size: 2rem;
    }
    .mobile-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .mobile-hero-section {
        padding: 5rem 0 4rem;
    }
    .mobile-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .mobile-hero-title {
        font-size: 2rem;
    }
    .mobile-hero-subtitle {
        font-size: 1rem;
    }
    .mobile-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .mobile-services-section .mobile-service-item {
        margin-bottom: 2rem;
    }
    .mobile-service-image-placeholder {
        min-height: 250px;
    }
    .mobile-service-content {
        padding: 2rem;
    }
    .mobile-service-title {
        font-size: 1.75rem;
    }
    .mobile-service-description {
        font-size: 0.9375rem;
    }
    .mobile-process-steps {
        grid-template-columns: 1fr;
    }
    .mobile-technology-item {
        width: 220px;
    }
    .mobile-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .mobile-industries-grid {
        grid-template-columns: 1fr;
    }
    .mobile-cta-title {
        font-size: 1.75rem;
    }
    .mobile-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .mobile-cta-btn {
        width: 100%;
    }
}

/* ============================================
   Testing & QA Service Page Styles
   ============================================ */

/* Testing Hero Section */
.testing-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.testing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.testing-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.testing-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.testing-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.testing-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testing-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.testing-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.testing-hero-buttons {
    margin-top: 0.5rem;
}

.testing-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.testing-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.testing-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testing-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.testing-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.testing-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Testing Overview Section */
.testing-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.testing-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.testing-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.testing-overview-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.testing-overview-card:hover .testing-overview-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.testing-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testing-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Testing Services Section */
.testing-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.testing-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: testingBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes testingBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.testing-services-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: testingBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes testingBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.testing-service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.testing-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.testing-service-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.testing-service-item:nth-child(even) .testing-service-wrapper {
    grid-template-columns: 1fr 400px;
}

.testing-service-item:nth-child(even) .testing-service-image {
    order: 2;
}

.testing-service-item:nth-child(even) .testing-service-content {
    order: 1;
}

.testing-service-image {
    position: relative;
}

.testing-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testing-service-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testing-service-item:hover .testing-service-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.testing-service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testing-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.testing-service-item:hover .testing-service-title {
    color: #8b5cf6;
}

.testing-service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.testing-service-list {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.testing-service-item:hover .testing-service-list {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.testing-service-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testing-service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.testing-service-list li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testing-service-item:hover .testing-service-list li {
    color: var(--text-dark);
}

.testing-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* Testing Process Section */
.testing-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.testing-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testing-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testing-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.testing-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.testing-process-step:hover .testing-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.testing-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.testing-process-step:hover h3 {
    color: #8b5cf6;
}

.testing-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Testing Technologies Section */
.testing-technologies-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.testing-technologies-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.testing-technologies-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.testing-technologies-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-testing-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.testing-technologies-track:hover {
    animation-play-state: paused;
}

.testing-technology-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testing-technology-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.testing-technology-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.testing-technology-item:hover h4 {
    color: #8b5cf6;
}

.testing-technology-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Testing Why Choose Section */
.testing-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.testing-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.testing-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.testing-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.testing-why-choose-card:hover .testing-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.testing-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.testing-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.testing-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Testing Industries Section */
.testing-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.testing-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.testing-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.testing-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.testing-industry-item:hover .testing-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.testing-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.testing-industry-item:hover h3 {
    color: #8b5cf6;
}

.testing-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Testing CTA Section */
.testing-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.testing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.testing-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.testing-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testing-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.testing-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.testing-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testing-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testing-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.testing-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Testing & QA Responsive Styles */
@media (max-width: 1024px) {
    .testing-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .testing-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .testing-hero-image-section {
        width: 100%;
    }
    .testing-hero-title {
        font-size: 3rem;
    }
    .testing-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .testing-hero-image-container {
        max-width: 400px;
    }
    .testing-overview-grid {
        grid-template-columns: 1fr;
    }
    .testing-service-wrapper {
        grid-template-columns: 1fr;
    }
    .testing-service-image-placeholder {
        min-height: 300px;
    }
    .testing-service-content {
        padding: 2.5rem;
    }
    .testing-service-title {
        font-size: 2rem;
    }
    .testing-service-description {
        font-size: 1rem;
    }
    .testing-service-list ul {
        grid-template-columns: 1fr;
    }
    .testing-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .testing-technology-item {
        width: 240px;
    }
    .testing-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testing-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testing-cta-title {
        font-size: 2rem;
    }
    .testing-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testing-hero-section {
        padding: 5rem 0 4rem;
    }
    .testing-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .testing-hero-title {
        font-size: 2rem;
    }
    .testing-hero-subtitle {
        font-size: 1rem;
    }
    .testing-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .testing-services-section .testing-service-item {
        margin-bottom: 2rem;
    }
    .testing-service-image-placeholder {
        min-height: 250px;
    }
    .testing-service-content {
        padding: 2rem;
    }
    .testing-service-title {
        font-size: 1.75rem;
    }
    .testing-service-description {
        font-size: 0.9375rem;
    }
    .testing-process-steps {
        grid-template-columns: 1fr;
    }
    .testing-technology-item {
        width: 220px;
    }
    .testing-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .testing-industries-grid {
        grid-template-columns: 1fr;
    }
    .testing-cta-title {
        font-size: 1.75rem;
    }
    .testing-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .testing-cta-btn {
        width: 100%;
    }
}

/* ============================================
   Data Provider Service Page Styles
   ============================================ */

/* Data Hero Section */
.data-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.data-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.data-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.data-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.data-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.data-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.data-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.data-hero-buttons {
    margin-top: 0.5rem;
}

.data-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.data-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.data-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.data-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.data-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Data Overview Section */
.data-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.data-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.data-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.data-overview-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.data-overview-card:hover .data-overview-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.data-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.data-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Data Services Section */
.data-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.data-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: dataBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes dataBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.data-services-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: dataBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes dataBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.data-service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.data-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.data-service-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.data-service-item:nth-child(even) .data-service-wrapper {
    grid-template-columns: 1fr 400px;
}

.data-service-item:nth-child(even) .data-service-image {
    order: 2;
}

.data-service-item:nth-child(even) .data-service-content {
    order: 1;
}

.data-service-image {
    position: relative;
}

.data-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.data-service-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.data-service-item:hover .data-service-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.data-service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.data-service-item:hover .data-service-title {
    color: #8b5cf6;
}

.data-service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.data-service-list {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.data-service-item:hover .data-service-list {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.data-service-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.data-service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.data-service-list li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.data-service-item:hover .data-service-list li {
    color: var(--text-dark);
}

.data-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* Data Process Section */
.data-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.data-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.data-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.data-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.data-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.data-process-step:hover .data-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.data-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.data-process-step:hover h3 {
    color: #8b5cf6;
}

.data-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Data Technologies Section */
.data-technologies-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.data-technologies-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.data-technologies-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.data-technologies-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-data-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.data-technologies-track:hover {
    animation-play-state: paused;
}

.data-technology-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.data-technology-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.data-technology-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.data-technology-item:hover h4 {
    color: #8b5cf6;
}

.data-technology-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Data Why Choose Section */
.data-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.data-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.data-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.data-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.data-why-choose-card:hover .data-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.data-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.data-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.data-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Data Industries Section */
.data-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.data-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.data-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.data-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.data-industry-item:hover .data-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.data-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.data-industry-item:hover h3 {
    color: #8b5cf6;
}

.data-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Data CTA Section */
.data-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.data-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.data-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.data-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.data-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.data-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.data-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.data-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.data-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.data-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.data-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Data Provider Responsive Styles */
@media (max-width: 1024px) {
    .data-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .data-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .data-hero-image-section {
        width: 100%;
    }
    .data-hero-title {
        font-size: 3rem;
    }
    .data-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .data-hero-image-container {
        max-width: 400px;
    }
    .data-overview-grid {
        grid-template-columns: 1fr;
    }
    .data-service-wrapper {
        grid-template-columns: 1fr;
    }
    .data-service-image-placeholder {
        min-height: 300px;
    }
    .data-service-content {
        padding: 2.5rem;
    }
    .data-service-title {
        font-size: 2rem;
    }
    .data-service-description {
        font-size: 1rem;
    }
    .data-service-list ul {
        grid-template-columns: 1fr;
    }
    .data-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .data-technology-item {
        width: 240px;
    }
    .data-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .data-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .data-cta-title {
        font-size: 2rem;
    }
    .data-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .data-hero-section {
        padding: 5rem 0 4rem;
    }
    .data-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .data-hero-title {
        font-size: 2rem;
    }
    .data-hero-subtitle {
        font-size: 1rem;
    }
    .data-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .data-services-section .data-service-item {
        margin-bottom: 2rem;
    }
    .data-service-image-placeholder {
        min-height: 250px;
    }
    .data-service-content {
        padding: 2rem;
    }
    .data-service-title {
        font-size: 1.75rem;
    }
    .data-service-description {
        font-size: 0.9375rem;
    }
    .data-process-steps {
        grid-template-columns: 1fr;
    }
    .data-technology-item {
        width: 220px;
    }
    .data-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .data-industries-grid {
        grid-template-columns: 1fr;
    }
    .data-cta-title {
        font-size: 1.75rem;
    }
    .data-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .data-cta-btn {
        width: 100%;
    }
}

/* ============================================
   UI/UX Design Service Page Styles
   ============================================ */

/* UI/UX Hero Section */
.uiux-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.uiux-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.uiux-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.uiux-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.uiux-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.uiux-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uiux-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.uiux-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.uiux-hero-buttons {
    margin-top: 0.5rem;
}

.uiux-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.uiux-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.uiux-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uiux-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.uiux-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.uiux-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* UI/UX Overview Section */
.uiux-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.uiux-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.uiux-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.uiux-overview-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.uiux-overview-card:hover .uiux-overview-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.uiux-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.uiux-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* UI/UX Services Section */
.uiux-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.uiux-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: uiuxBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes uiuxBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.uiux-services-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: uiuxBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes uiuxBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.uiux-service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.uiux-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.uiux-service-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.uiux-service-item:nth-child(even) .uiux-service-wrapper {
    grid-template-columns: 1fr 400px;
}

.uiux-service-item:nth-child(even) .uiux-service-image {
    order: 2;
}

.uiux-service-item:nth-child(even) .uiux-service-content {
    order: 1;
}

.uiux-service-image {
    position: relative;
}

.uiux-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.uiux-service-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.uiux-service-item:hover .uiux-service-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.uiux-service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uiux-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.uiux-service-item:hover .uiux-service-title {
    color: #8b5cf6;
}

.uiux-service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.uiux-service-list {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.uiux-service-item:hover .uiux-service-list {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.uiux-service-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.uiux-service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.uiux-service-list li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.uiux-service-item:hover .uiux-service-list li {
    color: var(--text-dark);
}

.uiux-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* UI/UX Process Section */
.uiux-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.uiux-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.uiux-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.uiux-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.uiux-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.uiux-process-step:hover .uiux-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.uiux-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.uiux-process-step:hover h3 {
    color: #8b5cf6;
}

.uiux-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* UI/UX Technologies Section */
.uiux-technologies-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.uiux-technologies-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.uiux-technologies-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.uiux-technologies-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-uiux-technologies 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.uiux-technologies-track:hover {
    animation-play-state: paused;
}

.uiux-technology-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.uiux-technology-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.uiux-technology-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.uiux-technology-item:hover h4 {
    color: #8b5cf6;
}

.uiux-technology-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* UI/UX Why Choose Section */
.uiux-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.uiux-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.uiux-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.uiux-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.uiux-why-choose-card:hover .uiux-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.uiux-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.uiux-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.uiux-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* UI/UX Industries Section */
.uiux-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.uiux-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.uiux-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.uiux-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.uiux-industry-item:hover .uiux-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.uiux-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.uiux-industry-item:hover h3 {
    color: #8b5cf6;
}

.uiux-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* UI/UX CTA Section */
.uiux-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.uiux-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.uiux-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.uiux-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.uiux-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.uiux-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.uiux-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.uiux-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.uiux-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.uiux-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.uiux-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* UI/UX Design Responsive Styles */
@media (max-width: 1024px) {
    .uiux-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .uiux-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .uiux-hero-image-section {
        width: 100%;
    }
    .uiux-hero-title {
        font-size: 3rem;
    }
    .uiux-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .uiux-hero-image-container {
        max-width: 400px;
    }
    .uiux-overview-grid {
        grid-template-columns: 1fr;
    }
    .uiux-service-wrapper {
        grid-template-columns: 1fr;
    }
    .uiux-service-image-placeholder {
        min-height: 300px;
    }
    .uiux-service-content {
        padding: 2.5rem;
    }
    .uiux-service-title {
        font-size: 2rem;
    }
    .uiux-service-description {
        font-size: 1rem;
    }
    .uiux-service-list ul {
        grid-template-columns: 1fr;
    }
    .uiux-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .uiux-technology-item {
        width: 240px;
    }
    .uiux-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .uiux-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .uiux-cta-title {
        font-size: 2rem;
    }
    .uiux-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .uiux-hero-section {
        padding: 5rem 0 4rem;
    }
    .uiux-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .uiux-hero-title {
        font-size: 2rem;
    }
    .uiux-hero-subtitle {
        font-size: 1rem;
    }
    .uiux-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .uiux-services-section .uiux-service-item {
        margin-bottom: 2rem;
    }
    .uiux-service-image-placeholder {
        min-height: 250px;
    }
    .uiux-service-content {
        padding: 2rem;
    }
    .uiux-service-title {
        font-size: 1.75rem;
    }
    .uiux-service-description {
        font-size: 0.9375rem;
    }
    .uiux-process-steps {
        grid-template-columns: 1fr;
    }
    .uiux-technology-item {
        width: 220px;
    }
    .uiux-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .uiux-industries-grid {
        grid-template-columns: 1fr;
    }
    .uiux-cta-title {
        font-size: 1.75rem;
    }
    .uiux-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .uiux-cta-btn {
        width: 100%;
    }
}

/* ============================================
   Digital Marketing Service Page Styles
   ============================================ */

/* Marketing Hero Section */
.marketing-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.marketing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.marketing-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.marketing-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.marketing-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.marketing-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marketing-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.marketing-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.marketing-hero-buttons {
    margin-top: 0.5rem;
}

.marketing-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.marketing-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.marketing-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketing-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.marketing-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.marketing-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Marketing Overview Section */
.marketing-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.marketing-overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.marketing-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.marketing-overview-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.marketing-overview-card:hover .marketing-overview-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.marketing-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.marketing-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Marketing Services Section */
.marketing-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.marketing-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: marketingBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes marketingBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.marketing-services-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: marketingBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes marketingBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.marketing-service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.marketing-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.35),
        0 20px 40px rgba(99, 102, 241, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.marketing-service-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: stretch;
}

.marketing-service-item:nth-child(even) .marketing-service-wrapper {
    grid-template-columns: 1fr 400px;
}

.marketing-service-item:nth-child(even) .marketing-service-image {
    order: 2;
}

.marketing-service-item:nth-child(even) .marketing-service-content {
    order: 1;
}

.marketing-service-image {
    position: relative;
}

.marketing-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.marketing-service-icon-large {
    color: #8b5cf6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.marketing-service-item:hover .marketing-service-icon-large {
    opacity: 0.5;
    transform: scale(1.1);
}

.marketing-service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marketing-service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.marketing-service-item:hover .marketing-service-title {
    color: #8b5cf6;
}

.marketing-service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.marketing-service-list {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.marketing-service-item:hover .marketing-service-list {
    border-top-color: rgba(139, 92, 246, 0.2);
}

.marketing-service-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.marketing-service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.marketing-service-list li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.marketing-service-item:hover .marketing-service-list li {
    color: var(--text-dark);
}

.marketing-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

/* Marketing Process Section */
.marketing-process-section {
    padding: 5rem 0;
    background: var(--white);
}

.marketing-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.marketing-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.marketing-process-step:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.marketing-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.marketing-process-step:hover .marketing-process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.marketing-process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.marketing-process-step:hover h3 {
    color: #8b5cf6;
}

.marketing-process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Marketing Tools Section */
.marketing-tools-section {
    padding: 5rem 0 3rem;
    background: var(--gray-50);
    overflow: visible;
    position: relative;
}

.marketing-tools-wrapper {
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0 2rem;
    margin-top: 3rem;
    margin-left: calc(-50vw + 50%);
}

.marketing-tools-scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 0.5rem 0 1.5rem;
}

.marketing-tools-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-marketing-tools 40s linear infinite;
    width: fit-content;
    padding: 0.5rem 0 3rem;
}

.marketing-tools-track:hover {
    animation-play-state: paused;
}

.marketing-tool-item {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.marketing-tool-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
    z-index: 10;
    position: relative;
}

.marketing-tool-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.marketing-tool-item:hover h4 {
    color: #8b5cf6;
}

.marketing-tool-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

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

/* Marketing Why Choose Section */
.marketing-why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.marketing-why-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.marketing-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.marketing-why-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.marketing-why-choose-card:hover .marketing-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.marketing-why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.marketing-why-choose-card:hover h3 {
    color: #8b5cf6;
}

.marketing-why-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Marketing Industries Section */
.marketing-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.marketing-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.marketing-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.marketing-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.marketing-industry-item:hover .marketing-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.marketing-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.marketing-industry-item:hover h3 {
    color: #8b5cf6;
}

.marketing-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Marketing CTA Section */
.marketing-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.marketing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.marketing-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.marketing-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.marketing-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.marketing-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.marketing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.marketing-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.marketing-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.marketing-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.marketing-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Digital Marketing Responsive Styles */
@media (max-width: 1024px) {
    .marketing-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .marketing-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .marketing-hero-image-section {
        width: 100%;
    }
    .marketing-hero-title {
        font-size: 3rem;
    }
    .marketing-hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }
    .marketing-hero-image-container {
        max-width: 400px;
    }
    .marketing-overview-grid {
        grid-template-columns: 1fr;
    }
    .marketing-service-wrapper {
        grid-template-columns: 1fr;
    }
    .marketing-service-image-placeholder {
        min-height: 300px;
    }
    .marketing-service-content {
        padding: 2.5rem;
    }
    .marketing-service-title {
        font-size: 2rem;
    }
    .marketing-service-description {
        font-size: 1rem;
    }
    .marketing-service-list ul {
        grid-template-columns: 1fr;
    }
    .marketing-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .marketing-tool-item {
        width: 240px;
    }
    .marketing-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .marketing-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .marketing-cta-title {
        font-size: 2rem;
    }
    .marketing-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .marketing-hero-section {
        padding: 5rem 0 4rem;
    }
    .marketing-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    .marketing-hero-title {
        font-size: 2rem;
    }
    .marketing-hero-subtitle {
        font-size: 1rem;
    }
    .marketing-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .marketing-services-section .marketing-service-item {
        margin-bottom: 2rem;
    }
    .marketing-service-image-placeholder {
        min-height: 250px;
    }
    .marketing-service-content {
        padding: 2rem;
    }
    .marketing-service-title {
        font-size: 1.75rem;
    }
    .marketing-service-description {
        font-size: 0.9375rem;
    }
    .marketing-process-steps {
        grid-template-columns: 1fr;
    }
    .marketing-tool-item {
        width: 220px;
    }
    .marketing-why-choose-grid {
        grid-template-columns: 1fr;
    }
    .marketing-industries-grid {
        grid-template-columns: 1fr;
    }
    .marketing-cta-title {
        font-size: 1.75rem;
    }
    .marketing-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .marketing-cta-btn {
        width: 100%;
    }
}

/* ============================================
   Hire Team Page Styles
   ============================================ */

/* Hire Hero Section */
.hire-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hire-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.hire-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: careersBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

.hire-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hire-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.hire-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hire-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.hire-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.hire-hero-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hire-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hire-hero-cta.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hire-hero-cta.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.hire-hero-cta.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hire-hero-cta.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hire-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hire-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.hire-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.hire-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Hire Why Section */
.hire-why-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.hire-why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.hire-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.hire-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.hire-why-card:hover .hire-why-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.hire-why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hire-why-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Hire Expertise Section (Tabs) */
.hire-expertise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.hire-expertise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: hireBlobMove1 20s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes hireBlobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.hire-expertise-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 80%;
    max-width: 100vw;
    height: 160%;
    background-image: 
        radial-gradient(ellipse at 60% 40%, rgba(192, 132, 252, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: hireBlobMove2 25s ease-in-out infinite reverse;
    border-radius: 50%;
    overflow: hidden;
}

@keyframes hireBlobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) rotate(180deg) scale(1.15);
    }
}

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

.hire-expertise-tabs {
    margin-top: 3rem;
}

.hire-tabs-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hire-tab {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.hire-tab:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    transform: translateY(-2px);
}

.hire-tab.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.hire-tab-content {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.hire-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hire-expertise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hire-expertise-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.hire-expertise-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.hire-expertise-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin: 0;
    max-width: 800px;
}

.hire-expertise-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 800px;
}

.hire-expertise-content li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    text-align: left;
}

.hire-expertise-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Hire Models Section (Accordions) */
.hire-models-section {
    padding: 5rem 0;
    background: var(--white);
}

.hire-models-accordion {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hire-accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.hire-accordion-item:hover {
    border-color: #8b5cf6;
}

.hire-accordion-item.active {
    border-color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.hire-accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.hire-accordion-header svg {
    transition: transform 0.3s ease;
    color: var(--text-gray);
}

.hire-accordion-item.active .hire-accordion-header {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.hire-accordion-item.active .hire-accordion-header svg {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.hire-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hire-accordion-item.active .hire-accordion-content {
    max-height: 1000px;
}

.hire-accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hire-accordion-body p {
    margin: 0 0 1rem 0;
}

.hire-accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.hire-accordion-body li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.hire-accordion-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Hire Process Section (Stepper) */
.hire-process-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.hire-process-stepper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hire-stepper-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.hire-stepper-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, #8b5cf6 0%, rgba(139, 92, 246, 0.3) 100%);
    z-index: 0;
}

.hire-stepper-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.hire-stepper-item:hover .hire-stepper-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.hire-stepper-content {
    flex: 1;
    padding-top: 0.5rem;
}

.hire-stepper-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hire-stepper-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Hire Choose Section */
.hire-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.hire-choose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.hire-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.hire-choose-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.hire-choose-card:hover .hire-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.hire-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hire-choose-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Hire Industries Section */
.hire-industries-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.hire-industry-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.hire-industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.hire-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.hire-industry-item:hover .hire-industry-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.hire-industry-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hire-industry-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Hire CTA Section */
.hire-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hire-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.hire-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hire-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hire-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hire-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hire-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hire-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hire-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hire-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hire-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hire Team Pricing Section Override */
#hire-pricing-section.pricing-section {
    margin-top: 0;
    background: var(--gray-50);
}

/* Hire Team Responsive Styles */
@media (max-width: 1024px) {
    .hire-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .hire-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .hire-hero-image-section {
        width: 100%;
    }
    .hire-hero-title {
        font-size: 3rem;
    }
    .hire-hero-subtitle {
        font-size: 1.25rem;
    }
    .hire-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hire-tabs-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .hire-expertise-content ul {
        grid-template-columns: 1fr;
    }
    .hire-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hire-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hire-hero-section {
        padding: 5rem 0 4rem;
    }
    .hire-hero-title {
        font-size: 2rem;
    }
    .hire-hero-subtitle {
        font-size: 1rem;
    }
    .hire-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hire-hero-cta {
        width: 100%;
        justify-content: center;
    }
    .hire-why-grid {
        grid-template-columns: 1fr;
    }
    .hire-tabs-container {
        flex-direction: column;
    }
    .hire-tab {
        width: 100%;
        text-align: center;
    }
    .hire-tab-content {
        padding: 2rem;
    }
    .hire-expertise-content h3 {
        font-size: 1.75rem;
    }
    .hire-choose-grid {
        grid-template-columns: 1fr;
    }
    .hire-industries-grid {
        grid-template-columns: 1fr;
    }
    .hire-cta-title {
        font-size: 2rem;
    }
    .hire-cta-subtitle {
        font-size: 1.125rem;
    }
    .hire-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hire-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Careers Page Responsive Styles */
@media (max-width: 1024px) {
    .careers-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .life-features-grid,
    .learning-features-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-filters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .internship-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hiring-process-timeline {
        flex-wrap: wrap;
        gap: 3rem;
        padding: 4rem 2rem;
        justify-content: center;
    }
    
    .process-step-item {
        max-width: 180px;
        flex: 0 0 calc(50% - 1.5rem);
        min-width: 150px;
    }
    
    .process-timeline-line {
        display: none;
    }
    
    .process-step-connector {
        display: none;
    }
    
    .process-step-content {
        max-width: 100%;
    }
    
    .process-step-node-wrapper {
        flex-direction: column !important;
        gap: 0.5rem;
    }
    
    .process-step-item[data-step="2"] .process-step-number,
    .process-step-item[data-step="4"] .process-step-number {
        margin-bottom: 0.5rem;
    }
}


@media (max-width: 768px) {
    .careers-hero-section {
        padding: 5rem 0 4rem;
    }
    
    .careers-hero-title {
        font-size: 2rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1rem;
    }
    
    .careers-hero-wrapper {
        gap: 2.5rem;
    }
    
    .careers-hero-image-container {
        max-width: 300px;
    }
    
    .careers-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .careers-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-values-grid {
        grid-template-columns: 1fr;
    }
    
    .life-features-grid {
        grid-template-columns: 1fr;
    }
    
    .job-filters {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .hiring-process-timeline {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1rem;
        align-items: center;
    }
    
    .process-step-item {
        max-width: 100%;
        width: 100%;
        max-width: 300px;
    }
    
    .process-step-item[data-step="1"] .process-step-content,
    .process-step-item[data-step="2"] .process-step-content,
    .process-step-item[data-step="3"] .process-step-content,
    .process-step-item[data-step="4"] .process-step-content,
    .process-step-item[data-step="5"] .process-step-content {
        margin-top: 2rem;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        order: 0;
    }
    
    .process-step-item[data-step="2"] .process-step-content,
    .process-step-item[data-step="4"] .process-step-content {
        order: 0;
    }
    
    .process-step-node-wrapper {
        flex-direction: column !important;
        gap: 0.5rem;
    }
    
    .process-step-item[data-step="2"] .process-step-number,
    .process-step-item[data-step="4"] .process-step-number {
        margin-bottom: 0.5rem;
    }
    
    .process-step-node {
        width: 70px;
        height: 70px;
    }
    
    .process-step-connector {
        display: none;
    }
    
    .process-timeline-line {
        display: none;
    }
    
    .process-step-content {
        max-width: 100%;
    }
    
    .learning-features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .internship-features-grid {
        grid-template-columns: 1fr;
    }
    
    .general-application-content {
        padding: 2rem 1.5rem;
    }
    
    .general-application-title {
        font-size: 2rem;
    }
    
    /* AI Solutions Page Responsive */
    .ai-hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .ai-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .ai-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .ai-hero-image-section {
        width: 100%;
    }
    
    .ai-hero-title {
        font-size: 2.5rem;
    }
    
    .ai-hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .ai-hero-image-container {
        max-width: 400px;
    }
    
    .ai-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-capability-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ai-capability-image {
        min-height: 300px;
    }
    
    .ai-capability-content {
        padding: 2.5rem;
    }
    
    .ai-capability-title {
        font-size: 1.875rem;
    }
    
    .ai-capability-use-cases ul {
        grid-template-columns: 1fr;
    }
    
    .ai-process-steps {
        grid-template-columns: 1fr;
    }
    
    .ai-technology-item {
        width: 240px;
    }
    
    .ai-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-cta-title {
        font-size: 2rem;
    }
    
    .ai-cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .ai-hero-section {
        padding: 5rem 0 4rem;
    }
    
    .ai-hero-container {
        gap: 2.5rem;
        padding: 0 15px;
    }
    
    .ai-hero-title {
        font-size: 2rem;
    }
    
    .ai-hero-subtitle {
        font-size: 1rem;
    }
    
    .ai-hero-image-container {
        max-width: 300px;
    }
    
    .ai-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .ai-technology-item {
        width: 220px;
    }
    
    .ai-why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-industries-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-cta-title {
        font-size: 1.75rem;
    }
    
    .ai-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ai-cta-btn {
        width: 100%;
    }
    
    .ai-capability-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ai-capability-image {
        min-height: 250px;
    }
    
    .ai-capability-content {
        padding: 2rem 1.5rem;
    }
    
    .ai-capability-title {
        font-size: 1.75rem;
    }
    
    .ai-capability-description {
        font-size: 1rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    width: 100%;
    padding: 8rem 0 6rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    z-index: 0;
}

.contact-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/shape-bg2.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    animation: contactBackgroundMove 20s ease-in-out infinite;
    filter: grayscale(100%) brightness(0.5);
}

@keyframes contactBackgroundMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -20px) scale(1.05);
    }
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.contact-hero-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-sizing: border-box;
}

.contact-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.contact-hero-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-hero-cta.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-hero-cta.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.contact-hero-cta.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-hero-cta.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-hero-image-section {
    width: 41.67%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.contact-hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

.contact-hero-icon {
    position: relative;
    z-index: 1;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Contact Options Section */
.contact-options-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #8b5cf6;
}

.contact-option-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.contact-option-card:hover .contact-option-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 92, 246, 0.15);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3));
}

.contact-option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-option-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.contact-option-link {
    display: block;
    color: #8b5cf6;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contact-option-link:hover {
    color: #6366f1;
    text-decoration: underline;
}

.contact-hours-note {
    color: var(--text-gray);
    font-size: 0.9375rem;
    font-style: italic;
}

/* Contact Form Main Section */
.contact-form-main-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-main-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    max-width: 100vw;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: contactBlobMove 20s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes contactBlobMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

.contact-form-main-section .container {
    position: relative;
    z-index: 1;
}

.contact-form-main-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-form-main .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-main .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-main .form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.contact-form-main .form-input,
.contact-form-main .form-select,
.contact-form-main .form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fafbfc;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form-main .form-input:hover,
.contact-form-main .form-select:hover,
.contact-form-main .form-textarea:hover {
    border-color: #8b5cf6;
    background: var(--white);
}

.contact-form-main .form-input:focus,
.contact-form-main .form-select:focus,
.contact-form-main .form-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: var(--white);
    box-shadow: 
        0 0 0 4px rgba(139, 92, 246, 0.1),
        0 4px 12px rgba(139, 92, 246, 0.08);
}

.contact-form-main .form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
    line-height: 1.6;
}

.contact-form-main .select-wrapper {
    position: relative;
}

.contact-form-main .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-gray);
}

.contact-form-main .submit-btn {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.75rem;
    box-shadow: 
        0 4px 16px rgba(139, 92, 246, 0.3),
        0 2px 8px rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-form-main .submit-btn:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(139, 92, 246, 0.4),
        0 4px 12px rgba(139, 92, 246, 0.3);
}

.contact-form-main .submit-btn:active {
    transform: translateY(-1px);
}

/* Contact Location Section */
.contact-location-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-location-content {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.location-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-style: italic;
    color: var(--text-gray);
}

.contact-map-container {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.contact-map {
    width: 100%;
    height: 100%;
}

/* Contact Alert Modal */
.contact-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.contact-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.contact-alert-container {
    position: relative;
    z-index: 10001;
    width: 100%;
    max-width: 500px;
    animation: slideUp 0.3s ease;
}

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

.contact-alert-content {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(139, 92, 246, 0.2);
    position: relative;
    text-align: center;
}

.contact-alert-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.contact-alert-close:hover {
    background: var(--gray-200);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.contact-alert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.contact-alert-success .contact-alert-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.contact-alert-error .contact-alert-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.contact-alert-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-alert-success .contact-alert-title {
    color: #10b981;
}

.contact-alert-error .contact-alert-title {
    color: #ef4444;
}

.contact-alert-message {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    word-wrap: break-word;
}

.contact-alert-button {
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-alert-success .contact-alert-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.contact-alert-success .contact-alert-button:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.contact-alert-error .contact-alert-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.contact-alert-error .contact-alert-button:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.contact-alert-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-alert-content {
        padding: 2.5rem 2rem;
    }
    .contact-alert-title {
        font-size: 1.5rem;
    }
    .contact-alert-message {
        font-size: 1rem;
    }
    .contact-alert-icon {
        width: 64px;
        height: 64px;
    }
}

/* Contact Final CTA Section */
.contact-final-cta-section {
    padding: 6rem 0;
    background: url('../images/bg/counter-bg16.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.contact-final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    z-index: 0;
}

.contact-final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.contact-final-cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.contact-final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-final-cta-btn.btn-primary {
    background: var(--white);
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-final-cta-btn.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-final-cta-btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-final-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
    .contact-hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 20px;
    }
    .contact-hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .contact-hero-image-section {
        width: 100%;
    }
    .contact-hero-title {
        font-size: 3rem;
    }
    .contact-hero-subtitle {
        font-size: 1.25rem;
    }
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-location-content {
        grid-template-columns: 1fr;
    }
    .contact-map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 5rem 0 4rem;
    }
    .contact-hero-title {
        font-size: 2rem;
    }
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    .contact-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .contact-hero-cta {
        width: 100%;
        justify-content: center;
    }
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-main-wrapper {
        padding: 2rem;
    }
    .contact-form-main .form-row {
        grid-template-columns: 1fr;
    }
    .contact-final-cta-title {
        font-size: 2rem;
    }
    .contact-final-cta-subtitle {
        font-size: 1.125rem;
    }
    .contact-final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-final-cta-btn {
        width: 100%;
        justify-content: center;
    }
    .contact-map-container {
        height: 300px;
    }
}
