@charset "UTF-8";
/* --- Variables --- */
:root {
  --fs_base: 17px;
}

@media screen and (max-width: 768px) {
  :root {
    --fs_base: 15px;
  }
  
}
/* --- Reset & Common --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "pretendard", "Noto Sans KR", sans-serif;
  color: #333;
  font-size: var(-fs_base);
  caret-color: transparent;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* --- Header (GNB) --- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 999;
  transition: 0.3s;
  backdrop-filter: blur(10px); /* 뒤의 배경을 10px만큼 흐리게 */
  -webkit-backdrop-filter: blur(10px); /* 사파리 브라우저 지원용 */
}
@media screen and (max-width: 768px) {
  #header {
    background-color: #fff;
    height: 60px;
    padding: 0 20px;
  }
}
#header .logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
#header .logo img {
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  #header .logo img {
    height: 30px;
  }
}
@media screen and (max-width: 1200px) {
  #header nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #fff;
    padding: 80px 0;
    transition: right 0.5s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 998;
  }
}
#header nav ul {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1200px) {
  #header nav ul {
    flex-direction: column;
    gap: 0;
    text-align: left;
  }
}
#header nav ul li.active a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00c6ff;
}
@media screen and (max-width: 1024px) {
  #header nav ul li.active a::after {
    display: none;
  }
}
#header nav ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  position: relative;
}
@media screen and (max-width: 1200px) {
  #header nav ul li a {
    color: #333;
    font-size: 18px;
  }
}
#header .hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 9999;
  cursor: pointer;
  border: none;
  background: transparent;
}
#header .hamburger .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
#header .hamburger .line:nth-child(1) {
  top: 0;
}
#header .hamburger.active .line:nth-child(1) {
  top: 8px;
}
#header .hamburger .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .hamburger .line:nth-child(3) {
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  #header .hamburger {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  #header.is-open nav {
    right: 0;
  }
}
#header.is-open .hamburger .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#header.is-open .hamburger .line:nth-child(2) {
  opacity: 0;
}
#header.is-open .hamburger .line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 1200px) {
  #header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 100;
    transition: right 0.4s ease-in-out;
    padding: 0;
    padding-top: 80px;
    display: block;
  }
  #header nav.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  #header nav ul#menu {
    flex-direction: column;
    align-items: flex-start;
  }
  #header nav ul#menu li {
    width: 100%;
    margin: 0;
  }
  #header nav ul#menu li a {
    display: block;
    padding: 10px 12px;
    color: #333;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .hamburger {
    display: block;
    position: relative;
    z-index: 101;
    width: 24px;
    height: 18px;
  }
  .hamburger .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease-in-out;
  }
  .hamburger .line:nth-child(1) {
    top: 0;
  }
  .hamburger .line:nth-child(2) {
    top: 8px;
  }
  .hamburger .line:nth-child(3) {
    top: 16px;
  }
  .hamburger.active .line:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .line:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
}
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
/* --- Common Section Styles --- */
.section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.section .content-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .section .content-wrap {
    padding: 90px 20px 90px 20px;
  }
}
.section .section-title h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1280px) {
  .section .section-title h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .section .section-title h3 {
    font-size: 22px;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .inner {
    justify-content: start;
    padding: 0;
  }
}

.partners {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .partners {
    justify-content: start;
    padding: 90px 0 50px 0;
  }
}

/* Animations */
.ani-up {
  opacity: 0;
  transform: translateY(50px);
}

.ani-fade {
  opacity: 0;
}

/* --- Sec 1: Main --- */
#sec1 {
  background: #0a192f;
  color: #fff;
  height: 100%;
}
#sec1 .fp-overflow,
#sec1 .swiper {
  height: 100%;
}

.main-copy h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* --- Sec 2: Business --- */
#sec2 {
  background: #f9f9f9;
  text-align: center;
}

.sec-title {
  font-size: 40px;
  margin-bottom: 50px;
  color: #111;
  font-weight: 700;
}

/* --- Sec 4: History --- */
#sec4 {
  background: #eee;
}

.history-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
}

.year-group {
  width: 23%;
  padding: 20px;
  background: #fff;
  border-top: 4px solid #0072ff;
}

.year {
  font-size: 30px;
  font-weight: 700;
  color: #0072ff;
  margin-bottom: 15px;
}

.history-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #666;
}

/* --- Sec 5: Vision --- */
#sec5 {
  background: #fff;
}

.vision-layout {
  display: flex;
  gap: 50px;
  align-items: center;
}

.vision-img {
  flex: 1.2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-content {
  flex: 1;
}
.vision-content h3 {
  font-size: 40px;
  margin-bottom: 30px;
  word-break: keep-all;
}

.vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.vision-cards .v-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: #555;
}

/* --- Sec 6: Certifications --- */
#sec6 {
  background: #f0f8ff;
  text-align: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.cert-grid .cert-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- Sec 7: Core Values --- */
#sec7 {
  background: #1a1a1a;
  color: #fff;
}
#sec7::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 80%;
  background: url("https://placehold.co/800x1000/333/555?text=Core+Value+Symbol");
  background-size: cover;
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  z-index: -1;
}

.values-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 0 100px;
}

