/* 1. wrapper1 ¼öÁ¤: background-image Á¦°Å, relative ¼³Á¤ */
.wrapper1 {
    width: 100%;
    position: relative; /* ÀÚ½Ä ¿ä¼ÒÀÇ absolute ±âÁØ */
    /* background-image ¼Ó¼º Á¦°Å */
    /* background-size, background-position ¼Ó¼º Á¦°Å */
    overflow: hidden; /* ÀÌ¹ÌÁö°¡ È®´ëµÉ ¶§ ¿µ¿ª ¹ÛÀ¸·Î ³ª°¡´Â °ÍÀ» ¼û±è */
}

/* 2. ÀÌ¹ÌÁö ¾Ö´Ï¸ÞÀÌ¼ÇÀ» À§ÇÑ ±âº» ½ºÅ¸ÀÏ ¼³Á¤ */
.background-image-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ÀÌ¹ÌÁö°¡ wrapper1À» ²Ë Ã¤¿ìµµ·Ï ¼³Á¤ (±âÁ¸ background-size: cover ¿ªÇÒ) */
    z-index: 0; /* ´Ù¸¥ ¿ä¼Òµé(overlay, banner)º¸´Ù µÚ¿¡ À§Ä¡ */
    
    /* ¾Ö´Ï¸ÞÀÌ¼Ç Àû¿ë */
    animation: zoomOut 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; 
}


/* 3. Transform ¾Ö´Ï¸ÞÀÌ¼Ç Å°ÇÁ·¹ÀÓ Á¤ÀÇ */
@keyframes zoomOut {
    0% {
        /* ½ÃÀÛ ½ÃÁ¡: 1.05¹è È®´ëµÈ »óÅÂ */
        transform: scale(1.25); 
    }
    100% {
        /* Á¾·á ½ÃÁ¡: ¿ø·¡ Å©±â (1¹è) */
        transform: scale(1); 
    }
}
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* ¾îµÎ¿î ¹ÝÅõ¸í ¿À¹ö·¹ÀÌ */
    z-index: 1;
  }

  .banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    z-index: 2;
  }

  .banner-text h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;	  
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  .banner-text p {
    font-size: 20px;
    color: white;
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  @media (max-width: 1024px) {
    .banner {
      height: 200px;
      padding: 20px;
    }

    .banner-text h1 {
      font-size: 28px;
    }

    .banner-text p {
      font-size: 15px;
    }
  }

  /* ====== ABOUT ¹Ù ¿µ¿ª ====== */
.top-bar {
  width: 100%;
  height: 80px; /* PC¿¡¼­ ³ôÀÌ 80px */
  background-color: #f66f0d;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.top-container {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  padding-left: 10px;
}

.top-content {
  display: flex;
  flex-direction: column; /* ¼¼·Î Á¤·Ä */
  align-items: flex-start; /* ÁÂÃø Á¤·Ä */
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
}

.top-line {
  width: 40px;
  height: 1px;
  background: #fff;
  margin-bottom: 5px; /* ¼±°ú ±ÛÀÚ °£°Ý */
}

.top-text {
  font-size: 30px;
  color: #fff;
  font-family: 'NanumSquareNeoBold', sans-serif;
}

  /* ====== ¾Ö´Ï¸ÞÀÌ¼Ç ====== */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ====== ¸ð¹ÙÀÏ ´ëÀÀ ====== */
  @media (max-width: 1024px) {
    .top-bar {
      height: 50px;
    }

    .top-line {
      width: 25px;
    }

    .top-text {
      font-size: 20px;
    }

    .top-content {
      transform: translateX(50px);
      animation: slideIn 1s ease forwards;
      animation-delay: 0.2s;
    }
  }




 /* Á¦ÀÛ°úÁ¤ 6°³ ¹Ú½ººÎºÐ */
  .wrapper4 {
    width: 100%;
    background-color: #fff;
    padding: 60px 10px; /* ÇØ»óµµ °ü°è¾øÀÌ ÁÂ¿ì 10px ¿©¹é */
  }

  /* PC ÄÁÅ×ÀÌ³Ê */
  .container4 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  /* ¹ÝÀÀÇü */
  @media (max-width: 1024px) {
    .container {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 0 10px;
    }
  }

  @media (max-width: 768px) {
    .container {
      grid-template-columns: 1fr;
      gap: 25px;
      padding: 0 10px;
    }
  }

  /* ¹Ú½º °øÅë */
  .step-box {
    border: 1px solid #b3b3b3;
    border-radius: 20px;
    background-color: #fff;
    padding: 25px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  /* ´Ü°èº° ·Îµù ½Ã ¼øÂ÷ µô·¹ÀÌ */
  .step-box:nth-child(1) { animation-delay: 0.1s; }
  .step-box:nth-child(2) { animation-delay: 0.3s; }
  .step-box:nth-child(3) { animation-delay: 0.5s; }
  .step-box:nth-child(4) { animation-delay: 0.7s; }
  .step-box:nth-child(5) { animation-delay: 0.9s; }
  .step-box:nth-child(6) { animation-delay: 1.1s; }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* ¿øÇü ¼ýÀÚ */
  .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #f66f0d;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  }

  @media (max-width: 768px) {
    .circle {
      width: 60px;
      height: 60px;
      font-size: 22px;
      margin-bottom: 15px;
    }
  }

  /* Á¦¸ñ */
  .step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  /* Ç×¸ñ */
  .step-list {
    text-align: left;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
  }

  .step-list li {
    list-style: none;
    margin-bottom: 5px;
    position: relative;
    padding-left: 12px;
  }

  .step-list li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #f66f0d;
  }

  /* ¸¶¿ì½º ¿À¹ö È¿°ú */
  .step-box:hover {
    border-color: #f66f0d;
    box-shadow: 0 8px 24px rgba(246, 111, 13, 0.2);
    transform: translateY(-8px);
    transition: all 0.4s ease;
  }

/* ¸¶¿ì½º ¿À¹ö ½Ã Æ¯ÀÌÇÑ È¿°ú */
.step-box:hover .circle {
  color: #fff;
  transform: scale(1.15);
  background: linear-gradient(135deg, #f66f0d, #ff9f4a);
  box-shadow: 0 0 20px rgba(246, 111, 13, 0.6);
}

/* ºûÀÌ µµ´Â µíÇÑ È¸Àü ±×¶óµ¥ÀÌ¼Ç È¿°ú */
.step-box:hover .circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,255,255,0.2), transparent 80%);
  animation: rotateGlow 1.5s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

  .step-box:hover .step-title {
    color: #f66f0d;
  }

