:root {
    --primary-color: #0a58ff;
    --secondary-color: #111111;
    --accent-color: #ff6b35;
    --text-color: #151515;
    --text-light: #6d6d6d;
    --bg-light: #f6f7f9;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --transition: all 0.25s ease;
    --nav-height: 70px;
}

/* Dark Mode Variables */
body.dark-mode {
    --secondary-color: #ffffff;
    --text-color: #e5e7eb;
    --text-light: #9ca3af;
    --bg-light: #1a1a1a;
    --white: #111111;
    --border-color: #374151;
    background: #0f0f0f;
}

body.dark-mode .navbar {
    background: rgba(17, 17, 17, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .service-card-modern,
body.dark-mode .why-card,
body.dark-mode .pricing-card,
body.dark-mode .testimonial-card {
    background: #1a1a1a;
    border-color: #374151;
}

body.dark-mode .client-item,
body.dark-mode .partner-item {
    background: #1a1a1a;
    border-color: #374151;
}

body.dark-mode .statistics {
    background: #1a1a1a;
}

body.dark-mode .stat-value {
    color: #ffffff;
}

body.dark-mode .stat-label {
    color: #e5e7eb;
}

body.dark-mode .clients {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #111111 100%);
}

body.dark-mode .clients::before {
    background: linear-gradient(90deg, transparent, rgba(10, 88, 255, 0.3), transparent);
}

body.dark-mode .clients::after {
    background: linear-gradient(90deg, transparent, rgba(10, 88, 255, 0.15), transparent);
}

body.dark-mode .about-mission,
body.dark-mode .about-vision,
body.dark-mode .about-values {
    background: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .about-mission:hover,
body.dark-mode .about-vision:hover,
body.dark-mode .about-values:hover {
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.25);
}

body.dark-mode .why-choose-us {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

body.dark-mode .why-card:hover {
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.25);
}

body.dark-mode .footer {
    background: #0a0a0a;
    color: #e5e7eb;
}

body.dark-mode .footer-col h4 {
    color: #ffffff;
}

body.dark-mode .footer-col a {
    color: #9ca3af;
}

body.dark-mode .footer-col a:hover {
    color: var(--primary-color);
}

body.dark-mode .social-links a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
}

/* Smooth transitions for all color-changing elements */
.navbar,
.service-card-modern,
.why-card,
.pricing-card,
.testimonial-card,
.client-item,
.partner-item,
.hero,
section,
.card,
button,
a {
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                transform 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth; - Removed for Lenis */
    scroll-padding-top: 90px;
}

/* Lenis Recommended Styles */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Smooth scroll with custom easing */
@media (prefers-reduced-motion: no-preference) {
    /* html { scroll-behavior: smooth; } - Removed for Lenis */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #fff;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Deluxe Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

body.dark-mode .navbar {
    background: rgba(17, 17, 17, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.nav-solid {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

body.dark-mode .navbar.nav-solid {
    background: rgba(17, 17, 17, 0.95);
}

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

/* Premium Logo Design */
.logo-deluxe {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-deluxe:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.logo-deluxe:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 7px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* Navigation Links */
.nav-links-deluxe {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.8px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
}

.nav-link-item:hover {
    background: rgba(10, 88, 255, 0.1);
    color: var(--primary-color);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-item:hover::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 12px;
    min-width: 240px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .dropdown-menu {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(10, 88, 255, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-item svg {
    color: var(--primary-color);
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(10, 88, 255, 0.1);
    background: transparent;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-action-btn svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    width: 14px;
    height: 14px;
}

.nav-action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 88, 255, 0.2);
    transform: translateY(-1px);
}

.nav-action-btn:hover::before {
    opacity: 1;
}

.nav-action-btn:hover svg {
    color: white;
    transform: scale(1.1);
}

.nav-action-btn:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 4px 10px rgba(10, 88, 255, 0.2);
}

.search-btn:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.theme-toggle-deluxe {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(10, 88, 255, 0.1);
    background: transparent;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle-deluxe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-toggle-deluxe:hover::before {
    opacity: 1;
}

.theme-toggle-deluxe:hover {
    transform: translateY(-1px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 88, 255, 0.2);
}

.theme-toggle-deluxe svg {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 14px;
    height: 14px;
}

.theme-toggle-deluxe:hover svg {
    color: white;
    transform: rotate(180deg);
}

.theme-toggle-deluxe .sun-icon,
.theme-toggle-deluxe .moon-icon {
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-deluxe .sun-icon {
    display: block;
    opacity: 1;
}

.theme-toggle-deluxe .moon-icon {
    display: none;
    opacity: 0;
    position: absolute;
}

body.dark-mode .theme-toggle-deluxe .sun-icon {
    display: none;
    opacity: 0;
}

body.dark-mode .theme-toggle-deluxe .moon-icon {
    display: block;
    opacity: 1;
    position: relative;
}

.btn-contact-deluxe {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin-left: 20px;
}

/* Removed pulse animation for elegance */

.btn-contact-deluxe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-contact-deluxe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.25);
    background: var(--primary-color);
    color: #ffffff;
}

.btn-contact-deluxe:hover::before {
    opacity: 1;
}

.btn-contact-deluxe span,
.btn-contact-deluxe svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-contact-deluxe:hover svg {
    transform: translateX(4px);
}

.btn-contact-deluxe:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

/* Dark mode contrast for the CTA */
body.dark-mode .btn-contact-deluxe {
    color: #ffffff;
    border-color: #ffffff;
}

body.dark-mode .btn-contact-deluxe:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.search-box-deluxe {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.search-input-deluxe {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--text-color);
    font-family: inherit;
}

.search-input-deluxe::placeholder {
    color: var(--text-light);
}

.search-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.search-category h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.search-suggestion-item {
    display: block;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.search-suggestion-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .search-suggestions {
        grid-template-columns: 1fr;
    }
    
    .search-overlay {
        padding-top: 60px;
    }
    
    .search-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .search-box-deluxe {
        padding: 16px 20px;
    }
    
    .search-input-deluxe {
        font-size: 16px;
    }
    
    .hero-slide-title {
        font-size: clamp(32px, 8vw, 54px);
    }
    
    .hero-slide-subtitle {
        font-size: clamp(18px, 5vw, 28px);
    }
    
    .hero-slider-controls {
        bottom: 40px;
        gap: 20px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

body.dark-mode .search-box-deluxe {
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .search-input-deluxe {
    color: var(--text-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    background: rgba(10, 88, 255, 0.1);
    border: 2px solid rgba(10, 88, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    position: relative;
    z-index: 2001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger:hover {
    background: rgba(10, 88, 255, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger:focus:not(:focus-visible) {
    outline: none;
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger .bar {
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    will-change: transform, opacity;
}

body.dark-mode .hamburger {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

body.dark-mode .hamburger:focus-visible {
    outline-color: white;
}

body.dark-mode .hamburger .bar {
    background: white;
}

.hamburger.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hamburger.active .bar {
    background: white;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    visibility: visible;
    opacity: 1;
}

/* Hero Slider */
.hero-slider {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0f0f0f;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 20px 120px;
}

.hero-slide-text {
    max-width: 1200px;
    text-align: center;
    color: white;
}

.hero-slide-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 300;
    color: #eaeaea;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group .btn-secondary {
        margin-left: 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-cta-group .btn-primary {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(120% 90% at 50% 10%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.1) 74%, rgba(0, 0, 0, 0.0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(10, 88, 255, 0.8);
    border-color: rgba(10, 88, 255, 1);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Original Hero (Fallback) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0f0f0f;
    color: #fff;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px 120px;
}

.hero-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a3a3a3;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(44px, 7.2vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    color: #fff;
    word-break: break-word;
}

#heroRotator {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 300;
    color: #eaeaea;
}

/* Deluxe shadow overlay for hero */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Layered vignette + vertical gradient for a premium look */
    background:
        radial-gradient(120% 90% at 50% 10%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.06) 74%, rgba(0, 0, 0, 0.0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.62) 100%);
}

/* Subtle text glow to stand out on darkened background */
.hero-title,
.hero-subtitle {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 2px 10px rgba(0, 0, 0, 0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Horizontal carousel utility (clients/partners) */
.h-scroll {
    position: relative;
}

.h-scroll-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 32px;
    padding-bottom: 8px;
    /* Hide scrollbars while keeping scroll functionality */
    scrollbar-width: none;
}

.h-scroll-viewport::-webkit-scrollbar {
    display: none;
}

.h-scroll-viewport.rail {
    scroll-snap-type: none;
}

.h-item {
    scroll-snap-align: start;
}

.h-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

/* Hide controls for auto-scrolling sections and grid layouts */
.clients .h-controls,
.partners .h-controls {
    display: none;
}

.h-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.h-btn:hover {
    background: #f3f4f6;
    transform: scale(1.1);
    border-color: rgba(10, 88, 255, 0.3);
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: #fff;
    color: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.6s ease;
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Portfolio */
.portfolio {
    padding: 120px 0;
}

/* Default grid (used on other pages) remains here via .portfolio-grid class */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    /* padding: var(--spacing-lg) 0; */
}

/* Pinned horizontal scroll for Our Work on homepage */
.work-scroll {
    position: relative;
}

.work-pin {
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    overflow: hidden;
    display: flex;
    align-items: center;
}

.work-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100vw;
    /* fullscreen slide */
    gap: 0;
    padding: 0;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fullscreen slides for work track */
.work-track .portfolio-item {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 0;
}

.work-track .portfolio-item:hover {
    transform: none;
    box-shadow: none;
}

/* Split Layout Styles */
.portfolio-split-layout {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 80px 40px;
    gap: 60px;
}

.portfolio-left {
    flex: 0 0 35%;
    text-align: left;
    z-index: 2;
    padding-right: 20px;
}

.portfolio-right {
    flex: 1;
    height: 70vh;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: #fff;
}

.portfolio-live-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.browser-bar {
    height: 36px;
    background: #f1f3f5;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    height: 24px;
    background: #fff;
    border-radius: 4px;
    font-size: 11px;
    color: #868e96;
    display: flex;
    align-items: center;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-live-preview {
    flex: 1;
    width: 100%;
    border: none;
    background: #fff;
}

.portfolio-right .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-left .portfolio-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(10, 88, 255, 0.05);
    border-radius: 4px;
}

.portfolio-left h3 {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
    line-height: 1.1;
}

.portfolio-left p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 450px;
}

/* Circular Button Style */
.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
    group: hover;
}

.portfolio-link-btn .btn-text {
    font-size: 13px;
    font-weight: 600;
    margin-right: 16px;
    transition: transform 0.3s ease;
}

.portfolio-link-btn .btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: transparent;
}

.portfolio-link-btn .btn-icon svg {
    transition: transform 0.3s ease, stroke 0.3s ease;
    stroke: var(--text-color);
    width: 20px;
    height: 20px;
}

.portfolio-link-btn:hover .btn-icon {
    background: var(--text-color);
    border-color: var(--text-color);
    transform: scale(1.1);
}

.portfolio-link-btn:hover .btn-icon svg {
    stroke: var(--bg-light);
    transform: rotate(-45deg);
}

.portfolio-link-btn:hover .btn-text {
    transform: translateX(5px);
}

/* Dark Mode Overrides */
body.dark-mode .work-track .portfolio-item {
    background: var(--bg-light);
}

body.dark-mode .portfolio-right {
    background: #1a1a1a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

body.dark-mode .browser-bar {
    background: #252525;
    border-bottom-color: #333;
}

body.dark-mode .browser-url {
    background: #1a1a1a;
    color: #666;
}

body.dark-mode .portfolio-link-btn .btn-icon svg {
    stroke: var(--text-color);
}

body.dark-mode .portfolio-link-btn:hover .btn-icon svg {
    stroke: #000;
}

body.dark-mode .portfolio-link-btn:hover .btn-icon {
    background: var(--text-color);
}

@media (max-width: 992px) {
    .portfolio-split-layout {
        /* flex-direction: column; */
        /* padding: 100px 20px 40px; */
        gap: 30px;
        text-align: center;
    }
    
    .portfolio-left {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    
    .portfolio-left p {
        margin: 0 auto 30px;
    }
    
    .portfolio-right {
        width: 100%;
        height: 50vh;
    }
}

/* Progress bar for pinned work */
.work-progress {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: min(520px, 70vw);
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    z-index: 3;
    overflow: hidden;
}

.work-progress__bar {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: inherit;
    transition: width .15s linear;
}

/* Dot navigation */
.work-dots {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.work-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.work-dot.is-active {
    background: #ffffff;
    transform: scale(1.15);
}

/* Slide counter */
.work-counter {
    position: absolute;
    right: 32px;
    bottom: 16px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
    .work-pin {
        position: static;
        height: auto;
    }

    .work-scroll {
        height: auto !important;
    }

    .work-track {
        grid-auto-flow: row;
        grid-auto-columns: unset;
        grid-template-columns: 1fr;
        padding: 0 20px;
        transform: none !important;
    }

    .work-track .portfolio-item {
        height: 300px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .work-track .portfolio-image {
        height: 300px;
    }

    .work-progress,
    .work-counter,
    .work-dots {
        display: none !important;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Video support in portfolio cards */
.portfolio-item video.portfolio-image,
.portfolio-item iframe.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.portfolio-item iframe.portfolio-image {
    border: none;
    pointer-events: none; /* Prevent iframe interaction in card view */
}

.portfolio-item:hover iframe.portfolio-image {
    pointer-events: auto; /* Enable interaction on hover */
}

.portfolio-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.85) 100%);
    color: #fff;
    transform: translateY(10%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0%);
    opacity: 1;
}

.portfolio-category {
    font-size: 12px;
    text-transform: uppercase;
    color: #c7d2fe;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.portfolio-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-color);
    cursor: default;
}

.portfolio-item p {
    color: var(--text-light);
    font-size: 14px;
    cursor: default;
}


/* Clients - Advanced Auto-Scrolling Carousel */
.clients {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    overflow: hidden;
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(10, 88, 255, 0.5), transparent);
}

.clients::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 88, 255, 0.2), transparent);
}

.clients .section-header {
    margin-bottom: 60px;
    position: relative;
}

.clients .section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.clients .section-subtitle::after {
    content: '→';
    display: inline-block;
    margin-left: 15px;
    font-size: 32px;
    color: #0a58ff;
    animation: slide-hint 2s ease-in-out infinite;
}

@keyframes slide-hint {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Container for the scrolling track */
.clients .h-scroll {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
}

/* Scrolling track */
.clients .h-scroll-viewport.rail {
    display: flex;
    gap: 50px;
    animation: scroll-right 50s linear infinite;
    width: fit-content;
    will-change: transform;
}

.clients .h-scroll-viewport.rail:hover {
    animation-play-state: paused;
}

/* Keyframe for auto-scroll to right */
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Modern Client Cards - Bigger and More Impactful */
.client-item {
    flex-shrink: 0;
    width: 380px;
    height: 240px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(10, 88, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
}

/* Glassmorphism effect with gradient */
.client-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 88, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(0, 212, 255, 0.02) 100%);
    border-radius: 24px;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Animated gradient border on hover */
.client-item::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg,
            #0a58ff,
            #00d4ff,
            #0a58ff,
            #00d4ff);
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient-rotate 4s ease-in-out infinite;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.client-item:hover::after {
    opacity: 1;
}

.client-item:hover::before {
    opacity: 0.7;
}

.client-item:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow:
        0 30px 80px rgba(10, 88, 255, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(10, 88, 255, 0.2);
}

/* Logo styling - Bigger and more prominent */
.client-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4) contrast(1.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 24px;
}

.client-item:hover .client-logo {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.05);
}

/* Company name overlay (optional) */
.client-name {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    letter-spacing: 0.5px;
}

.client-item:hover .client-name {
    opacity: 1;
    transform: translateY(0);
}

/* Shine effect on hover - Enhanced */
.client-item .shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: rotate(45deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.client-item:hover .shine {
    opacity: 1;
    left: 100%;
}

/* Pulse animation for added dynamism */
@keyframes card-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .client-item {
        width: 340px;
        height: 220px;
        padding: 45px;
    }

    .client-logo {
        max-width: 250px;
        max-height: 130px;
    }
}

@media (max-width: 768px) {
    .clients .section-subtitle {
        font-size: 20px;
    }

    .client-item {
        width: 280px;
        height: 180px;
        padding: 35px;
    }

    .client-logo {
        max-width: 210px;
        max-height: 110px;
    }

    .clients .h-scroll-viewport.rail {
        animation-duration: 40s;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .client-item {
        width: 240px;
        height: 160px;
        padding: 30px;
    }

    .client-logo {
        max-width: 180px;
        max-height: 90px;
    }

    .clients .h-scroll-viewport.rail {
        animation-duration: 35s;
        gap: 30px;
    }
}

/* Partners - Modern Bento Grid with Smooth Animations */
.partners {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(10, 88, 255, 0.03) 100%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partners .section-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.partners .section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Modern Grid Layout */
.partners .h-scroll-viewport {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Sleek Partner Cards */
.partner-item {
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Subtle gradient overlay */
.partner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 88, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

/* Animated corner accent */
.partner-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0a58ff, #00d4ff);
    border-radius: 0 20px 0 100%;
    opacity: 0;
    transform: translate(20px, -20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-item:hover::after {
    opacity: 0.15;
    transform: translate(0, 0);
}

.partner-item:hover {
    transform: translateY(-10px);
    border-color: rgba(10, 88, 255, 0.2);
    box-shadow: 
        0 20px 50px rgba(10, 88, 255, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) opacity(0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 20px;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Glow effect */
.partner-item .glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(10, 88, 255, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(30px);
    pointer-events: none;
}

.partner-item:hover .glow {
    opacity: 1;
}

/* Partners Responsive Design */
@media (max-width: 1200px) {
    .partners .h-scroll-viewport {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 100px 0;
    }

    .partners .section-subtitle {
        font-size: 22px;
    }

    .partners .h-scroll-viewport {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .partner-item {
        padding: 30px;
    }

    .partner-logo {
        max-width: 150px;
        max-height: 85px;
    }
}

@media (max-width: 480px) {
    .partners .section-subtitle {
        font-size: 20px;
    }

    .partners .h-scroll-viewport {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .partner-item {
        padding: 35px;
    }

    .partner-logo {
        max-width: 160px;
        max-height: 90px;
    }
}

/* News */
.news {
    padding: 120px 0;
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.news-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.news-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-location {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
}

.contact-location h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-location p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 13px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #e5e7eb;
    padding: 60px 0 30px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    transition: color 0.5s ease;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    transition: all 0.5s ease;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0a58ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    box-shadow: none;
}

.btn-primary:hover {
    background: #0847cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 88, 255, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
    font-size: 14px;
    box-shadow: none;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

body.dark-mode .btn-secondary {
    border-color: #e5e7eb;
    color: #e5e7eb;
}

body.dark-mode .btn-secondary:hover {
    background: #e5e7eb;
    color: #000000;
}

.text-center {
    text-align: center;
}

.reveal {
    opacity: 0;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
    opacity: 0;
    transition: opacity .22s ease;
}

.modal {
    background: #fff;
    color: #111;
    width: min(960px, 94vw);
    max-height: 92vh;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(8px);
    transition: transform .22s ease;
}

.modal-media {
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media img,
.modal-media video,
.modal-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-media video {
    max-height: 80vh;
    object-fit: contain;
}

.modal-media iframe {
    border: none;
    min-height: 500px;
}

.modal-body {
    padding: 28px;
    overflow: auto;
}

.modal-body h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-category {
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    margin-bottom: 12px;
}

.modal-body p {
    color: #374151;
    line-height: 1.75;
}

.modal-body .btn-primary {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
}

.modal-close:focus,
.modal-body .btn-primary:focus {
    outline: 3px solid #111827;
    outline-offset: 2px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-close:hover {
    background: #fff;
}

.modal-overlay.is-open {
    opacity: 1;
}

.modal-overlay.is-open .modal {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .modal-overlay {
        transition: none;
    }

    .modal {
        transition: none;
        transform: none;
    }
}

@media (max-width: 900px) {
    .modal {
        grid-template-columns: 1fr;
    }

    .modal-media {
        max-height: 50vh;
    }
}

/* About */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.about-mission,
.about-vision,
.about-values {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.about-mission:hover,
.about-vision:hover,
.about-values:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 88, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.about-mission:hover .mission-icon,
.about-vision:hover .mission-icon,
.about-values:hover .mission-icon {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.about-mission h3,
.about-vision h3,
.about-values h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-mission p,
.about-vision p,
.about-values p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    margin-top: 80px;
    text-align: center;
}

.team-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.team-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.team-member {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-member span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-content-modern,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Filters & Pagination */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.filter-btn {
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
}

.filter-btn:hover {
    background: #f9fafb;
}

.filter-btn.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.page-btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

/* Active nav link */
.nav-links a.active {
    color: #111827;
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #111827;
}

/* Skeleton loading */
.skeleton {
    position: relative;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

.skeleton-box {
    background: #e5e7eb;
    border-radius: 10px;
}

.skeleton-line {
    background: #e5e7eb;
    height: 14px;
    border-radius: 7px;
    margin-top: 10px;
}

.skeleton-circle {
    background: #e5e7eb;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.skeleton-card {
    padding: 18px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
}

.skeleton-portfolio-img {
    height: 220px;
}

.skeleton-news-img {
    height: 160px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Responsive */
/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container-nav {
        padding: 0 30px;
    }
    
    .nav-links-deluxe {
        gap: 4px;
    }
    
    .nav-link-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-content {
        max-width: 90%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .technology-card {
        padding: 24px 38px !important;
    }

    .expertise-slide {
        padding: 20px 32px !important;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .container-nav {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: white !important;
        transition: transform 0.3s ease-out !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        overflow-y: auto !important;
        padding: max(env(safe-area-inset-top), 24px) 20px 24px !important;
        z-index: 2001 !important;
        transform: translateX(100%);
        pointer-events: none;
    }
    
    body.dark-mode .nav-menu {
        background: #1a1a1a !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        pointer-events: auto !important;
    }

    .nav-backdrop {
        display: none !important;
    }

    .nav-links-deluxe {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        margin-bottom: 24px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 0 30px 0 !important;
    }

    .nav-links-deluxe li {
        display: block !important;
        width: 100% !important;
        list-style: none !important;
    }
    
    .nav-link-item {
        padding: 14px 20px !important;
        font-size: 14px !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        color: var(--text-color) !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        font-family: inherit !important;
        border-radius: 8px !important;
    }

    .nav-link-item:hover {
        background: rgba(10, 88, 255, 0.08) !important;
    }

    .nav-link-item span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: inherit !important;
    }

    .dropdown-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .dropdown-toggle svg {
        margin-left: 8px !important;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 8px !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(10, 88, 255, 0.04) !important;
        display: none !important;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .nav-actions {
        padding-top: 16px !important;
        border-top: 1px solid var(--border-color) !important;
        justify-content: space-between !important;
        display: flex !important;
        width: 100% !important;
        gap: 12px !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        pointer-events: auto !important;
    }
    
    .nav-action-btn,
    .theme-toggle-deluxe,
    .btn-contact-deluxe {
        pointer-events: auto !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .btn-contact-deluxe {
        width: 100% !important;
        justify-content: center !important;
        display: flex !important;
        margin-left: 0 !important;
        padding: 14px 18px !important; /* easier tap target on phones */
        border-radius: 6px !important;
        font-size: 14px !important;
        background: var(--bg-light);
        color: var(--text-color);
        border-color: var(--border-color);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .technology-card,
    .expertise-slide {
        padding: 22px 35px !important;
        font-size: 13px !important;
    }

    .technology-card img,
    .technology-card video {
        width: 52px !important;
        height: 52px !important;
    }

    .expertise-slide .expertise-logo,
    .expertise-slide .expertise-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 22px !important;
    }

    .tech-slider,
    .expertise-slider {
        gap: 30px !important;
    }

    .container {
        padding: 0 25px;
    }

    section {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .service-card-modern,
    .portfolio-card,
    .news-card {
        padding: 30px 25px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .technology-card,
    .expertise-slide {
        padding: 16px 24px !important;
        font-size: 12px !important;
        min-width: 160px !important;
        border-radius: 20px !important;
    }

    .technology-card img,
    .technology-card video {
        width: 40px !important;
        height: 40px !important;
    }

    .expertise-slide .expertise-logo,
    .expertise-slide .expertise-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 18px !important;
    }

    .tech-slider-wrapper,
    .expertise-slider-wrapper {
        padding: 30px 0 !important;
    }

    .tech-slider,
    .expertise-slider {
        gap: 20px !important;
    }

    .service-card-modern,
    .portfolio-card,
    .news-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .btn,
    .btn-primary,
    .btn-contact-deluxe {
        padding: 12px 24px;
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 20px;
    }

    .portfolio-categories {
        flex-wrap: wrap;
        gap: 8px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-slider-controls {
        bottom: 20px;
    }

    .hero-dots {
        gap: 6px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .scroll-indicator {
        display: none;
    }

    .clients-grid {
        gap: 15px;
    }

    .client-logo {
        max-width: 120px;
        max-height: 60px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .technology-card,
    .expertise-slide {
        padding: 14px 20px !important;
        font-size: 11px !important;
        min-width: 140px !important;
    }

    .technology-card img,
    .technology-card video {
        width: 36px !important;
        height: 36px !important;
    }

    .expertise-slide .expertise-logo,
    .expertise-slide .expertise-icon {
        width: 22px !important;
        height: 22px !important;
        font-size: 16px !important;
    }

    .btn,
    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .service-card-modern,
    .portfolio-card,
    .news-card {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 28px;
    }
}

/* Enhanced Services Section */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.service-card-modern {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.15);
    border-color: rgba(10, 88, 255, 0.1);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(10, 88, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    color: white;
}

.service-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card-modern p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-tech {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.15);
}

.why-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.why-card p {
    color: var(--text-light);
}

.tech-stack,
.industry-expertise {
    text-align: center;
    margin-top: 60px;
}

.tech-stack h3,
.industry-expertise h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Tech Stack Slider */
/* Technologies We Master - Neon Cyberpunk Design */
.tech-stack {
    margin: 80px 0;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: transparent;
}

.tech-stack h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.tech-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-slider {
    display: flex;
    gap: 30px;
    animation: techSlide 50s linear infinite;
    width: max-content;
    will-change: transform;
}

.tech-slider:hover {
    animation-play-state: paused;
}

@keyframes techSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-slide {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 255, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 32px;
    box-shadow: 
        0 4px 20px rgba(102, 126, 234, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.2);
    min-width: 180px;
    width: fit-content;
    min-height: 160px;
}

/* Fixed size for cards with videos */
.tech-slide:has(video.tech-logo),
.tech-slide:has(iframe.tech-logo) {
    width: 280px;
    height: 180px;
    min-width: 280px;
    min-height: 180px;
}

.tech-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.tech-slide:not(.fade-in) {
    opacity: 0;
    transform: translateY(30px);
}

.tech-slide.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-slide .tech-logo {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
    transition: all 0.4s ease;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.tech-slide video.tech-logo,
.tech-slide iframe.tech-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 32px;
    z-index: 0;
}

.tech-slide .tech-logo-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    color: #ffffff;
    font-size: 36px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tech-slide .tech-name {
    display: none;
}

.tech-slide:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 8px 30px rgba(102, 126, 234, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.4);
}

.tech-slide:hover::before {
    left: 100%;
}

.tech-slide:hover .tech-logo {
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transform: scale(1.05);
}

.tech-slide:hover .tech-logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

/* Industry Expertise Slider - Crystal Glass Aurora Design */
.industry-expertise {
    margin: 80px 0;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: transparent;
}

.industry-expertise h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #f093fb, #f5576c, #ffd140);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.expertise-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    padding: 70px 0 80px;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(245, 87, 108, 0.02) 50%, transparent 100%),
        radial-gradient(circle at 30% 50%, rgba(255, 209, 64, 0.04), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(245, 87, 108, 0.04), transparent 60%);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.expertise-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, 
            transparent, 
            transparent 100px, 
            rgba(245, 87, 108, 0.02) 100px, 
            rgba(245, 87, 108, 0.02) 101px);
    pointer-events: none;
    animation: shimmerFlow 15s linear infinite;
}

@keyframes shimmerFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

.expertise-slider {
    display: flex;
    gap: 45px;
    animation: expertiseWave 80s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    width: max-content;
    will-change: transform;
}

.expertise-slider:hover {
    animation-play-state: paused;
}

.expertise-slider:hover .expertise-slide {
    animation-play-state: paused;
}

@keyframes expertiseWave {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    16.66% {
        transform: translateX(-8.33%) translateY(-6px) rotate(-0.3deg);
    }
    33.33% {
        transform: translateX(-16.66%) translateY(3px) rotate(0.2deg);
    }
    50% {
        transform: translateX(-25%) translateY(-4px) rotate(-0.15deg);
    }
    66.66% {
        transform: translateX(-33.33%) translateY(5px) rotate(0.25deg);
    }
    83.33% {
        transform: translateX(-41.66%) translateY(-2px) rotate(-0.1deg);
    }
}

.expertise-slide {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #4a5568;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 20px rgba(245, 87, 108, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 87, 108, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.expertise-slide .expertise-logo,
.expertise-slide .expertise-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.expertise-slide .expertise-icon {
    font-size: 24px;
    width: auto;
    height: auto;
    color: #f5576c;
}

.expertise-slide .expertise-name {
    flex: 1;
}

.expertise-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 87, 108, 0.1), transparent);
    transition: left 0.5s;
}

.expertise-slide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
    pointer-events: none;
}

.expertise-slide:not(.fade-in) {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
}

.expertise-slide.fade-in {
    animation: fadeInUpRotate 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInUpRotate {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-5deg) scale(0.9);
    }
    60% {
        transform: translateY(-5px) rotate(2deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

.expertise-slide:hover {
    transform: translateY(-12px) scale(1.05) rotate(-2deg);
    box-shadow: 
        0 12px 40px rgba(245, 87, 108, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(245, 87, 108, 0.5);
    color: #2d3748;
}

.expertise-slide:hover::before {
    left: 100%;
}

.expertise-slide:hover::after {
    width: 300px;
    height: 300px;
}

.expertise-slide:hover .expertise-logo,
.expertise-slide:hover .expertise-icon {
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(245, 87, 108, 0.3));
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-tag {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.expertise-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(10, 88, 255, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 88, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.2);
    border-color: var(--primary-color);
}

.pricing-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pricing-price {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-price span {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 88, 255, 0.15);
    border-color: var(--primary-color);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-video .video-placeholder {
    background: linear-gradient(135deg, rgba(10, 88, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-video .video-placeholder:hover {
    transform: scale(1.05);
}

.testimonial-video .video-placeholder p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.google-reviews {
    text-align: center;
    margin-top: 60px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.google-badge div {
    text-align: left;
}

.google-badge strong {
    display: block;
    font-size: 20px;
    color: var(--secondary-color);
}

.google-badge span {
    font-size: 13px;
    color: var(--text-light);
}

/* Enhanced Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-color);
    background: var(--white);
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quick-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

.calendly-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.calendly-link:hover {
    text-decoration: underline;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .services-grid-enhanced,
    .why-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .theme-toggle {
        margin-left: 10px;
    }
    
    /* Portfolio Mobile Redesign */
    .portfolio-item {
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        margin-bottom: 20px;
    }
    
    .portfolio-image {
        height: 240px;
    }
    
    .portfolio-item video.portfolio-image,
    .portfolio-item iframe.portfolio-image {
        height: 240px;
    }
    
    .portfolio-content {
        position: static;
        transform: none;
        opacity: 1;
        background: #ffffff;
        padding: 20px;
    }
    
    .portfolio-category {
        font-size: 11px;
        color: var(--primary-color);
        margin-bottom: 8px;
    }
    
    .portfolio-item h3 {
        font-size: 19px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .portfolio-item p {
        font-size: 13px;
        line-height: 1.5;
        color: #616161;
    }
    
    .portfolio-item:hover {
        transform: none;
    }
    
    .portfolio-item:hover .portfolio-image {
        transform: none;
    }
}

@media (max-width: 480px) {
    /* Enhanced Mobile Portfolio */
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-item {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-item video.portfolio-image,
    .portfolio-item iframe.portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 16px;
    }
    
    .portfolio-category {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .portfolio-item h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .portfolio-item p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .portfolio-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}