.val-col {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.val-item h4 {
  font-size: 28px;
  color: #00c6ff;
  margin-bottom: 10px;
}
.val-item p {
  font-size: 16px;
  color: #aaa;
}

/* --- Sec 8: Organization --- */
#sec8 {
  background: #fff;
  background-image: url(../images/bg_client.png);
  background-size: cover;
  background-position: right bottom;
}

.org-wrap {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.org-chart-area {
  text-align: center;
}

.org-img {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Sec 9: Contact --- */
#sec9 {
  background: #fff;
}

.contact-wrap {
  display: flex;
  height: 60vh;
  align-items: center;
  gap: 50px;
}

.contact-info {
  flex: 0.8;
  padding-left: 20px;
}
.contact-info h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.map-area {
  flex: 1.2;
  height: 100%;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

/* --- Footer --- */
#footer {
  background: #111;
  color: #888;
  border-top: 1px solid #333;
  padding: 40px 0;
}
#footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .f-logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
#footer .f-links span {
  margin-left: 20px;
  font-size: 13px;
  cursor: pointer;
}
#footer .f-links span:hover {
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  /* #header nav ul is now handled by the new nav styles */
  .business-grid,
  .vision-layout,
  .org-wrap,
  .contact-wrap,
  .container {
    flex-direction: column;
  }
  .biz-item {
    width: 100%;
    height: 250px;
  }
  .main-copy h2,
  .greet-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 900px) {
  .container {
    align-items: flex-start;
    gap: 60px;
  }
  .title-area .main-tit {
    font-size: 28px;
  }
  .list-area {
    width: 100%;
    justify-content: flex-start;
  }
}
/* --- Talent Section --- */
.talent-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .talent-section {
    min-height: auto;
  }
  .talent-section .container {
    padding-top: 100px;
    gap: 20px;
    padding-bottom: 90px;
  }
}
.talent-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.title-area {
  flex: 1 1 auto;
  text-align: left;
  max-width: 570px;
}
.title-area .sub-tit {
  display: block;
  color: #29b6f6;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.title-area .main-tit {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .title-area .main-tit {
    font-size: 21px;
  }
  .title-area .main-tit br {
    display: none;
  }
}

.list-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.talent-list {
  list-style: none;
  position: relative;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.talent-list li {
  position: relative;
  padding-bottom: 50px;
  /* Bullet Point */
  /* Active State */
}
@media screen and (max-width: 768px) {
  .talent-list li {
    padding-bottom: 20px;
  }
}
.talent-list li:last-child {
  padding-bottom: 0;
}
.talent-list li::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
}
.talent-list li.active::before {
  background-color: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.talent-list li .txt-box {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .talent-list li .txt-box {
    padding-left: 0;
  }
}
.talent-list li .tit {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .talent-list li .tit {
    font-size: 17px;
    margin-bottom: 0;
  }
}
.talent-list li .tit .divider {
  font-weight: 300;
  margin: 0 8px;
  opacity: 0.6;
  font-size: 18px;
  vertical-align: middle;
}
.talent-list li .desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .talent-list li .desc {
    font-size: 15px;
    word-break: keep-all;
  }
}

/* --- FullPage View States & Header Changes --- */
.fp-viewing-business #header nav ul li a,
.fp-viewing-anchor2 #header nav ul li a,
.fp-viewing-anchor4 #header nav ul li a,
.fp-viewing-anchor5 #header nav ul li a,
.fp-viewing-anchor6 #header nav ul li a,
.fp-viewing-anchor8 #header nav ul li a,
.fp-viewing-anchor10 #header nav ul li a {
  color: #000;
}

.fp-viewing-footer-info #header .logo,
.fp-viewing-anchor1 #header .logo,
.fp-viewing-anchor3 #header .logo,
.fp-viewing-anchor7 #header .logo,
.fp-viewing-anchor9 #header .logo {
  background-image: url(../images/ngm_logo_w.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .fp-viewing-footer-info #header .logo,
  .fp-viewing-anchor1 #header .logo,
  .fp-viewing-anchor3 #header .logo,
  .fp-viewing-anchor7 #header .logo,
  .fp-viewing-anchor9 #header .logo {
    background-image: url(../images/ngm_logo_base.png);
    background-size: contain;
  }
}
.fp-viewing-footer-info #header .logo img,
.fp-viewing-anchor1 #header .logo img,
.fp-viewing-anchor3 #header .logo img,
.fp-viewing-anchor7 #header .logo img,
.fp-viewing-anchor9 #header .logo img {
  opacity: 0;
}

@media screen and (min-width: 1021px) {
  .fp-viewing-anchor1 #header .hamburger .line,
  .fp-viewing-anchor3 #header .hamburger .line,
  .fp-viewing-anchor7 #header .hamburger .line,
  .fp-viewing-anchor9 #header .hamburger .line {
    background-color: #fff;
  }
}

@media screen and (min-width: 1021px) {
  .fp-viewing-anchor1 #header .hamburger.active .line,
  .fp-viewing-anchor3 #header .hamburger.active .line,
  .fp-viewing-anchor7 #header .hamburger.active .line,
  .fp-viewing-anchor9 #header .hamburger.active .line {
    background-color: #000;
  }
}