/* ÅÂºí¸´ (2°³¾¿ ÇÑ ÁÙ) */
@media (max-width: 1200px) {
  .container4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 0px;
  }

  /* Á¦¸ñ */
  .step-title {
    font-size: 18px;
  }

  /* Ç×¸ñ */
  .step-list {
    font-size: 15px;
  }
}

/* ¸ð¹ÙÀÏ (1°³¾¿ ÇÑ ÁÙ) */
@media (max-width: 768px) {
  .container4 {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 0px;
  }

  /* Á¦¸ñ */
  .step-title {
    font-size: 17px;
  }

  /* Ç×¸ñ */
  .step-list {
    font-size: 14px;
  }
}





/* ÇÏ´Ü ½½¶óÀÌµå */
.wrapper5 {
  width: 100%;
  background-color: #fff;
  padding: 0 10px; /* ÇØ»óµµ °ü°è¾øÀÌ ÁÂ¿ì 10px ¿©¹é */
  box-sizing: border-box;
}

/* ÄÁÅ×ÀÌ³Ê */
.container5 {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;                /* »óÇÏÁÂ¿ì 30px */
  border: 1px solid #b3b3b3;   /* Å×µÎ¸® */
  border-radius: 20px;           /* µÕ±Ù Å×µÎ¸® °­È­ */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  box-sizing: border-box;
}

/* È­¸é¿¡ º¸ÀÌ¸é È°¼ºÈ­ */
.container5.active {
  opacity: 1;
  transform: translateY(0);
}

/* ÅÂºí¸´ (2°³¾¿ ÇÑ ÁÙ) */
@media (max-width: 1200px) {
  .container5 {
  padding: 25px; 
  }
}

/* ¸ð¹ÙÀÏ (1°³¾¿ ÇÑ ÁÙ) */
@media (max-width: 768px) {
  .container5 {
  padding: 20px;
  }
}