.main-container{
  max-width: 1200px;
  margin: 0 auto;
}

.banner-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vh; /* 또는 고정 px */
  position: relative;
}
.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 어두운 반투명 필터 */
  z-index: 1;
}
.banner-content {
  background: rgba(0, 0, 0, 0.5);	
  border-radius: 10px;	
  padding: 50px ;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
}
.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.banner-content a {
  text-decoration: none;
}
.banner-content p {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #E6E6E6;
  max-width: 540px;	
}
.banner-btn {
  display: inline-block;
  background-color: #e7882c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.3s;
}

.swiper {
  width: 100%;
  height: 65vh;
}
.swiper-pagination-bullet {
  width: 20px !important;
  height: 5px !important;
  border-radius: 0 !important; /* 네모로 만들기 */
  background: rgba(255, 255, 255, 0.5) !important;
  margin: 0 4px !important;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #ffffff60 !important;
  padding: 10px !important;
  z-index: 10 !important;
}
.swiper-button-prev {
  left: 40px !important;
}
.swiper-button-next {
  right: 40px !important;
}


/*  */
.service-intro {
  padding: 120px 0px;
  text-align: center;
}

.pre-title {
  font-size: 18px;
  color: #888;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background-color: #e6e6e6; /* 말풍선 배경색 */
  border-radius: 5px;
  margin-bottom: 25px;
}
.pre-title::after {
  content: "";
  position: absolute;
  bottom: -9px; /* 말풍선 아래쪽 */
  left: 50%;      /* 가로 중앙 */
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #e6e6e6 transparent transparent transparent;
}
.sub-title {
  font-size: 20px;
  margin:20px auto 0;
}

/* features (grid) */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top:60px;	
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* 요소 사이 여백 */
}
.feature-item {
  flex: 1 1 calc(24% - 15px); /* gap 감안한 너비 계산 */
  box-sizing: border-box;
}
.feature-item p {
  margin:10px 0;
  color:#707070;	
}
.feature-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/*    */
.intro-section{
  background: #f9f9f9;	
  padding: 120px 20px;	 
}
.intro-section .main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.intro-text {
  flex: 1;
  font-size: 2.6rem;
}
.intro-text p {
 margin-bottom: 40px;	
}
.intro-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
  max-width:70%;
}
.intro-links li {
  list-style: none;
  border-bottom: 1px solid #ebebeb;	
}
.intro-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.6rem;
  color: #555;	
  margin-bottom: 20px;	
  text-decoration: none;
  transition: all 0.3s ease;	
  font-weight: 600;
}
.intro-links a:hover {
  color: #e7882c;
}
.intro-image {
  flex: 1;
  text-align: right;
}
.intro-image img {
  max-width: 100%;
  height: auto;
}
.arrow-icon {
  display: flex;
  align-items: center;
  margin-right: 20px;
  text-align: right;
}
.arrow-icon svg {
  width: 30px;
  height: 30px;
  stroke: #e7882c;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.intro-links a:hover .arrow-icon svg {
  transform: translateX(4px);
}

/* 고객사 슬라이드 배너 */
.client-logo {
  margin: 0 auto;
  padding: 120px 0px;
  text-align: center;
}
.client-title {
  margin-bottom: 80px;
}
.logo-slider {
  overflow: hidden;
  width: 100%;
  background: white;
}
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.logo-track img {
  height: 60px; /* 원하는 높이 */
  margin-right: 120px; /* 로고 간 간격 */
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*  */
.service-grid {
  padding: 120px 20px;
  background-color: #f9f9f9;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.service-item ul {
  list-style-type: disc;
  margin-top: 10px;
  text-align: center;
  padding:10px;	
}

.service-item ul .title {
  font-weight: bold;
  font-size: 20px;
  color: #535353;
  list-style-type: none; /* 점 없애기 */
  margin-bottom: 5px;
}

.service-item ul li:not(.title) {
  font-size: 14px;
  color: #707070;
  line-height: 1.6;
}

 /* */
.inquiry-box {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url('../images/inquiry-box-bg.jpg'); 
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.parallax-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(0,0,0,0.3);
  z-index: 2;
}
.parallax-c {
  position: relative;
  z-index: 3;
}

.inquiry-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5;
}
.inquiry-text h2{
   color:#fff;		
}
.inquiry-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top:20px;	
}
.inquiry-buttons .btn {
  background-color: rgba(231, 136, 44, 0.85);
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  min-width: 200px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.inquiry-buttons .btn:hover {
  background-color: #222;
}

.gallery-swiper{
 max-width: 1200px;	
 margin-top:60px;	
 height: auto;
 padding-bottom: 20px; /* ✅ 아래 여백 확보 (스크롤바 높이보다 약간 크게) */
 position: relative;
}
.gallery {
  margin: 0 auto;
  padding: 120px 20px 120px;
  background-color: #f9f9f9;	
}
.gallery-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%; 	
  aspect-ratio: 4 / 3; /* ✅ 가로 4 : 세로 3 비율 */
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-swiper .swiper-scrollbar {
  position: static !important; 
  margin-top: 10px !important;
  height: 5px !important;
  background: #f0f0f0 !important;
  border-radius: 3px !important;
  width:100% !important;	
}
.gallery-swiper .swiper-scrollbar-drag {
  background: #e7882c !important;
  border-radius: 3px !important;
}
.image-item {
  overflow: hidden;
  border-radius: 10px;
  height: 200px; 	
  transition: transform 0.3s ease;
}
.image-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; 
  object-position: center;	
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.03) translateY(-5px);
}

