.text-gradient-gold {
    background: linear-gradient(90deg, #F59E0B, #D97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle animated background for hero section */
@keyframes line-shift {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 20px 0px;
    }
}

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

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

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

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

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

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

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

.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slide-in-left 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slide-in-right 0.8s ease-out forwards;
}

.opacity-0 {
    opacity: 0;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-size: 16px;
    zoom: 1;
}

* {
    box-sizing: border-box;
}


/* Animated particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

.particle-animated {
    animation: particle-float 20s linear infinite;
}

/* Horizontal scroll styling */
.overflow-x-auto {
    scrollbar-width: thin;
    scrollbar-color: rgba(217, 119, 6, 0.3) transparent;
}

.overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: transparent;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background-color: rgba(217, 119, 6, 0.3);
    border-radius: 4px;
}

.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background-color: rgba(217, 119, 6, 0.5);
}

/* ===== ADVANCED ANIMATIONS & EFFECTS ===== */

/* Glowing text effect */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(217, 119, 6, 0.5),
                    0 0 20px rgba(217, 119, 6, 0.3),
                    0 0 30px rgba(217, 119, 6, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(217, 119, 6, 0.8),
                    0 0 30px rgba(217, 119, 6, 0.5),
                    0 0 40px rgba(217, 119, 6, 0.3);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scale and fade */
@keyframes scale-fade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate glow */
@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(217, 119, 6, 0.6);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
    }
}

/* Slide up with blur - Enhanced */
@keyframes slide-up-blur {
    0% {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.slide-up-blur {
    animation: slide-up-blur 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger animation utility - SimpleLyft AI style */
.stagger-item {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    /* will-change is a standard CSS property for performance optimization */
    will-change: opacity, transform, filter;
}

.stagger-item.visible,
[class~="stagger-item"][class~="visible"] {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Bounce in */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Gradient animation */
@keyframes gradient-animate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Pulse ring */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* Stagger animation delay utility */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }




/* Shimmer text effect */
.shimmer-text {
    background: linear-gradient(
        90deg,
        rgba(217, 119, 6, 1) 0%,
        rgba(251, 191, 36, 1) 50%,
        rgba(217, 119, 6, 1) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    /* background-clip: text is a standard CSS property, text value is valid */
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Button pulse effect */
.btn-pulse {
    position: relative;
    overflow: hidden;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* Fallback for older browsers that don't support RGBA */
    background: #ffffff;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pulse:hover::before {
    width: 300px;
    height: 300px;
}

/* Gradient border animation */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 12px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    /* inset property shorthand - fallback for older browsers */
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, #D97706, #F59E0B, #D97706);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    /* mask and mask-composite are standard CSS properties for advanced masking */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: gradient-animate 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Floating animation */
@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.float-smooth {
    animation: float-smooth 6s ease-in-out infinite;
}

/* Number counter animation */
.counter-animate {
    animation: scale-fade 0.5s ease-out;
}

/* Section divider glow */
.section-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(217, 119, 6, 0.5),
        transparent
    );
    margin: 40px 0;
    animation: gradient-animate 3s ease infinite;
}

/* Icon spin on hover */
.icon-spin:hover {
    animation: rotate-glow 2s linear infinite;
}


/* Parallax container */
.parallax-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}


/* Enhanced focus states - REMOVED to prevent yellow border zoom animation */
/* Using specific selectors instead of universal selector for better performance */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Loading skeleton animation */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0px,
        #e0e0e0 40px,
        #f0f0f0 80px
    );
    background-size: 200px;
    animation: skeleton-loading 1.5s infinite;
}

/* Smooth page transitions */
body {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D97706, #F59E0B);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F59E0B, #D97706);
}