/* --- Visual Section --- */
.visual-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 30, 0.6);
  z-index: 1;
}
.visual-section .content-wrap {
  position: relative;
  z-index: 2;
  text-align: left;
}
.visual-section .content-wrap .sub-title {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.visual-section .content-wrap h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
}
.visual-section .content-wrap .btn-more {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s;
}
.visual-section .content-wrap .btn-more:hover {
  background: #199DC0;
  border-color: #199DC0;
}
.visual-section .visual_nav {
  position: absolute;
  left: 90px;
  bottom: 100px;
  display: flex;
  align-items: center;
  z-index: 10;
}
.visual-section .visual_nav button {
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0;
  width: 40px;
  height: 40px;
  position: relative;
}
.visual-section .visual_nav button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.visual-section .visual_nav .btn_prev button::before {
  border-width: 0 0 2px 2px;
  margin-left: 4px;
}
.visual-section .visual_nav .btn_next button::before {
  border-width: 2px 2px 0 0;
  margin-left: -4px;
}
.visual-section .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  padding: 90px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .visual-section .swiper-slide {
    padding: 15px;
  }
}
.visual-section .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.visual-section .text-box {
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 8px;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .visual-section .text-box {
    padding: 10px;
  }
}
.visual-section .text-box .desc-md,
.visual-section .text-box .title-lg {
  opacity: 0;
  transform: translateY(30px);
}
.visual-section .swiper-button-next,
.visual-section .swiper-button-prev {
  color: #fff !important;
  opacity: 0.7;
  transition: 0.3s;
}
.visual-section .swiper-button-next:hover,
.visual-section .swiper-button-prev:hover {
  opacity: 1;
}
.visual-section .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5;
}
.visual-section .swiper-pagination-bullet-active {
  opacity: 1;
}
.visual-section .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 20px;
}
.visual-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 0.3s ease;
}
.visual-section .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: #fff;
}
.visual-section .title-lg {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  display: block;
  letter-spacing: -1px;
}
@media screen and (max-width: 1280px) {
  .visual-section .title-lg {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .visual-section .title-lg {
    font-size: 28px;
    line-height: 1.4;
  }
  .visual-section .title-lg br {
    display: none;
  }
}
.visual-section .desc-md {
  font-size: 32px;
  margin-bottom: 30px;
  display: block;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .visual-section .desc-md {
    font-size: 19px;
  }
}
.visual-section .btn-link {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.visual-section .btn-link:hover {
  background: #000;
  color: #fff;
}

/* --- Business Section (Detailed) --- */
.business-section {
  background-color: #f9f9f9;
  /*background-image: url(../images/section02.png);*/
  /* Active State Triggered by JS */
}
.business-section .fp-overflow {
  height: 100%;
  padding-top: 100px;
  background-image: url(../images/bg_main_solution.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .business-section .fp-overflow {
    padding-bottom: 50px;
  }
}
.business-section .section-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .business-section .section-title {
    margin-bottom: 20px;
  }
}
.business-section .section-title span {
  display: block;
  color: #199DC0;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .business-section .section-title span {
    font-size: 19px;
  }
}
.business-section .biz-grid {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .business-section .biz-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.business-section .biz-grid .biz-item {
  width: 400px;
  height: 450px;
  background-color: #eee;
  display: flex;
  align-items: end;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-out;
}
@media screen and (max-width: 1280px) {
  .business-section .biz-grid .biz-item {
    height: 380px;
    padding: 30px;
  }
}
.business-section .biz-grid .biz-item .txt h4 {
  font-size: 36px;
}
@media screen and (max-width: 1280px) {
  .business-section .biz-grid .biz-item .txt h4 {
    font-size: 26px;
  }
}
.business-section .biz-grid .biz-item .txt p {
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .business-section .biz-grid .biz-item .txt h4 {
    font-size: 21px;
    text-align: left;
  }
  .business-section .biz-grid .biz-item .txt p {
    font-size: 16px;
  }
}
.business-section .biz-grid .biz-item.biz01 {
  transform: translateY(145px);
  border-radius: 0 0 0 30px;
  background-image: url(../images/bg_biz_01.png);
}
.business-section .biz-grid .biz-item.biz02 {
  background-image: url(../images/bg_biz_02.png);
}
.business-section .biz-grid .biz-item.biz03 {
  transform: translateY(145px);
  background-image: url(../images/bg_biz_03.png);
}
.business-section .biz-grid .biz-item.biz04 {
  border-radius: 0 30px 0 0;
  background-image: url(../images/bg_biz_04.png);
}
@media screen and (max-width: 768px) {
  .business-section .biz-grid .biz-item {
    border-radius: 10px !important;
    width: 100%;
    transform: none !important;
    height: 18vw;
    min-height: 90px;
    padding: 0 50px;
    align-items: center;
  }
}
.business-section.active .biz-grid .biz-item {
  opacity: 1;
  transform: translateY(0);
}
.business-section.active .biz-grid .biz-item.biz01, .business-section.active .biz-grid .biz-item.biz03 {
  transform: translateY(45px);
}
.business-section.active .biz-grid .biz-item.biz01 {
  transition-delay: 0.1s;
}
.business-section.active .biz-grid .biz-item.biz02 {
  transition-delay: 0.3s;
}
.business-section.active .biz-grid .biz-item.biz03 {
  transition-delay: 0.5s;
}
.business-section.active .biz-grid .biz-item.biz04 {
  transition-delay: 0.7s;
}

/* --- Organization Chart Container --- */
.org-container {
  display: flex;
  gap: 60px;
  padding: 60px;
  border-radius: 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .org-container {
    padding: 120px 40px 90px 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .org-container {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .org-container {
    padding: 90px 20px 90px 20px;
    gap: 20px;
  }
}

.info-panel {
  flex: 0 0 45%;
}
.info-panel .header-group {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .info-panel .header-group {
    margin-bottom: 20px;
  }
}
.info-panel .header-group .sub-title {
  color: #29a3c9;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.info-panel .header-group .main-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  color: #111;
  margin-bottom: 25px;
}
@media screen and (max-width: 1280px) {
  .info-panel .header-group .main-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .info-panel .header-group .main-title {
    font-size: 21px;
  }
  .info-panel .header-group .main-title br {
    display: none;
  }
}
.info-panel .header-group .description {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 1280px) {
  .info-panel .header-group .description {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .info-panel .header-group .description br {
    display: none;
  }
}
.info-panel .charts-wrapper {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .info-panel .charts-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.info-panel .chart-box {
  position: relative;
  width: 230px;
  height: 230px;
}
.info-panel .donut-chart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-panel .donut-chart .center-hole {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.info-panel .donut-chart .center-hole .label-center {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.info-panel .donut-chart .label-float {
  position: absolute;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  text-align: center;
  line-height: 1.2;
  z-index: 3;
}
.info-panel .donut-chart .label-float strong {
  display: block;
  font-size: 15px;
  background: #11579D;
  padding: 3px 10px;
  border-radius: 5px;
  color: #fff;
  margin-top: 5px;
}
.info-panel .chart-duty {
  background: conic-gradient(#62C8E3 0% 80%, #8EDAEE 80% 90%, #C4EFFA 90% 100%);
}
.info-panel .chart-duty .pos-1 {
  bottom: 17px;
  left: 55px;
}
.info-panel .chart-duty .pos-2 {
  top: 15px;
  left: 90px;
  transform: translateX(-50%);
}
.info-panel .chart-duty .pos-3 {
  top: 47px;
  left: 0;
}
.info-panel .chart-grade {
  background: conic-gradient(#56ABDF 0% 70%, #84CAF5 70% 80%, #B1DEFA 80% 90%, #D2EDFE 90% 100%);
}
.info-panel .chart-grade .pos-grade-1 {
  bottom: 7px;
  left: 40%;
}
.info-panel .chart-grade .pos-grade-2 {
  top: 101px;
  left: 15px;
}
.info-panel .chart-grade .pos-grade-3 {
  top: 50px;
  left: 40px;
  transform: translateX(-50%);
}
.info-panel .chart-grade .pos-grade-4 {
  top: 20px;
  left: 78px;
  color: #333;
  text-shadow: none;
}

/* --- Tree Structure --- */
.tree-panel {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .tree-panel {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .tree {
    width: 100%;
  }
}
.tree ul {
  position: relative;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .tree ul {
    flex-direction: column;
    padding: 0;
  }
}
.tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 10px 0 10px;
  /* Connectors */
}
@media screen and (max-width: 768px) {
  .tree li {
    width: 100%;
  }
}
.tree li::before, .tree li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px dashed #5bbccf;
  width: 50%;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .tree li::before, .tree li::after {
    display: none;
  }
}
.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px dashed #5bbccf;
}
@media screen and (max-width: 768px) {
  .tree li::after {
    display: none;
  }
}
.tree li:only-child::after, .tree li:only-child::before {
  display: none;
}
.tree li:first-child::before, .tree li:last-child::after {
  border: 0 none;
}
.tree li:last-child::before {
  border-right: 1px dashed #5bbccf;
  border-radius: 0 5px 0 0;
}
@media screen and (max-width: 768px) {
  .tree li:last-child::before {
    display: none;
  }
}
.tree li:first-child::after {
  border-radius: 5px 0 0 0;
}
.tree .node-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.tree .node-card.ceo {
  width: 140px;
  height: 90px;
  background-color: #29a3c9;
  border-radius: 12px;
}
.tree .node-card.ceo .role {
  font-size: 11px;
  margin-bottom: 4px;
  opacity: 0.9;
}
.tree .node-card.ceo .name {
  font-size: 18px;
  font-weight: 800;
}
.tree .node-card.board {
  background-color: #12557f;
  width: 140px;
  height: 45px;
  font-size: 17px;
}
.tree .node-card.dept {
  background-color: #078CB0;
  width: 140px;
  height: 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .tree .node-card.dept {
    width: 100%;
    margin: 0;
  }
}
.tree .node-card.team {
  background-color: #fff;
  color: #444;
  border: 1px solid #ddd;
  width: 140px;
  height: 50px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .tree .node-card.team {
    width: 100%;
  }
}
.tree .top-level {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .tree .top-level {
    margin-bottom: 0;
  }
}
.tree .top-level::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 80px;
  border-left: 1px dashed #5bbccf;
}
@media screen and (max-width: 768px) {
  .tree .top-level::after {
    display: none;
  }
}
.tree .side-branch {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(60px, 15px);
}
@media screen and (max-width: 768px) {
  .tree .side-branch {
    position: static;
    transform: none;
    margin-top: 10px;
    width: 100%;
  }
}
.tree .side-branch::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  width: 60px;
  border-top: 1px dashed #5bbccf;
}
@media screen and (max-width: 768px) {
  .tree .side-branch::before {
    display: none;
  }
}
.tree .sub-teams {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .tree .sub-teams {
    padding-top: 0;
  }
}
.tree .sub-teams li {
  padding: 5px 0;
  float: none;
}
.tree .sub-teams li::before, .tree .sub-teams li::after {
  display: none;
}

.fp-overflow {
  overflow-x: hidden;
}

/* Clients Section */
#sec10 {
  background-color: #f3f4f5;
}
@media screen and (max-width: 768px) {
  #sec10 {
    align-items: start;
  }
}

.clients-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 20px;
}
.clients-grid a:hover{
	border:4px solid #0206FF
}

@media screen and (max-width: 768px) {
  .clients-grid {
    margin-top: 20px;
  }
}

.client-item {
  background: #fff;
  width: calc((100% - 75px) / 4);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  /*transition: transform 0.3s, box-shadow 0.3s;*/
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px);
}

.client-item:hover {
  /*transform: translateY(-5px);*/
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
}

.client-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .fp-tableCell {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .clients-grid {
    gap: 15px;
  }
  .client-item {
    height: 60px;
    background: #fff;
    width: calc((100% - 15px) / 2);
  }
}
.vision-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 20px 40px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .vision-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.vision-section .vision-header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .vision-section .vision-header {
    margin-bottom: 30px;
  }
}
.vision-section .vision-header .vision-sub {
  display: block;
  color: #0090ff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.vision-section .vision-header .vision-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .vision-section .vision-header .vision-title {
    font-size: 21px;
    margin-bottom: 12px;
  }
}
.vision-section .vision-header .vision-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  word-break: keep-all;
}
.vision-section .vision_area {
  display: flex;
  gap: 30px;
  height: 410px;
}
@media (max-width: 1280px) {
  .vision-section .vision_area {
    height: 310px;
  }
}
@media screen and (max-width: 768px) {
  .vision-section .vision_area {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
}
.vision-section .vision_area .vision_box {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  flex: 0 0 200px;
  border-radius: 20px;
  transition: flex 0.5s ease;
}
@media (max-width: 768px) {
  .vision-section .vision_area .vision_box {
    padding: 20px 30px;
    flex: 1 1 auto;
    word-break: keep-all;
  }
  .vision-section .vision_area .vision_box img {
    width: 30px;
  }
}
.vision-section .vision_area .vision_box.active {
  flex: 1 1 auto;
}
.vision-section .vision_area .vision_box.active .v_title {
  opacity: 1;
  font-size: 40px;
}
@media (max-width: 1280px) {
  .vision-section .vision_area .vision_box.active .v_title {
    font-size: 27px;
  }
}
@media (max-width: 768px) {
  .vision-section .vision_area .vision_box.active .v_title {
    font-size: 18px;
  }
}
.vision-section .vision_area .vision_box.active .v_txt {
  opacity: 1;
  font-size: 18px;
}
@media (max-width: 768px) {
  .vision-section .vision_area .vision_box.active .v_txt {
    font-size: 14px;
  }
}
.vision-section .vision_area .vision_box .v_title {
  opacity: 0;
  transition: opacity 0.5s ease;
  font-size: 0;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .vision-section .vision_area .vision_box .v_title {
    opacity: 1;
    font-size: 18px;
  }
}
.vision-section .vision_area .vision_box .v_txt {
  opacity: 0;
  transition: opacity 0.5s ease;
  font-size: 0px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .vision-section .vision_area .vision_box .v_txt {
    opacity: 1;
    font-size: 14px;
  }
}
.vision-section .vision_area .vision_box1 {
  background-image: url(../images/bg_vision01.png);
}
.vision-section .vision_area .vision_box2 {
  background-image: url(../images/bg_vision02.png);
}
.vision-section .vision_area .vision_box3 {
  background-image: url(../images/bg_vision03.png);
}

@media screen and (max-width: 1200px) {
  #fp-nav {
    display: none;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: #111;
  line-height: 1.6;
}

ul, li {
  list-style: none;
}

.history-section {
  padding: 140px 0 100px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.history-section .tit-area {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .history-section .tit-area {
    margin-bottom: 30px;
  }
}
.history-section .tit-area h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .history-section .tit-area h2 {
    font-size: 32px;
  }
}
.history-section .tit-area h3 {
  font-size: 32px;
  font-weight: 700;
  color: #009ce0;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .history-section .tit-area h3 {
    font-size: 24px;
  }
}
.history-section .history-container {
  position: relative;
  padding: 50px 0;
}
.history-section .history-container .line-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 2px;
  background-color: #eee;
  transform: translateX(-50%);
  z-index: 0;
}
.history-section .history-container .sticky-point {
  position: absolute;
  left: 35%;
  transform: translate(-50%, -50%);
  z-index: 2;
  top: 0;
}
.history-section .history-container .sticky-point .arrow-shape {
  width: 60px;
  height: 60px;
  background-color: #009ce0;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 156, 224, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history-section .history-container .sticky-point .arrow-shape {
    display: none;
  }
}
.history-section .history-container .sticky-point .arrow-shape::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
  margin-top: 5px;
}
.history-section .history-container .history-list {
  position: relative;
  z-index: 1;
}
.history-section .history-container .history-item {
  display: flex;
  min-height: 200px;
  margin-bottom: 40px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.history-section .history-container .history-item.active {
  opacity: 1;
}
.history-section .history-container .history-item.active .year-col {
  color: #111;
  transform: scale(1.1);
}
.history-section .history-container .history-item .year-col {
  width: 35%;
  text-align: right;
  padding-right: 60px;
  font-size: 60px;
  font-weight: 800;
  color: #ccc;
  transition: all 0.3s;
  font-family: "Roboto", sans-serif;
}
.history-section .history-container .history-item .center-col {
  width: 1px;
  background-color: #aaa;
  position: relative;
}
.history-section .history-container .history-item .content-col {
  width: 65%;
  text-align: left;
  padding-left: 60px;
  padding-top: 15px;
}
.history-section .history-container .history-item .content-col ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  font-size: 16px;
  color: #444;
  word-break: keep-all;
}
.history-section .history-container .history-item .content-col ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #009ce0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .history-section .history-container {
    padding-top: 10px;
  }
  .history-section .history-container .line-bg, .history-section .history-container .sticky-point {
    left: 30px;
  }
  .history-section .history-container .history-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .history-section .history-container .history-item .year-col {
    width: 100%;
    text-align: left;
    padding-left: 30px;
    font-size: 29px;
  }
  .history-section .history-container .history-item .content-col {
    width: 100%;
    padding-left: 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", sans-serif;
}

