@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
}

.layout-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content {
  flex: 1;
  background: #ffffff;
  padding-top: 0;
}

.home-content {
  padding: 0;
}

.btn-primary {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: #24395c;
  color: #ffffff;
}
.btn-primary:hover {
  background: rgb(21.65625, 34.2890625, 55.34375);
}

.btn-secondary {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: #4299e1;
  color: #ffffff;
}
.btn-secondary:hover {
  background: rgb(32.8767123288, 128.2191780822, 207.1232876712);
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 2px solid #e2e8f0;
  text-align: center;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #24395c;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #f8fafc;
  border-left: 4px solid #4299e1;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
}

.consulting-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #f8fafc;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.consulting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.event-card:hover {
  transition: all 0.3s ease;
  border-color: #4299e1;
}
.event-card:hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
.company-card-header::before {
  position: absolute;
  top: 30px;
  left: -2rem;
  right: -2rem;
  height: 2px;
  z-index: 1;
}

.company-card:first-child .company-card-header::before {
  left: 50%;
}

.company-card:last-child .company-card-header::before {
  right: 50%;
}

.company-card-content {
  flex: 1;
  text-align: left;
}
.company-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-card-content li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}
.company-card-content li::before {
  content: "•";
  color: #24395c;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.company-card-content li:last-child {
  margin-bottom: 0;
}
.company-card-content strong {
  font-weight: 600;
  color: #2d3748;
}

.company-card-title,
.service-card-title,
.consulting-card-title,
.event-card-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.company-card-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.service-card-title,
.consulting-card-title {
  font-size: 1.1rem;
}

.event-card-title {
  font-size: 1rem;
  text-align: center;
}

.company-card-description,
.service-card-description,
.consulting-card-description,
.event-card-description {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.company-card-description,
.service-card-description {
  font-size: 0.95rem;
}

.consulting-card-description,
.event-card-description {
  font-size: 0.9rem;
}

.event-card-description {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: #24395c;
  z-index: 2;
  position: relative;
  margin-bottom: 1rem;
}

.consulting-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  margin: 0 auto 1.5rem;
}

.event-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: #f8fafc;
  border: 2px solid #4299e1;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: #4299e1;
}

.company-card:nth-child(1) .company-card-icon::before {
  content: "✓";
}

.company-card:nth-child(2) .company-card-icon::before {
  content: "?";
}

.company-card:nth-child(3) .company-card-icon::before {
  content: "📊";
}

.consulting-card:nth-child(1) .consulting-card-icon::before {
  content: "M";
}

.consulting-card:nth-child(2) .consulting-card-icon::before {
  content: "⚙";
}

.consulting-card:nth-child(3) .consulting-card-icon::before {
  content: "📊";
}

.event-card:nth-child(1) .event-card-icon::before {
  content: "🖥️";
}

.event-card:nth-child(2) .event-card-icon::before {
  content: "🛡️";
}

.event-card:nth-child(3) .event-card-icon::before {
  content: "📋";
}

.company-cards-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.consulting-services,
.event-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.header {
  background: transparent;
  color: var(--header-text, rgba(255, 255, 255, 0.9));
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: none;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  color: #333;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header.menu-hovered, .header.scrolled.menu-hovered {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.header h1 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.header-column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-column:first-child {
  justify-content: flex-start;
}
.header-column:nth-child(2) {
  justify-content: center;
}
.header-column:last-child {
  justify-content: flex-end;
}

.header.scrolled .nav-menu a {
  color: #374151;
}
.header.scrolled .nav-menu a:hover, .header.scrolled .nav-menu a.active {
  color: #2563eb;
}
.header.scrolled h1 {
  color: #333;
}

.header.menu-hovered .nav-menu a,
.header.scrolled.menu-hovered .nav-menu a {
  color: #374151;
}
.header.menu-hovered .nav-menu a:hover, .header.menu-hovered .nav-menu a.active,
.header.scrolled.menu-hovered .nav-menu a:hover,
.header.scrolled.menu-hovered .nav-menu a.active {
  color: #2563eb;
}
.header.menu-hovered h1,
.header.scrolled.menu-hovered h1 {
  color: #333;
}

