.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  color: #10b981;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid #d1fae5;
}

.hero-badge i {
  font-size: 12px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111827;
}

.hero-title-highlight {
  color: #10b981;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
}

.hero-btn-primary {
  background: #10b981;
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.hero-btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hero-btn-secondary {
  background: #f3f4f6;
  color: #1f2937;
}

.hero-btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  width: 100%;
  max-width: 1100px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.hero-floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.hero-card-1 {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 1s;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 24px;
  margin-bottom: 12px;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.hero-card-text {
  font-size: 13px;
  color: #6b7280;
}

.hero-card-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.hero-card-stars i {
  color: #fbbf24;
  font-size: 15px;
}

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

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 968px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-card-1 {
    left: 10px;
  }

  .hero-card-2 {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .hero-container {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-floating-card {
    padding: 16px;
  }

  .hero-card-1 {
    top: 0px;
  }

  .hero-card-2 {
    bottom: 0px;
  }

  .hero-card-icon {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .hero-card-stars i {
    font-size: 12px;
  }

  .hero-card-title {
    font-size: 12px;
  }
}

.serv-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url(../images/shake1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}

.serv-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.serv-shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.serv-shape-1 {
  width: 300px;
  height: 300px;
  background-color: #10b981;
  top: -100px;
  left: 10%;
}

.serv-shape-2 {
  width: 400px;
  height: 400px;
  background-color: #be3500;
  top: -200px;
  right: 5%;
}

.serv-shape-3 {
  width: 200px;
  height: 200px;
  background-color: #10b981;
  bottom: 100px;
  left: 20%;
}

.serv-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.serv-label {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(190, 53, 0, 0.1);
  color: #be3500;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
}

.serv-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.serv-desc {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.serv-action {
  margin-top: 10px;
}

.serv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  width: 100%;
}

.serv-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.serv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.serv-card:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 220px solid transparent;
  border-bottom: 140px solid rgba(219, 234, 254, 0.3);
}

.serv-card:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-bottom: 60px solid #10b981;
}

.serv-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 137, 190, 0.1),
    rgba(190, 53, 0, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  color: #10b981;
  transition: all 0.3s ease;
}

.serv-card:hover .serv-card-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 137, 190, 0.2),
    rgba(190, 53, 0, 0.2)
  );
  transform: scale(1.1);
  color: #be3500;
}