.contact-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../images/handshake_bg.png");
}
@media screen and (max-width: 768px) {
  .contact-section {
    align-items: start;
  }
}
.contact-section .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-section .container {
    padding-top: 90px;
  }
}
.contact-section .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-section .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
  }
}
.contact-section .content-wrapper .text-box {
  color: #ffffff;
  flex: 1;
  width: 550px;
}
.contact-section .content-wrapper .text-box .sub-title {
  display: block;
  color: #17a2b8;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.contact-section .content-wrapper .text-box .main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .contact-section .content-wrapper .text-box .main-title {
    font-size: 21px;
  }
}
.contact-section .content-wrapper .text-box .btn-contact {
  display: inline-block;
  padding: 12px 35px;
  background-color: #17a2b8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.contact-section .content-wrapper .text-box .btn-contact:hover {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.contact-section .content-wrapper .map-box {
  flex: 1;
  display: flex;
  justify-content: start;
}
@media (max-width: 768px) {
  .contact-section .content-wrapper .map-box {
    justify-content: center;
    width: 100%;
  }
}
.contact-section .content-wrapper .map-box .map-img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 10px;
}

/* Location Section Tabs */
.location-tabs {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .location-tabs {
    justify-content: center;
  }
}

.location-tab-btn {
  padding: 10px 25px;
  border: 1px solid #ccc;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.location-tab-btn.active,
.location-tab-btn:hover {
  background-color: #fff;
  color: #333;
  font-weight: bold;
  border-color: #fff;
}

.location-pane {
  display: none;
}
.location-pane iframe {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .location-pane iframe {
    width: 100%;
    height: 45vw;
  }
}

.location-pane.active {
  display: block;
}

.location-pane .address {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .location-pane .address {
    font-size: 15px;
  }
}

.location-pane iframe {
  border-radius: 10px;
}

.ani-slide-item {
  opacity: 0;
  transform: translateY(30px);
}

/* Image Modal Styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 10000; /* Should be on top of everything */
  cursor: pointer;
}

