/* Global Styles */
:root {
    --primary-color: #1d4ed8;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #ffffff;
    --text-color: #374151;
    --light-gray: #f3f4f6;
    --dark-gray: #4b5563;
    --border-color: #e5e7eb;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
}

/* Background Pattern */
.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
}

/* Header Styles */
.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    transition: color 0.2s;
}

#mobile-menu.force-flex {
  display: flex !important;
}


.nav-link:hover {
    color: var(--primary-color);
}

/* Main Navigation Styles */
.main-nav {
    /* gap: 1rem; Increase spacing between menu items */
}

.main-nav .nav-link {
    font-weight: 500;
    font-size: 13px;
    padding: 0.5rem 0.25rem;
    position: relative;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.main-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Underline animation for nav links */
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.relative.group .nav-link {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 220px;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--text-color);
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Button Styles */
.nav-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    z-index: 0;
    opacity: 0.5;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--secondary-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    padding: 1.5rem;
    background-color: var(--light-gray);
    position: relative;
}

.badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 0.375rem 0.375rem;
}

.pricing-price {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.currency {
    font-size: 1.25rem;
    vertical-align: super;
    margin-right: 0.25rem;
}

.amount {
    font-size: 2.5rem;
}

.pricing-features {
    list-style-type: none;
    padding: 0 1.5rem;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: block;
    padding: 0.75rem;
    margin: 1.5rem;
    text-align: center;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pricing-button:hover {
    background-color: var(--dark-gray);
    color: white;
}

.pricing-button.featured {
    background-color: var(--primary-color);
    color: white;
}

.pricing-button.featured:hover {
    background-color: var(--primary-dark);
}

/* Service Cards */
.service-card {
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--dark-gray);
}

/* Step Cards */
.step-card {
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    text-align: center;
    color: var(--dark-gray);
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-button {
    display: block;
    padding: 0.75rem;
    text-align: center;
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.testimonial-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Blog Cards */
.blog-kaart {
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-kaart:hover {
    transform: translateY(-5px);
}

/* Calculator Elements */
.calculator-element h3 {
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .hero-section::before {
        width: 100%;
        height: 30%;
    }
}

/* Mobile Menu (Optional) */
@media (max-width: 768px) {
    .mobile-menu {
        right: 0;
        bottom: 0;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    
    .mobile-menu .nav-link {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }
    
    .mobile-menu-button {
        z-index: 60;
    }
    
    .mobile-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1.5rem;
        background-color: var(--light-gray);
        border-radius: 0.375rem;
        margin-top: 0.5rem;
    }
    
    .mobile-menu .relative.group {
        margin-bottom: 1rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--secondary-color);
        z-index: 50;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .mobile-menu .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-menu .nav-link:hover {
        transform: translateX(5px);
    }
    
    .mobile-menu-button {
        z-index: 60;
    }
    
    .mobile-menu .main-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .mobile-menu .relative.group {
        width: 100%;
        margin-bottom: 0;
    }
    
    .dropdown-menu-mobile {
        width: 100%;
        background-color: var(--light-gray);
        border-radius: 0.5rem;
        padding: 0.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu-mobile .dropdown-link {
        display: block;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.2s;
    }
    
    .dropdown-menu-mobile .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu-mobile .dropdown-link:hover {
        background-color: rgba(0,0,0,0.05);
        padding-left: 1.5rem;
    }
    
    .mobile-menu .flex.items-center.space-x-4 {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .mobile-menu .nav-btn {
        width: 100%;
        text-align: center;
    }
}

/* Services Section Styling */
#services .grid > div {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#services .grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(29, 78, 216, 0.2);
}

#services .grid > div:hover .text-blue-700 img {
  transform: scale(1.05);
}

#services img {
  transition: transform 0.3s ease;
}

#services a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#services a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1d4ed8;
  transition: width 0.3s ease;
}

#services a:hover::after {
  width: 100%;
}

/* Process Section Styling */
#process .rounded-xl {
  transition: all 0.3s ease;
}

#process .rounded-xl:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#process .h-16.w-16 {
  transition: all 0.3s ease;
}

#process .rounded-xl:hover .h-16.w-16 {
  transform: scale(1.1);
  background-color: rgba(37, 99, 235, 1);
}

#process .text-5xl {
  transition: all 0.3s ease;
}

#process .rounded-xl:hover .text-5xl {
  transform: translateY(-5px);
}

/* Why Choose Us Section Styling */
.clip-diagonal-left {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 20% 0);
}

#why-choose-us .grid-cols-2 > div {
  transition: all 0.3s ease;
}

#why-choose-us .grid-cols-2 > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

#why-choose-us .grid-cols-2 > div:hover i {
  transform: scale(1.1);
  color: #1e40af;
}

#why-choose-us i {
  transition: all 0.3s ease;
}

#why-choose-us img {
  transition: all 0.5s ease;
}

#why-choose-us .order-1:hover img {
  transform: scale(1.02);
}

#why-choose-us .absolute {
  transition: all 0.5s ease;
}

#why-choose-us .order-1:hover .absolute:nth-of-type(1) {
  transform: translateY(-5px) translateX(5px);
}

#why-choose-us .order-1:hover .absolute:nth-of-type(2) {
  transform: translateY(5px) translateX(-5px);
}

/* Enhanced CTA Button */
.cta-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: -20px;
  transform: skewX(-15deg);
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  z-index: 0;
}

.cta-button:hover::after {
  width: 120%;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Final CTA Section */
#final-cta {
  position: relative;
  z-index: 1;
}

