/* About page - Cartoon Blue Style */

.credimetric-about-intro {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  position: relative;
}

.credimetric-about-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(116,185,255,0.1)" stroke-width="2"/><circle cx="80" cy="80" r="10" fill="none" stroke="rgba(116,185,255,0.1)" stroke-width="2"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

.credimetric-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.credimetric-about-description {
  color: #7f8c8d;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.2rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(116, 185, 255, 0.1);
  border-left: 6px solid #74b9ff;
}

.credimetric-about-image {
  position: relative;
}

.credimetric-about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.1;
}

.credimetric-about-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(116, 185, 255, 0.2);
  transition: transform 0.3s ease;
}

.credimetric-about-image:hover img {
  transform: scale(1.05) rotate(2deg);
}

.credimetric-mission {
  padding: 100px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  position: relative;
}

.credimetric-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,5 55,20 70,20 60,30 65,45 50,37 35,45 40,30 30,20 45,20" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  background-size: 80px 80px;
  animation: twinkle 4s infinite ease-in-out;
}

.credimetric-mission .credimetric-section-title {
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.credimetric-mission .credimetric-section-title::after {
  background: white;
}

.credimetric-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.credimetric-mission-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  color: #2c3e50;
  position: relative;
  overflow: hidden;
}

.credimetric-mission-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.credimetric-mission-item:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.credimetric-mission-icon {
  margin-bottom: 2rem;
  position: relative;
}

.credimetric-mission-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.credimetric-mission-icon img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 8px 16px rgba(116, 185, 255, 0.3));
  transition: transform 0.3s ease;
}

.credimetric-mission-item:hover .credimetric-mission-icon img {
  transform: scale(1.2) rotate(10deg);
}

.credimetric-mission-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.credimetric-mission-description {
  color: #7f8c8d;
  line-height: 1.7;
  font-size: 1.1rem;
}

.credimetric-values {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  position: relative;
}

.credimetric-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="rgba(116,185,255,0.05)" rx="5"/><rect x="70" y="70" width="15" height="15" fill="rgba(116,185,255,0.05)" rx="3"/></svg>')
    repeat;
  animation: slide 15s infinite linear;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100px);
  }
}

.credimetric-values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.credimetric-values-image {
  position: relative;
}

.credimetric-values-image::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.1;
}

.credimetric-values-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
  transition: transform 0.3s ease;
}

.credimetric-values-image:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.credimetric-values-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.credimetric-value-item {
  padding: 2.5rem;
  border-left: 8px solid #74b9ff;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(116, 185, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.credimetric-value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.credimetric-value-item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(116, 185, 255, 0.2);
}

.credimetric-value-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
}

.credimetric-value-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #74b9ff;
  border-radius: 2px;
}

.credimetric-value-description {
  color: #7f8c8d;
  line-height: 1.7;
  font-size: 1.1rem;
}

.credimetric-company-info {
  padding: 100px 0;
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  color: white;
  position: relative;
}

.credimetric-company-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="3"/><circle cx="70" cy="70" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>')
    repeat;
  animation: rotate 25s infinite linear;
}

.credimetric-company-info .credimetric-section-title {
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.credimetric-company-info .credimetric-section-title::after {
  background: white;
}

.credimetric-company-details {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.credimetric-company-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #2c3e50;
  position: relative;
  overflow: hidden;
}

.credimetric-company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 50%, #74b9ff 100%);
}

.credimetric-company-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-shadow: 0 2px 4px rgba(116, 185, 255, 0.3);
}

.credimetric-company-description {
  color: #7f8c8d;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.2rem;
}

.credimetric-company-location {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 3px solid #74b9ff;
}

.credimetric-company-location h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.credimetric-company-location p {
  color: #7f8c8d;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* About page mobile responsive */
@media (max-width: 768px) {
  .credimetric-about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .credimetric-values-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .credimetric-company-card {
    padding: 2.5rem;
  }

  .credimetric-mission-grid {
    grid-template-columns: 1fr;
  }
}