.image-modal.show {
  display: flex; /* Show when active */
}

.image-modal .modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.image-modal .modal-content img {
  max-width: 100%;
  max-height: 90vh; /* Limit height to viewport height */
  object-fit: contain;
  border-radius: 8px;
}

.image-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

#sec6 .swiper-slide {
  cursor: pointer;
}

/* Variables */
/* 메인 컬러 (Cyan Blue) */
/* 진한 텍스트 */
/* 서브 텍스트 */
/* 배경색 */
/* Certifications Section */
.cert-section {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  /* Header Area */
  /* Slider Area */
}
.cert-section .cert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
}
.cert-section .cert-header .cert-title-group .sub-title {
  display: block;
  color: #00a0e9;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.cert-section .cert-header .cert-title-group .main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}
.cert-section .cert-header .cert-tabs {
  display: flex;
  gap: 10px;
}
.cert-section .cert-header .cert-tabs .cert-tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  color: #666;
  transition: all 0.3s;
  /* Active State */
  /* Hover State */
}
@media screen and (max-width: 768px) {
  .cert-section .cert-header .cert-tabs .cert-tab-btn {
    font-size: 15px;
    padding: 7px 12px;
  }
}
.cert-section .cert-header .cert-tabs .cert-tab-btn.active {
  border-color: #00a0e9;
  color: #00a0e9;
  font-weight: 600;
  background: #fff;
}
.cert-section .cert-header .cert-tabs .cert-tab-btn:hover {
  background-color: #f9f9f9;
}
.cert-section .cert-slider-wrap {
  position: relative;
  padding: 0 50px;
  /* Navigation Customization */
}
.cert-section .cert-slider-wrap .swiper-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}
.cert-section .cert-slider-wrap .swiper-slide {
  position: relative;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  /* Card Content */
}
.cert-section .cert-slider-wrap .swiper-slide:hover {
  transform: translateY(-5px);
}
.cert-section .cert-slider-wrap .swiper-slide .cert-card-img {
  width: 100%;
  height: 410px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}