.serv-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.serv-card-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Animation styles for header elements */
.serv-label,
.serv-title,
.serv-desc,
.serv-action {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .serv-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .serv-section {
    padding: 80px 0;
  }

  .serv-container {
    padding: 0 30px;
  }

  .serv-header {
    margin-bottom: 50px;
  }

  .serv-title {
    font-size: 30px;
  }

  .serv-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .serv-card {
    padding: 35px 25px;
  }

  .serv-card-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .serv-card-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .serv-section {
    padding: 60px 0;
  }

  .serv-container {
    padding: 0 20px;
  }

  .serv-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .serv-card {
    padding: 30px 20px;
  }

  .serv-card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .serv-card-title {
    font-size: 20px;
  }

  .serv-desc,
  .serv-card-desc {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .serv-title {
    font-size: 28px;
  }

  .serv-card-title {
    font-size: 18px;
  }

  .serv-card-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

.abt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abt-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abt-header.abt-visible {
  opacity: 1;
  transform: translateY(0);
}

.abt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.abt-badge i {
  font-size: 16px;
}

.abt-title {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abt-description {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.abt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.abt-image-wrapper {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abt-image-wrapper.abt-visible {
  opacity: 1;
  transform: translateX(0);
}

.abt-image {
  width: 100%;
  max-height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.abt-stats {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abt-stats.abt-visible {
  opacity: 1;
  transform: translateX(0);
}

.abt-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 40px;
}

.abt-stat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.abt-stat-icon {
  width: 40px;
  height: 60px;
  display: flex;
  font-size: 24px;
  color: #10b981;
  flex-shrink: 0;
}

.abt-stat-icon i {
  font-size: 32px;
}

.abt-stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abt-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}

.abt-stat-number.abt-counting {
  display: inline-block;
}

.abt-stat-label {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.abt-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.abt-btn {
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #10b981;
  color: white;
  width: fit-content;
}

.abt-btn:hover {
  background: #0e9e73;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.abt-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0% 16px;
  border: 1px solid #10b981;
  border-radius: 12px;
}

.abt-contact-icon {
  width: 20px;
  height: 48px;
  display: flex;
  align-items: center;
  color: #10b981;
  font-size: 20px;
}

.abt-contact-info {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
}

.abt-contact-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 2px;
}

.abt-contact-number {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

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

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 968px) {
  .abt-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt-title {
    font-size: 36px;
  }

  .abt-stats-grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .abt-container {
    padding: 60px 20px;
  }

  .abt-title {
    font-size: 32px;
  }

  .abt-description {
    font-size: 16px;
  }

  .abt-stats-grid {
    grid-template-columns: 1fr;
  }

  .abt-btn {
    justify-content: center;
  }

  .abt-contact {
    justify-content: center;
  }
}

.why {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #10b981;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.2s;
}

.why-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.4s;
}

.why-grid {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-row {
  display: table-row;
}

.why-cell {
  display: table-cell;
  width: 50%;
  text-align: center;
  padding: 40px 20px;
  vertical-align: middle;
  border: none;
}

/* Only inner borders */
.why-row:not(:last-child) .why-cell {
  border-bottom: 1px solid #e0e0e0;
}

.why-cell:first-child {
  border-right: 1px solid #e0e0e0;
}

.why-icon-container {
  display: inline-block;
  margin-bottom: 15px;
}

.why-icon {
  font-size: 32px;
  color: #10b981;
}

.why-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-grid {
    display: block;
  }

  .why-row {
    display: block;
  }

  .why-cell {
    display: block;
    width: 100%;
    padding: 30px 15px;
  }

  .why-cell:first-child {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

@media (max-width: 576px) {
  .why-section {
    padding: 60px 15px;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .why-description {
    font-size: 1rem;
  }

  .why-cell {
    padding: 25px 10px;
  }

  .why-icon {
    font-size: 28px;
  }

  .why-card-title {
    font-size: 1.1rem;
  }
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cta-section {
  background: #ffffff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-container.loaded {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-size: 4rem;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta-container.loaded .cta-title {
  opacity: 1;
  transform: translateY(0);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 50px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.cta-container.loaded .cta-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.cta-button-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.cta-container.loaded .cta-button-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #10b981;
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #0e9e73;
  transform: translateY(-2px);
}

.cta-icon-arrow {
  width: 32px;
  height: 32px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-icon-arrow {
  transform: translateX(3px);
}

/* Decorative circles */
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: #e8ebe5;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.cta-circle-1 {
  width: 180px;
  height: 180px;
  top: 80px;
  left: 15%;
  animation: float 8s ease-in-out infinite;
}

.cta-circle-2 {
  width: 120px;
  height: 120px;
  top: 180px;
  left: 8%;
  animation: float 10s ease-in-out infinite 1s;
}

.cta-circle-3 {
  width: 90px;
  height: 90px;
  top: 50px;
  right: 12%;
  animation: float 7s ease-in-out infinite 2s;
}

.cta-circle-4 {
  width: 200px;
  height: 200px;
  top: 120px;
  right: 8%;
  animation: float 9s ease-in-out infinite 0.5s;
}

.cta-circle-5 {
  width: 250px;
  height: 250px;
  bottom: 60px;
  right: 10%;
  animation: float 11s ease-in-out infinite 1.5s;
}

.cta-circle-6 {
  width: 100px;
  height: 100px;
  bottom: 100px;
  left: 10%;
  animation: float 8.5s ease-in-out infinite 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(15px, -20px);
  }
  66% {
    transform: translate(-10px, 15px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-circle-1,
  .cta-circle-2,
  .cta-circle-3,
  .cta-circle-4,
  .cta-circle-5,
  .cta-circle-6 {
    opacity: 0.4;
  }

  .cta-circle-1 {
    width: 140px;
    height: 140px;
    left: 5%;
  }

  .cta-circle-2 {
    width: 100px;
    height: 100px;
    left: 2%;
  }

  .cta-circle-3 {
    width: 70px;
    height: 70px;
    right: 5%;
  }

  .cta-circle-4 {
    width: 160px;
    height: 160px;
    right: 3%;
  }

  .cta-circle-5 {
    width: 180px;
    height: 180px;
    right: 5%;
  }

  .cta-circle-6 {
    width: 80px;
    height: 80px;
    left: 5%;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .cta-btn-primary {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .cta-circle-1,
  .cta-circle-2,
  .cta-circle-3,
  .cta-circle-4,
  .cta-circle-5,
  .cta-circle-6 {
    opacity: 0.3;
  }

  .cta-circle-1 {
    width: 100px;
    height: 100px;
  }

  .cta-circle-2 {
    width: 70px;
    height: 70px;
  }

  .cta-circle-3 {
    width: 50px;
    height: 50px;
  }

  .cta-circle-4 {
    width: 120px;
    height: 120px;
  }

  .cta-circle-5 {
    width: 130px;
    height: 130px;
  }

  .cta-circle-6 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 0.938rem;
  }
}

.test-section {
    width: 100%;
    min-height: 100vh;
    background: rgba(224, 224, 224, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.test-container {
    max-width: 1400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.test-container.test-visible {
    opacity: 1;
    transform: translateY(0);
}

.test-header {
    text-align: center;
    position: relative;
}

.test-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.test-quote-icon {
    font-size: 4rem;
    color: #be3500;
    margin-bottom: 20px;
}

.test-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.test-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.test-content {
    width: 85%;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    min-height: 400px;
    display: none;
}

.test-image-container {
    flex: 0 0 300px;
    position: relative;
}

.test-main-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s ease;
}

.test-main-image.test-active {
    transform: scale(1);
    opacity: 1;
}

.test-text-content {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.test-text-content.test-active {
    opacity: 1;
    transform: translateX(0);
}

.test-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.test-testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #10b981;
    position: absolute;
    left: -30px;
    top: -40px;
    font-family: Georgia, serif;
}

.test-client-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.test-client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.test-client-position {
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

.test-client-company {
    font-size: 0.95rem;
    color: #be3500;
    font-weight: 500;
}

.test-avatars {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 40px 40px;
}

.test-avatars {
    display: none;
}

.test-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
}

.test-avatar:hover {
    transform: scale(1);
    opacity: 0.8;
}

.test-avatar.test-active {
    border-color: #10b981;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 137, 190, 0.3);
}

.test-ratings-section {
    padding: 60px 40px;
}

.test-ratings-title {
    text-align: center;
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 20px;
    font-weight: 600;
}

.test-ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.test-rating-card {
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.test-rating-card.test-visible {
    opacity: 1;
    transform: translateY(0);
}

.test-rating-logo {
    width: 200px;
    height: 120px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.test-rating-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.test-loading {
    display: none;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.test-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #10b981;
    border-radius: 50%;
    animation: test-spin 1s linear infinite;
}

@keyframes test-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .test-title {
        font-size: 2rem;
    }

    .test-content {
        width: 100%;
    }


    .test-testimonial-text {
        font-size: 1rem;
    }

    .test-ratings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .test-rating-logo {
        width: 150px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .test-header {
        padding: 40px 30px 30px;
    }

    .test-title {
        font-size: 2rem;
    }

    .test-content {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        text-align: center;
    }

    .test-image-container {
        flex: none;
    }

    .test-main-image {
        width: 250px;
        height: 250px;
    }

    .test-testimonial-text::before {
        left: -20px;
        font-size: 3rem;
    }

    .test-avatars {
        padding: 0 30px 30px;
        gap: 15px;
    }

    .test-avatar {
        width: 60px;
        height: 60px;
    }

    .test-ratings-section {
        padding: 40px 30px;
    }

    .test-ratings-title {
        font-size: 1.5rem;
    }

    .test-ratings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .test-rating-card {
        padding: 25px 15px;
    }

    .test-rating-logo {
        width: 150px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .test-main-image {
        width: 200px;
        height: 200px;
    }

    .test-testimonial-text {
        font-size: 1rem;
    }

    .test-avatar {
        width: 50px;
        height: 50px;
    }

    .test-ratings-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .test-rating-logo {
        width: 100px;
        height: 60px;
    }
}

