/* ===========================
   Variables & Reset
   =========================== */
:root {
    --primary-blue: #2563EB;
    --primary-blue-dark: #1E40AF;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-sky: #0EA5E9;
    --dark-bg: #0F172A;
    --dark-blue: #1E293B;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray: #64748B;
    --dark: #0F172A;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    --gradient-1: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    --gradient-2: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
    --gradient-3: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 45px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.4));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-text::after {
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 600;
    color: #4b5563;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 60%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.08);
}

/* Get Quote Button */
.btn-nav {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-nav::before {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%) !important;
}

/* Dropdown Enhancement */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.1);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: #1e40af;
}

/* Scroll Effect */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: slideDown 0.5s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Geometric pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(209, 213, 219, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(209, 213, 219, 0.3) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

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

/* Floating Elements */
.hero-float-element {
    position: absolute;
    z-index: 2;
    animation: gentleFloat 8s ease-in-out infinite;
}

.hero-float-element:nth-child(2) {
    animation: gentleFloat 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-float-element:nth-child(3) {
    animation: gentleFloat 10s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-float-element:nth-child(4) {
    animation: gentleFloat 7.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-float-element:nth-child(5) {
    animation: gentleFloat 9.5s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-float-element:nth-child(6) {
    animation: gentleFloat 8.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.hero-float-element:nth-child(7) {
    animation: gentleFloat 11s ease-in-out infinite;
    animation-delay: 1.2s;
}

.hero-float-element:nth-child(8) {
    animation: gentleFloat 7s ease-in-out infinite;
    animation-delay: 1.8s;
}

.hero-float-element:nth-child(9) {
    animation: gentleFloat 9s ease-in-out infinite;
    animation-delay: 0.3s;
}

.hero-float-element:nth-child(10) {
    animation: gentleFloat 10.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(2deg);
    }
    50% {
        transform: translate(-5px, -25px) rotate(-1deg);
    }
    75% {
        transform: translate(8px, -12px) rotate(1deg);
    }
}

.float-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(209, 213, 219, 0.3);
    transition: all 0.3s ease;
}

.float-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.25);
}

.float-icon i {
    font-size: 1.8rem;
    color: #2563EB;
}

.float-badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(209, 213, 219, 0.3);
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.float-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.25);
}

.float-badge i {
    color: #2563EB;
    font-size: 1rem;
}

.float-logo {
    width: 80px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.float-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.3);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(209, 213, 219, 0.3);
}

.hero-brand-tag img {
    height: 28px;
    width: auto;
}

.hero-brand-tag span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-tagline {
    margin-top: 3rem;
    text-align: center;
}

.hero-tagline h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-link {
    background: transparent;
    color: #1f2937;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-link:hover {
    color: #2563EB;
}

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

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floating 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(139, 92, 246, 0.4));
}

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-purple);
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 5px;
        opacity: 1;
    }
    50% {
        top: 15px;
        opacity: 0.5;
    }
}

/* ===========================
   Sections
   =========================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===========================
   Services Overview
   =========================== */
.services-overview {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

/* Modern Grid Layout */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Modern Service Cards */
.service-card-modern {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 320px;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

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

/* Gradient Overlay */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(30, 58, 138, 0.92) 0%,
        rgba(37, 99, 235, 0.88) 50%,
        rgba(59, 130, 246, 0.85) 100%
    );
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card-modern:hover .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(30, 58, 138, 0.95) 0%,
        rgba(37, 99, 235, 0.92) 50%,
        rgba(59, 130, 246, 0.90) 100%
    );
}

/* Content Wrapper */
.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Service Number */
.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-number {
    color: rgba(37, 99, 235, 0.15);
    transform: scale(1.1);
}

/* Icon Styling */
.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-icon-modern i {
    font-size: 1.8rem;
    color: #2563EB;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: translateY(-5px) rotate(5deg);
    background: var(--gradient-primary);
}

.service-card-modern:hover .service-icon-modern i {
    color: #ffffff;
}

/* Card Content */
.service-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.service-card-modern p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Tech Stack Pills */
.service-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card-modern:hover .tech-pill {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Modern Link */
.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link-modern i {
    transition: transform 0.3s ease;
}

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

/* Featured Card (Large) */
.service-card-modern.featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 3rem;
    border: none;
    min-height: 500px;
}

.service-card-modern.featured .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(30, 58, 138, 0.90) 0%,
        rgba(37, 99, 235, 0.85) 50%,
        rgba(59, 130, 246, 0.80) 100%
    );
}

.service-card-modern.featured:hover .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(30, 58, 138, 0.93) 0%,
        rgba(37, 99, 235, 0.88) 50%,
        rgba(59, 130, 246, 0.85) 100%
    );
}