.cert-section .cert-slider-wrap .swiper-slide .cert-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cert-section .cert-slider-wrap .swiper-slide .cert-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 24px;
  text-align: left;
}
.cert-section .cert-slider-wrap .swiper-slide .cert-card-info .cert-category {
  display: block;
  color: #00a0e9;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cert-section .cert-slider-wrap .swiper-slide .cert-card-info .cert-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  word-break: keep-all;
}
.cert-section .cert-slider-wrap .swiper-button-prev,
.cert-section .cert-slider-wrap .swiper-button-next {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #333;
}
.cert-section .cert-slider-wrap .swiper-button-prev::after,
.cert-section .cert-slider-wrap .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .cert-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .cert-section .cert-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cert-section .cert-header .cert-title-group .main-title {
    font-size: 19px;
  }
  .cert-section .cert-slider-wrap {
    padding: 0;
  }
}
/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1050; /* fullpage.js 위에 표시되도록 z-index를 높게 설정 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.image-modal.show {
  opacity: 1;
  visibility: visible;
}
.image-modal .modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.image-modal .modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.image-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

.greeting-wrap {
  position: relative;
  background-color: #1E2124;
  background-image: url(../images/bg_intro_patten.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 100px;
}
@media screen and (max-width: 768px) {
  .greeting-wrap {
    padding: 0 20px;
    align-items: start;
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.greeting-wrap .fp-tableCell {
  display: block;
}
.greeting-wrap .fp-scrollable {
  height: 100% !important;
}
.greeting-wrap .content-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  color: #fff;
  text-align: left;
  padding-top: 150px;
}
@media screen and (max-width: 1280px) {
  .greeting-wrap .content-wrap {
    gap: 25px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .greeting-wrap .content-wrap {
    padding-top: 90px;
    gap: 25px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .greeting-wrap .content-wrap {
    padding-top: 50px;
  }
}
.greeting-wrap .content-wrap .cont_left .title_teg {
  font-size: 24px;
  margin-bottom: 20px;
}
.greeting-wrap .content-wrap .cont_left h4 {
  font-size: 65px;
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 1280px) {
  .greeting-wrap .content-wrap .cont_left h4 {
    font-size: 45px;
  }
}
@media screen and (max-width: 768px) {
  .greeting-wrap .content-wrap .cont_left h4 {
    font-size: 26px;
  }
}
.greeting-wrap .content-wrap .cont_right {
  margin-left: auto;
  padding-left: 40vw;
}
@media screen and (max-width: 1280px) {
  .greeting-wrap .content-wrap .cont_right {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .greeting-wrap .content-wrap .cont_right {
    font-size: 15px;
  }
}
.greeting-wrap .content-wrap .cont_right p + p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .greeting-wrap .content-wrap .cont_right p + p {
    margin-top: 15px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: #333;
  line-height: 1.6;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.header .gnb ul {
  display: flex;
  gap: 20px;
}
.header .gnb ul li a {
  font-size: 15px;
  font-weight: 500;
}

.product_container {
  max-width: 1280px;
  margin: 50px auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .product_container {
    padding: 0;
  }
}
.product_container .product_flex_group {
  display: flex;
  gap: 20px;
}
.product_container .product_flex_group .left {
  width: 57%;
}
.product_container .product_flex_group .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .product_container .product_flex_group {
    flex-direction: column;
  }
  .product_container .product_flex_group .left {
    width: 100%;
  }
  .product_container .product_flex_group .right {
    width: 100%;
  }
}
.product_container .page-title {
  margin-bottom: 40px;
}
.product_container .page-title .sub-txt {
  color: #199DC0;
  font-weight: bold;
  font-size: 17px;
}
.product_container .page-title h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .product_container .page-title h2 {
    font-size: 28px;
  }
}
.product_container .tab-menu ul {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .product_container .tab-menu ul {
    flex-direction: column;
  }
}
.product_container .tab-menu ul li a {
  display: block;
  padding: 10px 25px;
  background: #efefef;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.product_container .tab-menu ul li.active a,
.product_container .tab-menu ul li a:hover {
  background: #0054a6;
  color: #fff;
}
.product_container .tab-menu ul li .btn-back {
  background: #8ecae6;
  color: #fff;
}
.product_container .contents_box {
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
}
@media screen and (max-width: 768px) {
  .product_container .contents_box {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
}
.product_container .contents_box.active {
  display: block;
}
.product_container .section-header {
  font-size: 24px;
  margin-bottom: 20px;
  border-top: 5px solid #0054a6;
  padding-top: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .product_container .section-header {
    font-size: 19px;
  }
}
.product_container .solution-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.product_container .solution-layout .box-dark {
  background: #0054a6;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 15px;
}
.product_container .solution-layout .box-light {
  background: #89bdf0;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 15px;
}
.product_container .solution-layout .box-medium {
  background: #dbeafe;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  color: #0054a6;
  margin-bottom: 10px;
}
.product_container .solution-layout .box-blue {
  background: #7cbbf1;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.product_container .solution-layout .col-left {
  flex: 1;
}
.product_container .solution-layout .col-left .server-split {
  display: flex;
  gap: 15px;
}
.product_container .solution-layout .col-left .server-split .split-col {
  flex: 1;
}
.product_container .solution-layout .col-left .svc-list {
  background: #f1f1f1;
  padding: 15px;
  text-align: center;
}
.product_container .solution-layout .col-left .svc-list li {
  margin-bottom: 8px;
  font-size: 13px;
  color: #555;
}
.product_container .solution-layout .col-right {
  flex: 1;
}
.product_container .solution-layout .col-right .browser-support {
  text-align: center;
  margin: 30px 0;
}
.product_container .solution-layout .col-right .browser-support h4 {
  margin-bottom: 20px;
  color: #0054a6;
}
.product_container .solution-layout .col-right .browser-support .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: bold;
}
.product_container .solution-layout .col-right .browser-support .icons span[class^=icon-] {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 50%;
  line-height: 60px;
  font-size: 12px;
}
.product_container .solution-layout .col-right .desc-list li {
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.product_container .solution-layout .col-right .desc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}
.product_container .monitor-section {
  position: relative;
  padding-bottom: 50px;
  text-align: center;
}
.product_container .monitor-section .monitor-slider .slide-item {
  margin: 0 10px;
  text-align: center;
}
.product_container .monitor-section .monitor-slider .slide-item img {
  width: 100%;
  border: 10px solid #333;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.product_container .monitor-section .monitor-slider .slick-dots li button:before {
  font-size: 12px;
}
.product_container .monitor-section .monitor-slider .slick-prev:before,
.product_container .monitor-section .monitor-slider .slick-next:before {
  color: #0054a6;
}
.product_container .monitor-section .btn-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 100;
}
@media (max-width: 768px) {
  .product_container .solution-layout {
    flex-direction: column;
  }
}

/* Layer Popup Styles */
#solution-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  /* fullpage.js navigation is high */
  display: none;
  /* Initially hidden */
  justify-content: center;
  align-items: center;
}