.nav-container {
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
  height: 80px;
}
.nav-menu li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu a {
  color: var(--nav-text, rgba(255, 255, 255, 0.9));
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  min-width: 100px;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #ffffff;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--nav-hover, #2563eb);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

.dropdown-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-top: 1px solid #e2e8f0;
  padding: 0;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid #e2e8f0;
}
.dropdown-menu h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(37, 99, 235, 0.05);
}
.dropdown-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-menu li {
  flex: 1;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f3f4f6;
}
.dropdown-menu li:last-child {
  border-right: none;
}
.dropdown-menu ul li a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 0;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 54px;
}
.dropdown-menu ul li a:hover {
  color: #2563eb;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
  transform: translateY(-1px);
}
.dropdown-menu ul li a.active {
  color: #123123;
  background: rgba(37, 99, 235, 0.1);
  font-weight: 600;
}
.dropdown-menu ul li a:hover::after {
  width: 0;
}

.nav-menu li.dropdown-active .dropdown-menu {
  display: block;
  animation: fadeInDown 0.3s ease ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header.menu-hovered .dropdown-menu,
.header.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
}
.header.menu-hovered .dropdown-menu h3,
.header.scrolled .dropdown-menu h3 {
  color: #2d3748;
}
.header.menu-hovered .dropdown-menu ul li a,
.header.scrolled .dropdown-menu ul li a {
  color: #4a5568;
}
.header.menu-hovered .dropdown-menu ul li a:hover,
.header.scrolled .dropdown-menu ul li a:hover {
  color: #2563eb;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/background/main-image.png") center/cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  max-width: 1000px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 950px;
  margin: 0 auto;
}
.hero-description p {
  margin-bottom: 0.5rem;
}
.hero-description strong {
  color: #fbbf24;
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-header-section {
  color: #ffffff;
  padding: 4rem 0 3rem 0;
  text-align: center;
  margin-top: 0;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
}
.page-header-section.company {
  background: url("/images/background/image3.jpg") center/cover no-repeat;
}
.page-header-section.business {
  background: url("/images/background/image1.jpg") center/cover no-repeat;
}
.page-header-section.pr {
  background: url("/images/background/image2.jpg") center/cover no-repeat;
}
.page-header-section.recruit {
  background: url("/images/background/image5.jpg") center/cover no-repeat;
}
.page-header-section.support {
  background: url("/images/background/image8.jpg") center/cover no-repeat;
}
.page-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: background 0.3s ease;
  pointer-events: none;
}

.page-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.page-header h1.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  color: #ffffff;
  transition: all 0.3s ease;
}

.timeline-content {
  background: #f8fafc;
  padding: 4rem 0;
  min-height: 100vh;
}

.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4299e1 0%, #2b77c7 50%, #1e4d72 100%);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-line::before, .timeline-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.timeline-line::before {
  top: -10px;
  background: #4299e1;
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #4299e1;
}
.timeline-line::after {
  bottom: -10px;
  background: #1e4d72;
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #1e4d72;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.timeline-item.left {
  left: 0;
  padding-right: 3rem;
  transform: translateX(-100px);
}
.timeline-item.right {
  left: 50%;
  padding-left: 3rem;
  transform: translateX(100px);
}
.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 500px;
  position: relative;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #4299e1;
}

.timeline-item.left .timeline-card {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.timeline-item.left .timeline-card::before {
  right: -15px;
  border-left: 15px solid #ffffff;
  border-right: none;
}

.timeline-item.right .timeline-card {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.timeline-item.right .timeline-card::before {
  left: -15px;
  border-right: 15px solid #ffffff;
  border-left: none;
}

.timeline-period {
  background: linear-gradient(135deg, #4299e1 0%, #2b77c7 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.timeline-period h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.period-number {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.timeline-content-box {
  padding: 2rem;
  background: #ffffff;
}
.timeline-content-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-content-box li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.2s ease;
}
.timeline-content-box li:last-child {
  border-bottom: none;
}
.timeline-content-box li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: #4299e1;
  font-size: 0.8rem;
  font-weight: 600;
}
.timeline-content-box li:hover {
  background: rgba(66, 153, 225, 0.02);
  color: #2d3748;
  padding-left: 2rem;
}
.timeline-content-box li:hover::before {
  color: #2b77c7;
  transform: scale(1.2);
}

.emphasis-phrase {
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.05) 0%, rgba(72, 187, 120, 0.05) 100%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  border-left: 4px solid #4299e1;
}

