/* Base styles for the implementation */
:root {
  /* Color Palette */
  --cyan-primary: #00BFFF;
  --cyan-light: #7FDFFF;
  --cyan-dark: #0099CC;
  --navy-primary: #0A1A2F;
  --navy-light: #1E2F45;
  --navy-dark: #05101F;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --coral: #FF6B6B;
  --mint-green: #4ECDC4;
  --dark-text: #1A1A2E;
  --medium-text: #4A4A6A;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.large-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
}

.small-text {
  font-size: 0.875rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background-color: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 191, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--cyan-primary);
  border: 2px solid var(--cyan-primary);
}

.btn-secondary:hover {
  background-color: var(--cyan-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-loading .btn-text {
  opacity: 0;
}

.btn-loading .spinner {
  opacity: 1;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  opacity: 0;
}

.spinner .path {
  stroke: var(--white);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(10, 26, 47, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 0;
  background-color: var(--navy-primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  z-index: 1001;
}

.logo span {
  color: var(--cyan-primary);
}

nav .nav-menu {
  display: flex;
  list-style: none;
}

nav .nav-menu li {
  margin-left: 30px;
}

nav .nav-menu li a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

nav .nav-menu li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--cyan-primary);
  transition: width 0.3s ease;
}

nav .nav-menu li a:hover:after,
nav .nav-menu li a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 18px;
}

.mobile-menu-btn.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-btn.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--navy-primary);
  z-index: 1000;
  padding: 100px 40px 40px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: block;
  padding: 10px 0;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--cyan-primary);
  padding-left: 10px;
}

.mobile-nav .btn {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background-color: var(--navy-primary);
  background-image: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.7s;
}

.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--cyan-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--cyan-primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--cyan-primary);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--cyan-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more svg {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.learn-more:hover svg {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-us {
  padding: 100px 0;
  background-color: var(--navy-primary);
  color: var(--white);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: var(--navy-light);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  color: var(--cyan-primary);
}

.feature-card h3 {
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Case Study Section */
.case-study {
  padding: 100px 0;
  background-color: var(--white);
}

.case-study-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.case-study-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.case-study-image:hover {
  transform: scale(1.03);
}

.case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-content h3 {
  margin-bottom: 20px;
}

.case-study-content p {
  margin-bottom: 30px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan-primary);
  margin-bottom: 5px;
}

.testimonial {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: var(--cyan-light);
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 600;
  color: var(--cyan-dark);
}

/* Process Section */
.process {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.process-diagram {
  display: flex;
  justify-content: center;
  margin: 60px 0;
  position: relative;
}

.process-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid var(--cyan-primary);
  position: relative;
}

.process-step {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.process-step:hover,
.process-step.active {
  transform: scale(1.1);
  background-color: var(--cyan-primary);
  color: var(--white);
}

.process-step[data-step="1"] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process-step[data-step="2"] {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.process-step[data-step="3"] {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process-step[data-step="4"] {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.process-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.process-lines:before,
.process-lines:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--cyan-light);
  transform: translate(-50%, -50%);
}

.process-lines:before {
  width: 90%;
  height: 2px;
}

.process-lines:after {
  width: 2px;
  height: 90%;
}

.process-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

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

.process-detail h4 {
  margin-bottom: 15px;
  color: var(--cyan-primary);
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background-color: var(--navy-primary);
  color: var(--white);
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.video-player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.video-player:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--cyan-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--cyan-dark);
}

.play-button svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  margin-left: 5px;
}

.video-content h2 {
  margin-bottom: 20px;
}

.video-content p {
  margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--white);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slides {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-slide {
  text-align: center;
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--cyan-light);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text:before {
  top: -20px;
  left: -20px;
}

.testimonial-text:after {
  content: '"';
  bottom: -40px;
  right: -20px;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 5px;
}

.testimonial-author-title {
  color: var(--medium-text);
  font-size: 0.875rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--cyan-primary);
  transform: scale(1.2);
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: var(--navy-primary);
}

.carousel-arrow:hover {
  background-color: var(--cyan-primary);
  color: var(--white);
}

.carousel-arrow.prev {
  margin-left: -20px;
}

.carousel-arrow.next {
  margin-right: -20px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--navy-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--cyan-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.form-success.show {
  opacity: 1;
  visibility: visible;
}

.form-success svg {
  width: 80px;
  height: 80px;
  color: var(--mint-green);
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--cyan-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
}

.contact-text {
  font-size: 1.125rem;
}

.contact-map {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column h4 {
  color: var(--cyan-primary);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan-primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--cyan-primary);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--navy-light);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--cyan-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--cyan-dark);
  transform: translateY(-5px);
}

/* AOS Animation Classes */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .process-circle {
    width: 350px;
    height: 350px;
  }
  
  .process-step {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 991px) {
  .process-circle {
    width: 300px;
    height: 300px;
  }
  
  .process-step {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .hero-btns {
    flex-direction: column;
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  header {
    padding: 15px 0;
  }
  
  nav .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .process-circle {
    width: 250px;
    height: 250px;
  }
  
  .process-step {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .carousel-arrows {
    display: none;
  }
}

@media (max-width: 575px) {
  .section-header {
    margin-bottom: 40px;
  }
  
  .process-circle {
    width: 200px;
    height: 200px;
  }
  
  .process-step {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-text:before,
  .testimonial-text:after {
    font-size: 2rem;
  }
}

/* Prefers 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;
  }
}