/* Glass morphism effect */
.glass-effect {
    /* Fallback for older browsers that don't support RGBA */
    background: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter is a standard CSS property for backdrop effects */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Fallback for older browsers that don't support RGBA */
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Magnetic hover effect - SimpleLyft style */
.magnetic {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* will-change is a standard CSS property for performance optimization */
    will-change: transform;
}

/* Smooth float animation */
@keyframes smooth-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.smooth-float {
    animation: smooth-float 6s ease-in-out infinite;
}



/* Smooth section transitions */
section {
    position: relative;
    overflow: hidden;
}

/* Enhanced button styles - SimpleLyft style */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* Fallback for older browsers that don't support RGBA */
    background: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-enhanced:hover::after {
    width: 400px;
    height: 400px;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

/* Text gradient animation */
.text-gradient-animated {
    background: linear-gradient(
        90deg,
        #D97706,
        #F59E0B,
        #FCD34D,
        #F59E0B,
        #D97706
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animate 3s linear infinite;
}

/* Hero title animated gradient - subtle animated gradient */
.hero-title-gradient {
    background: linear-gradient(
        90deg,
        #1e293b 0%,
        #334155 20%,
        #475569 40%,
        #64748b 60%,
        #475569 80%,
        #334155 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-gradient-shift 4s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 0.03em;
}

@keyframes hero-gradient-shift {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Founder testimonial style with irregular yellow background */
.founder-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-image-container {
    position: relative;
    width: 120px;
    height: 150px;
    flex-shrink: 0;
}

.founder-image-wrapper {
    width: 100%;
    height: 100%;
    background: #FCD34D;
    border: 2px solid #1f2937;
    clip-path: polygon(
        12% 0%, 
        22% 0%, 
        24% 6%, 
        30% 0%, 
        70% 0%, 
        76% 6%, 
        78% 0%, 
        88% 0%, 
        100% 4%, 
        100% 96%, 
        88% 100%, 
        78% 100%, 
        76% 94%, 
        70% 100%, 
        30% 100%, 
        24% 94%, 
        22% 100%, 
        12% 100%, 
        0% 96%, 
        0% 4%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
}

.founder-image-placeholder .material-symbols-outlined {
    font-size: 4rem;
    color: #6b7280;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.dark .founder-name {
    color: #f9fafb;
}

.founder-title {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 400;
}

.dark .founder-title {
    color: #9ca3af;
}

/* Hide scrollbar but keep scrolling */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

/* ===== RESPONSIVE DESIGN - WEB & MOBILE SUPPORT ===== */

/* Base Mobile Styles (default, up to 639px) */
body {
    font-size: 14px;
}

html {
    font-size: 14px;
}

@media (max-width: 639px) {
    .founder-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .founder-image-container {
        width: 80px;
        height: 100px;
    }
}

/* Tablet Styles (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
    body {
        font-size: 15px;
    }
    
    html {
        font-size: 15px;
    }
    
    .founder-card {
        gap: 1.5rem;
    }
    
    .founder-image-container {
        width: 100px;
        height: 125px;
    }
}

/* Desktop Styles (1024px and above) */
@media (min-width: 1024px) {
    body {
        font-size: 16px;
    }
    
    html {
        font-size: 16px;
    }
    
    .founder-card {
        flex-direction: row;
        gap: 2rem;
    }
    
    .founder-image-container {
        width: 120px;
        height: 150px;
    }
    
    /* Enhanced hover effects for desktop */
}


/* Responsive Typography */
@media (max-width: 639px) {
    .text-gradient-animated,
    .hero-title-gradient {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .text-gradient-animated,
    .hero-title-gradient {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
}


/* Responsive Grid Adjustments */
@media (max-width: 767px) {
    .grid {
        display: grid;
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid {
        display: grid;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .grid {
        display: grid;
        gap: 2rem;
    }
}

/* Responsive Button Sizes */
@media (max-width: 639px) {
    .btn-enhanced {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 640px) {
    .btn-enhanced {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive Card Padding */
@media (max-width: 639px) {
    .bg-surface-dark,
    .bg-card-dark {
        padding: 1.25rem;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .bg-surface-dark,
    .bg-card-dark {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .bg-surface-dark,
    .bg-card-dark {
        padding: 2rem;
    }
}

/* Responsive Section Padding */
@media (max-width: 639px) {
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Responsive Scrollbar - Hide on mobile, show on desktop */
@media (max-width: 1023px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
}

@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 12px;
    }
}


/* Responsive Founder Testimonial */
@media (max-width: 639px) {
    .founder-name {
        font-size: 1rem;
    }
    
    .founder-title {
        font-size: 0.75rem;
    }
}

@media (min-width: 640px) {
    .founder-name {
        font-size: 1.25rem;
    }
    
    .founder-title {
        font-size: 0.875rem;
    }
}

/* Touch-friendly targets for mobile */
@media (max-width: 1023px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}




/* Landscape orientation adjustments */
@media (max-width: 1023px) and (orientation: landscape) {
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Print styles */
@media print {
    
    body {
        background: white;
        color: black;
    }
}

/* ===== COMPREHENSIVE FOCUS/ACTIVE ANIMATION REMOVAL ===== */
/* Prevent all yellow border zoom animations on click/focus */
*:focus,
*:active,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    scale: none !important;
    animation: none !important;
}

/* Remove all focus ring utilities from Tailwind */
[class*="focus:ring"]:focus,
[class*="focus:outline"]:focus {
    box-shadow: none !important;
    outline: none !important;
    ring: none !important;
}

/* Prevent any scale/transform animations on click */
*:active {
    transform: none !important;
    scale: none !important;
    animation: none !important;
}

/* Remove any pseudo-elements that might create borders on focus/active */
*:focus::before,
*:active::before,
*:focus::after,
*:active::after,
*:focus-visible::before,
*:focus-visible::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    transform: none !important;
    scale: none !important;
}

/* Remove hover border zoom effects - NO YELLOW BORDERS ON HOVER */
a:hover,
button:hover {
    border-color: inherit !important;
}

a:hover::before,
a:hover::after,
button:hover::before,
button:hover::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    scale: none !important;
}

/* Remove hover border effects on project and service cards */
#projects .bg-surface-dark:hover,
#services .bg-surface-dark:hover,
#about .bg-card-dark:hover {
    border-color: inherit !important;
}

#projects .bg-surface-dark:hover::before,
#projects .bg-surface-dark:hover::after,
#services .bg-surface-dark:hover::before,
#services .bg-surface-dark:hover::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    scale: none !important;
}

/* ===== PROJECTS CAROUSEL - Manual navigation with arrows, no scrollbar ===== */
.projects-carousel-container {
    position: relative;
    overflow: hidden;
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden; /* Prevent flicker */
}

.projects-carousel-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto; /* Changed to auto to prevent conflicts with manual scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
    will-change: scroll-position; /* Optimize for smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

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

.projects-carousel-wrapper:active {
    cursor: grabbing;
}

/* Prevent page scroll when carousel is scrolling */
.projects-carousel-wrapper:focus {
    outline: none;
}

/* Prevent page scroll when carousel is focused */
.projects-carousel-wrapper:focus-visible {
    outline: none;
}

/* Ensure carousel wrapper doesn't cause page reflow */
.projects-carousel-wrapper {
    contain: layout style paint; /* Optimize rendering */
}

.projects-carousel-inner {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden; /* Prevent flicker */
    perspective: 1000px; /* Enable 3D transforms */
}

/* Ensure all cards and links are clickable and don't move on click */
.projects-carousel-inner > div {
    pointer-events: auto !important;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transform: translateZ(0); /* Force hardware acceleration */
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
    will-change: auto;
    backface-visibility: hidden; /* Prevent flicker */
}

/* Ensure all links are always clickable and don't cause movement */
.projects-carousel-inner a {
    pointer-events: auto !important;
    position: relative;
    z-index: 10 !important;
    cursor: pointer !important;
    display: inline-flex;
    user-select: none;
    -webkit-user-select: none;
    transform: none !important;
    transition: color 0.2s ease !important;
    text-decoration: none;
}

/* Prevent any movement or transform on link click/active */
.projects-carousel-inner a:active,
.projects-carousel-inner a:focus,
.projects-carousel-inner a:hover {
    transform: none !important;
    position: relative !important;
}

/* Override hover-lift effects on project cards to prevent delays */
.projects-carousel-inner > div.hover-lift,
#projects .bg-surface-dark.hover-lift {
    transform: none !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.projects-carousel-inner > div.hover-lift:hover,
#projects .bg-surface-dark.hover-lift:hover {
    transform: none !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

/* Navigation arrows - centered below carousel */
.projects-carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(217, 119, 6, 0.8);
    border: 2px solid rgba(217, 119, 6, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.projects-carousel-nav:hover {
    background-color: rgba(217, 119, 6, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
    border-color: rgba(217, 119, 6, 0.8);
}

.projects-carousel-nav:active {
    transform: scale(0.95);
}

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

.projects-carousel-nav .material-symbols-outlined {
    font-size: 28px;
    user-select: none;
}

/* Footer Legal column spacing - 1 inch (96px) to the right */
.footer-legal-column {
    padding-left: 96px;
}

@media (max-width: 1024px) {
    .footer-legal-column {
        padding-left: 0;
    }
}

/* Responsive arrows */
@media (max-width: 768px) {
    .projects-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .projects-carousel-nav .material-symbols-outlined {
        font-size: 22px;
    }
    
    .projects-carousel-inner {
        gap: 1rem;
    }
}