.emphasis-phrase-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.6;
  position: relative;
  padding: 0 1rem;
}
.emphasis-phrase-text::before {
  font-size: 2rem;
  color: #4299e1;
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  font-weight: 600;
}
.emphasis-phrase-text::after {
  font-size: 2rem;
  color: #4299e1;
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  font-weight: 600;
}

.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: bold;
}

.footer-info p {
  margin: 0.3rem 0;
  text-align: center;
}

.footer a, .footer a:visited {
  color: #d1d5db;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.company-info-content,
.vision-content,
.security-consulting-content,
.event-service-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  background: #ffffff;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
}
.company-info-content h2,
.vision-content h2,
.security-consulting-content h2,
.event-service-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  text-align: left;
}

.company-info-content {
  max-width: 1200px;
}
.company-info-content h2 {
  margin-bottom: 3rem;
}

.facility-intro,
.consulting-intro,
.event-intro,
.vision-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
  text-align: justify;
}
.facility-intro p,
.consulting-intro p,
.event-intro p,
.vision-intro p {
  margin-bottom: 1rem;
}
.facility-intro p:last-child,
.consulting-intro p:last-child,
.event-intro p:last-child,
.vision-intro p:last-child {
  margin-bottom: 0;
}

.consulting-intro,
.event-intro {
  margin-bottom: 3rem;
}

.vision-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 3rem;
  text-align: center;
  font-style: italic;
}

.vision-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.vision-step-card {
  background: #f7fafc;
  border-left: 4px solid #4299e1;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.vision-step-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
}

.vision-step-icon {
  width: 12px;
  height: 12px;
  background: #24395c;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.vision-step-content {
  flex: 1;
}

.vision-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.vision-step-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.vision-slogan {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 1rem 0;
  line-height: 1.6;
  position: relative;
  padding: 0 1rem;
}
.vision-slogan:before {
  font-size: 1.5rem;
  color: #24395c;
  position: absolute;
  left: -0.2rem;
  top: -0.2rem;
}
.vision-slogan:after {
  font-size: 1.5rem;
  color: #24395c;
  position: absolute;
  right: -0.2rem;
  top: -0.2rem;
}

.ceo-greeting-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
  text-align: justify;
}
.ceo-greeting-intro strong {
  font-weight: 600;
  color: #2d3748;
}

.ceo-text-block {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 1.5rem 0;
  text-align: justify;
}
.ceo-text-block strong {
  font-weight: 600;
  color: #2d3748;
}

.ceo-commitment {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 1.5rem 0;
  text-align: justify;
}

.ceo-signature {
  text-align: right;
  margin-top: 3rem;
  padding-right: 2rem;
}

.ceo-signature-company {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.ceo-signature-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
}

.business-title-box,
.event-title-box {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.business-title-box {
  background: #24395c;
  color: #ffffff;
  font-size: 1.1rem;
}

.event-title-box {
  background: #4a5568;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.event-title-box::before {
  content: "•";
  font-size: 1.2rem;
}

.ceo-highlight-box {
  background: #24395c;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.photos-gallery-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.photos-gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.photo-gallery .photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  min-height: 600px;
}
.photo-gallery .photo-grid .photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
}
.photo-gallery .photo-grid .photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.photo-gallery .photo-grid .photo-item .photo-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.photo-gallery .photo-grid .photo-item:hover .photo-image {
  transform: scale(1.05);
}
.photo-gallery .photo-grid .photo-item .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.photo-gallery .photo-grid .photo-item:hover .photo-overlay {
  opacity: 1;
}
.photo-gallery .photo-grid .photo-item .photo-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.photo-gallery .photo-grid .photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  border-top: 2px solid #e74c3c;
  padding-top: 30px;
}
.pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-wrapper .pagination .page-btn {
  padding: 10px 15px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.pagination-wrapper .pagination .page-btn:hover {
  background: #f0f0f0;
  border-color: #999;
}
.pagination-wrapper .pagination .page-btn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}
.pagination-wrapper .pagination .page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-wrapper .pagination .page-btn.disabled:hover {
  background: #fff;
  border-color: #ddd;
}
.pagination-wrapper .pagination .page-btn.prev-btn, .pagination-wrapper .pagination .page-btn.next-btn {
  font-weight: 600;
}
.pagination-wrapper .pagination .page-btn.prev-btn:not(.disabled):hover, .pagination-wrapper .pagination .page-btn.next-btn:not(.disabled):hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/*# sourceMappingURL=main.css.map */
