/* Custom Colors */
:root {
  --color-blue: #0EA5E9;
  --color-darkBlue: #075985;
  --color-lightBlue: #BAE6FD;
  --color-gray: #64748B;
  --color-lightGray: #F1F5F9;
  --color-dark: #0F172A;
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Custom Classes */
.text-csnr-blue {
  color: var(--color-blue);
}

.text-csnr-darkBlue {
  color: var(--color-darkBlue);
}

.text-csnr-gray {
  color: var(--color-gray);
}

.bg-csnr-blue {
  background-color: var(--color-blue);
}

.bg-csnr-darkBlue {
  background-color: var(--color-darkBlue);
}

.bg-csnr-lightBlue {
  background-color: var(--color-lightBlue);
}

.bg-csnr-lightGray {
  background-color: var(--color-lightGray);
}

.bg-csnr-dark {
  background-color: var(--color-dark);
}

/* Utility Classes */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: var(--color-darkBlue);
}

.gradient-text {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-darkBlue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Group hover effect for icons */
.group:hover .group-hover-right {
  transform: translateX(5px);
}

/* Testimonial styles */
.testimonial-container {
  position: relative;
  overflow: hidden;
}

.testimonial {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

/* FAQ accordion styles */
.hidden .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content {
  max-height: 1000px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Animation for navbar background on scroll */
#navbar {
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Form focus styles */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}