.service-card-modern.featured h3 {
    font-size: 2rem;
}

.service-card-modern.featured p {
    font-size: 1.1rem;
}

.service-card-modern.featured .service-number {
    font-size: 5rem;
}

.service-card-modern.featured .service-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.service-card-modern.featured .service-icon-modern i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-card-modern.featured:hover .service-icon-modern {
    background: rgba(255, 255, 255, 0.35);
}

.service-card-modern.featured .service-link-modern {
    font-size: 1.1rem;
}

/* Accent Card */
.service-card-modern.accent .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.90) 0%,
        rgba(14, 165, 233, 0.85) 100%
    );
}

.service-card-modern.accent:hover .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.93) 0%,
        rgba(14, 165, 233, 0.88) 100%
    );
}

/* Highlight Card */
.service-card-modern.highlight .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.90) 0%,
        rgba(6, 182, 212, 0.85) 100%
    );
}

.service-card-modern.highlight:hover .service-card-overlay {
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.93) 0%,
        rgba(6, 182, 212, 0.88) 100%
    );
}

/* Hover Effect */
.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: #93C5FD;
}

/* ===========================
   Clients Section - Minimal Logo Slider
   =========================== */
.clients-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Slider Wrapper */
.clients-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -2rem;
    padding: 3rem 0;
}

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

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
}

/* Slider Animation */
.clients-slider {
    display: flex;
    gap: 4rem;
    animation: slideClients 25s linear infinite;
    width: fit-content;
}

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

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

/* Client Logo Item - Minimal */
.client-logo-item {
    flex-shrink: 0;
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.client-logo-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    transition: transform 0.3s ease;
}

.client-logo-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.client-logo-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

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

.client-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.client-logo-item:hover .client-name {
    color: #3B82F6;
}

/* Stats Row */
.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .client-logo-item {
        width: 150px;
        height: 100px;
    }

    .clients-slider {
        gap: 3rem;
    }

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

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

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

/* ===========================
   Why Choose Us
   =========================== */
.why-choose {
    background: var(--white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    z-index: 0;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

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

.why-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features-list i {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.why-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

/* ===========================
   Blog Preview
   =========================== */
.blog-preview {
    background: var(--light-gray);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.blog-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 12px;
    transform: translateX(5px);
}

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

/* ===========================
   CTA Section
   =========================== */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: float 15s infinite;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.cta .btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.5);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-purple);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

.footer-col-large {
    grid-column: span 2;
}

/* ===========================
   Navbar Dropdown
   =========================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 600px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.dropdown-col h4 {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown-col a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.dropdown-col a i {
    font-size: 0.8rem;
    width: 20px;
}

.dropdown-menu:not(.dropdown-grid) {
    min-width: 250px;
    padding: 1rem;
}

.dropdown-menu:not(.dropdown-grid) a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
}

.dropdown-menu:not(.dropdown-grid) a:hover {
    background: rgba(139, 92, 246, 0.1);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* ===========================
   Service Features List
   =========================== */
.service-features {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary-purple);
    font-size: 0.8rem;
}

.service-card.highlight .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.highlight .service-features i {
    color: var(--white);
}

/* ===========================
   Technologies Section
   =========================== */
.technologies {
    background: var(--white);
}

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

.tech-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.tech-category h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-category h3 i {
    color: var(--primary-purple);
}

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

.tech-item {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tech-item:hover {
    border-color: var(--primary-purple);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.tech-item i {
    font-size: 1.2rem;
    color: var(--primary-purple);
}

/* ===========================
   Enhanced Why Choose
   =========================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.experience-badge h3 {
    font-size: 3rem;
    margin: 0;
    font-weight: 800;
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===========================
   Our Process
   =========================== */
.our-process {
    background: var(--light-gray);
}

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===========================
   Portfolio Preview
   =========================== */
.portfolio-preview {
    background: var(--white);
}

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

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: rgba(139, 92, 246, 0.8);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #E5E7EB;
}

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

.testimonial-author h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--gray);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

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

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

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

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

    .hero-float-element {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .hero-tagline h2 {
        font-size: 1.5rem;
    }

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

    .why-visual {
        position: relative;
    }

    .experience-badge {
        position: static;
        margin-top: 2rem;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer-col-large {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-brand-tag img {
        height: 24px;
    }

    .hero-brand-tag span {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-tagline {
        margin-top: 3rem;
    }

    .hero-tagline h2 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card-modern.featured {
        grid-column: span 1;
        grid-row: span 1;
        padding: 2rem;
    }

    .service-card-modern.featured h3 {
        font-size: 1.6rem;
    }

    .service-card-modern.featured .service-number {
        font-size: 3.5rem;
    }

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