#solution-popup .popup-content {
  background-color: #fff;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  border-radius: 10px;
  position: absolute;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/bg_main_solution.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

#solution-popup .close-btn {
  position: absolute;
  top: 25px;
  right: 55px;
  font-size: 45px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 768px) {
  #solution-popup .close-btn {
    top: 5px;
    right: 15px;
  }
}

#solution-popup .content-area {
  overflow-y: auto;
  height: 100%;
  padding: 10px;
}

#solution-popup .product_container {
  display: block;
}

h4.tit {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.gallery_item_list ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .gallery_item_list ul {
    flex-direction: column;
  }
}
.gallery_item_list ul li .txt {
  text-align: center;
  padding: 10px;
  background-color: #f4f5f6;
  font-weight: bold;
}

ul, li, p, h1 {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

#footer {
  width: 100%;
  background-color: #031b4e;
  padding: 60px 0;
  color: #ffffff;
  font-size: 14px;
  font-family: "Noto Sans KR", sans-serif;
}
#footer .footer-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #footer .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
#footer .footer-left .footer-logo {
  margin-bottom: 25px;
}
#footer .footer-left .footer-logo img {
  max-height: 40px;
  object-fit: contain;
}
#footer .footer-left .company-info {
  font-style: normal;
  line-height: 1.8;
}
#footer .footer-left .company-info .info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
}
#footer .footer-left .company-info .info-row span {
  display: inline-block;
}
#footer .footer-left .company-info .info-row .label {
  font-weight: 700;
  margin-right: 10px;
}
#footer .footer-left .company-info .info-row .value {
  color: #cccccc;
  margin-right: 15px;
}
#footer .footer-left .company-info .info-row .divider {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 15px;
}
#footer .footer-left .company-info .info-row .divider:last-child {
  display: none;
}
#footer .footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #footer .footer-right {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
}
#footer .footer-right .cs-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
#footer .footer-right .cs-box .cs-title {
  font-weight: 700;
}
#footer .footer-right .cs-box .cs-bar {
  margin: 0 15px;
  opacity: 0.5;
}
#footer .footer-right .cs-box .cs-number {
  font-weight: 700;
  font-size: 1.2rem;
}
#footer .footer-right .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */
.animation_mouse_main {
	position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10%;
    left: 50%;
    color: white;
    z-index: 99;
	background: {
		image: linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%), url('https://source.unsplash.com/random/1920x1080/?sky');
		blend-mode: multiply;
		size: cover;
	}
}
.mouse {
    max-width: $mouse-width;
    width: 100%;
    height: auto;
}
.scroll {
    animation-name: scroll;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(0.650, -0.550, 0.250, 1.500);
    animation-iteration-count: infinite;
    transform-origin: 50% 20.5px;
    will-change: transform, opacity;
    opacity: 1;
}
.scroll-link {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.8rem;
}
@keyframes scroll {

	0%, 20% {
		transform: translateY(0) scaleY(1);
	}

	100% {
		transform: translateY(36px) scaleY(2);
		opacity: 0;
	}

}
svg {
  border: 3px solid white;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .animation_mouse_main {
		display: none;
	}
}

.address a > img {
	width: 1.2rem;
    height: 1.2rem;	
}