/* 기본 공통 */
section {
  padding: 100px 8%;
  box-sizing: border-box;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #152b3e;
  font-weight: 700;
}

/* About */
.about-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 60px;

}

.about-text p {
  font-family: 'suit-semibold';
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-text .btn-primary {
  background: #152b3e;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.about-text .btn-primary:hover {
  background: #0e1f2f;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* About END*/



/* Technology */
.tech-section {
  background: #f8f9fa;
  text-align: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.tech-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.tech-card img {
  width: 100%;
  margin-bottom: 16px;
}

.tech-card h3 {
  position: relative;
  font-size: 2.3rem;
  font-family: 'paperlogy-semibold';
  font-weight: 700;
  color: #152b3e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 6px;
}

/* 밑줄 라인 */
.tech-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #00a6ff, #83cff8);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* 호버 시 강조 */
.tech-card:hover h3::after {
  width: 100%;
}

/* 추가 느낌 (빛 반사 효과) */
.tech-card h3::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 40%, transparent 80%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease;
}

.tech-card:hover h3::before {
  opacity: 1;
  transform: translateX(100%);
}

.tech-card p {
  font-size: clamp(20px, 1vw, 20px);
  font-family: 'suit-semibold';
}

/* Testimonials */
.testimonial-section {
  background-color: #fdffd3;
  color: #000000;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.testimonial-card {
  /* background: rgba(255, 222, 222, 0.669); */
  background-color: rgba(186, 186, 186, 0.53);
  border-radius: 10px;
  padding: 30px;
  width: 280px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Contact */
.contact-section {
  background: #f5f6f8;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-text {
  flex: 1;
}

.contact-text p {
  margin-bottom: 10px;
  color: #333;
}

.contact-info p {
  font-weight: 600;
  color: #152b3e;
}

.contact-map {
  flex: 1;
}

.contact-map img {
  width: 100%;
  border-radius: 12px;
}