.main-process-section {
  max-width:1200px;
  margin:0 auto;
  padding: 120px 20px;
}

.main-process-section .mps{
	text-align: center;
	margin-top:20px;
}

.steps-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 80px 0 0;
}
.step-item {
  width: 100%;
  box-sizing: border-box;
  background-color: #f7f7f7;
  padding:40px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-item img {
  width: 60px;
  height: auto;
  margin: 20px 0;
}

.step-item .step-label {
  background-color: #e7882c;
  color: #fff;
  padding: 3px 10px;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 20px;
  margin: 0;
  padding: 10px;
  font-weight: 600;
}



@media (max-width: 1024px){
 .service-intro {
  padding: 120px 20px;
}
  .steps-process {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }	
}




@media (max-width: 767px) {
.banner-slide {
    background-position: center top;
    height: 50vh;
  }
.banner-content {
  background: rgba(0, 0, 0, 0.5);	
  border-radius: 5px;	
  padding: 30px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  width:70vw;	
}
.banner-content p {
  font-size: 1.6rem;
}

.service-intro {
  padding: 100px 20px;
}
.pre-title {
  font-size: 15px;
  padding: 8px 10px;
  margin-bottom: 20px;
}
.sub-title{
  font-size: 15px;	
  margin:20px auto 0;  
}	
.features {
  gap: 10px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-item {    
  flex: 0 0 calc(50% - 5px);     
  max-width: calc(50% - 5px);   
  box-sizing: border-box;
}
.feature-item img {		
  margin-bottom: 10px;	
}
.intro-section {  
  padding: 100px 20px;  
}
.intro-section .main-container {    
  flex-direction: column;    
  align-items: flex-start;    
  gap: 30px;  
}
.intro-text {    
  font-size: 2rem;    
  width: 100%;  
}
.intro-links {    
  max-width: 100%;    
  width: 100%;  
}
.intro-links a {    
  font-size: 1.4rem;    
  margin-bottom: 15px;  
}

.arrow-icon {    
  margin-right: 10px;  
}
.arrow-icon svg {    
  width: 24px;    
  height: 24px;  
}

.intro-image {    
  text-align: center;    
  width: 100%;  
}
.intro-image img {    
  max-width: 100%;    
  height: auto;  
}
	
.client-logo {  
  padding: 100px 0px;
}

.logo-track img {  
  height: 45px;   
  margin-right: 80px; 
}
	
.gallery { 
  padding: 80px 20px 80px; 
}

.steps-process {
    grid-template-columns: repeat(2, 1fr);
  }		
.service-grid {  
  padding: 100px 20px;
}	
.service-header{	
  max-width:100%;	
  margin: 0 auto;
}	
.service-items {  
  display: grid;  
  grid-template-columns: repeat(2,3fr);  
  gap: 20px;
}
.service-item p {  
  margin: 10px 0;  
  font-size: 15px;  
  text-align: center;
}

.step-item {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box; /* padding 포함 계산 */
}

.step-item img {
  width: 60px;
  height: auto;
  margin: 10px 0;
}	

.service-item ul .title {
  list-style-type: none; /* 점 없애기 */
  margin-bottom: 5px;
}	
.service-item ul {
  list-style-type: disc;
  margin-top: 5px;
  text-align: left;
  padding:5px;	
}	
.service-item ul .title {
  font-weight: bold;
  font-size: 18px;
  color: #535353;
  list-style-type: none; /* 점 없애기 */
  margin-bottom: 5px;
}	
.service-item ul li:not(.title) {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
}	
}



/* 왼쪽 버튼은 왼쪽 끝에서 */
.swiper-button-prev { display: none !important;}

/* 오른쪽 버튼은 오른쪽 끝에서 */
.swiper-button-next {  display: none !important;}