.about-container {
  text-align: start;
  padding: 30px;
}

h1 {
    color: #0b66a3;
    font-family: segoe script;margin-left: 300px; 
}
h2 {
  margin-top: 10px;
  font-weight: bold;
  font-size: 24px;
  margin-left: 150px;
  font-family: 'Arial', sans-serif;
}
h4 {
color: #0b66a3;
}

.about-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

.about-text {
  max-width: 600px;
  text-align: left;
  font-family: 'Arial', sans-serif;
  color: #555;
}

.about-image img {
  width: 150%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services ul {
  list-style: none;
  padding-left: 0;
}

.services ul li {
  margin-bottom: 5px;
}

.read-more {
  display: inline-block;
  padding: 10px;
  background-color: #0b66a3;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  font-size: 13px;
  border-radius: 5px;
}



.testimonial-slider {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  position: relative;
}

.testimonial-slider input[type="radio"] {
  display: none;
}

.slider-track {
  overflow: hidden;
}

.testimonial-group {
  display: flex;
  width: 300%;
  transition: transform 0.7s ease-in-out;
}

.testimonial-section {
  background: #f9fcff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-section h2 {
  font-size: 32px;
  color: #001f3f;
  margin-bottom: 40px;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
  background-color: rgb(13, 101, 174);
}

.testimonial-slider {
  display: flex;
  width: 300%;
  animation: scrollGroup 60s infinite;
}

.testimonial-group {
  display: flex;
  justify-content: space-between;
  flex: 0 0 100%;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 32%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.7s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
}

.testimonial-card h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid #00aaff;
}

.client span {
  font-weight: bold;
  color: #001f3f;
}

.testimonial-dots {
  margin-top: 20px;
}

.testimonial-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  animation: blinkDot 15s infinite;
}

.testimonial-dots span:nth-child(1) { animation-delay: 0s; }
.testimonial-dots span:nth-child(2) { animation-delay: 10s; }
.testimonial-dots span:nth-child(3) { animation-delay: 20s; }

@keyframes scrollGroup {
  0% { transform: translateX(0%); }
  33.333% { transform: translateX(-100%); }
  66.666% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

@keyframes blinkDot {
  0%, 100% { background: #00aaff; }
  33% { background: #ccc; }
}