#final-cta .container {
  position: relative;
  z-index: 5;
}

#final-cta::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.1;
  z-index: 1;
}

#final-cta h2 {
  position: relative;
}

#final-cta h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #fcd34d;
  border-radius: 2px;
}

#final-cta .bg-white {
  transition: all 0.5s ease;
}

#final-cta .bg-white:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#final-cta .border-yellow-400 {
  position: relative;
  transition: all 0.3s ease;
}

#final-cta .border-yellow-400:hover {
  transform: translateX(5px);
  background-color: rgba(255, 255, 255, 0.15);
}

#final-cta .bg-blue-700 {
  transition: all 0.3s ease;
}

#final-cta .flex.items-center:hover .bg-blue-700 {
  transform: scale(1.1);
}

#final-cta .flex.gap-4 .cta-button {
  transition: all 0.3s ease;
}

#final-cta .flex.gap-4 .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  #final-cta h2::after {
    width: 60px;
  }
  
  #final-cta .grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial Slider Styles */
.testimonial-slider {
  padding: 20px 0;
}

.testimonial-slider-container {
  will-change: transform;
}

.testimonial-slide {
  transition: all 0.3s ease;
  padding-bottom: 10px;
}

.testimonial-slide:hover {
  transform: translateY(-5px);
}

.testimonial-slide .bg-white {
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-slide:hover .bg-white {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.testimonial-dot {
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-dot.active {
  width: 20px;
  border-radius: 10px;
}

.testimonial-prev,
.testimonial-next {
  transition: all 0.3s ease;
  opacity: 0.7;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-slide .w-12.h-12 {
  transition: all 0.3s ease;
}

.testimonial-slide:hover .w-12.h-12 {
  transform: scale(1.1);
  background-color: rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
  .testimonial-dot.active {
    width: 15px;
  }
}

/* Additional styles for other sections */
/* ... existing code ... */

/* Blog/News Section Styling */
#news .rounded-lg {
  transition: all 0.3s ease;
}

#news .rounded-lg:hover {
  transform: translateY(-5px);
}

#news .h-60 {
  overflow: hidden;
}

#news img {
  transition: transform 0.5s ease;
}

#news .rounded-lg:hover img {
  transform: scale(1.08);
}

#news h3 {
  transition: color 0.3s ease;
}

#news .rounded-lg:hover h3 {
  color: #1d4ed8;
}

#news .text-blue-700 {
  transition: all 0.3s ease;
  overflow: hidden;
}

#news .text-blue-700 svg {
  transition: transform 0.3s ease;
}

#news .rounded-lg:hover .text-blue-700 svg {
  transform: translateX(5px);
}

#news .inline-flex {
  transition: all 0.3s ease;
}

#news .inline-flex:hover {
  background-color: #1d4ed8;
  color: white;
  border-color: #1d4ed8;
}

#news .inline-flex:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  #news .grid {
    gap: 2rem;
  }
}

/* Newsletter Section Styling */
.py-16.bg-gray-900 {
  position: relative;
  overflow: hidden;
}

.py-16.bg-gray-900 input {
  transition: all 0.3s ease;
}

.py-16.bg-gray-900 input:focus {
  transform: translateY(-2px);
}

.py-16.bg-gray-900 button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.py-16.bg-gray-900 .h-1 {
  position: relative;
  overflow: hidden;
}

.py-16.bg-gray-900 .h-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.py-16.bg-gray-900 .bg-white {
  transition: all 0.3s ease;
}

.py-16.bg-gray-900 .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.py-16.bg-gray-900 .text-yellow-400 svg {
  transition: all 0.3s ease;
}

.py-16.bg-gray-900 .flex.items-center:hover .text-yellow-400 svg {
  transform: scale(1.2);
}

/* Footer Styling */
footer.bg-gray-900 {
  position: relative;
  overflow: hidden;
}

.footer-logo {
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.9;
}

footer.bg-gray-900::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a365d' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: -1;
}

footer .text-lg.font-bold {
  position: relative;
}

footer .text-lg.font-bold::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #1d4ed8;
  bottom: -2px;
  left: 0;
}

footer a.text-gray-300 {
  transition: all 0.3s ease;
  display: inline-block;
}

footer a.text-gray-300:hover i {
  transform: translateX(3px);
}

footer i {
  transition: all 0.3s ease;
}

footer .h-10.w-10 {
  transition: all 0.3s ease;
}

footer .h-10.w-10:hover {
  transform: translateY(-3px);
}

footer .rounded-lg {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

footer .rounded-lg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

footer .rounded-lg:hover::after {
  left: 100%;
}

/* Accessibility Improvements */
:focus-visible {
  outline: 3px solid #3b82f6 !important;
  outline-offset: 2px !important;
  border-radius: 2px;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
  transition: outline-offset 0.1s ease;
}

.nav-link:focus-visible,
.cta-button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #3b82f6 !important;
  outline-offset: 2px !important;
}

/* High contrast text against background */
.bg-blue-700 * {
  color-adjust: exact;
}

/* Improved focus for testimonial controls */
.testimonial-prev:focus-visible,
.testimonial-next:focus-visible,
.testimonial-dot:focus-visible {
  outline: 3px solid #3b82f6 !important;
  outline-offset: 2px !important;
}

/* Reduce motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .testimonial-slider-container {
    transition: none !important;
  }
  
  .hover\:scale-105:hover,
  .hover\:-translate-y-1:hover {
    transform: none !important;
  }
} 