@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
body {
  background: #f5f5f5;
}

.section1 {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #c1e0ff 100%);
}
@media (max-width: 768px) {
  .section1 {
    padding: 60px 0;
  }
}
.section1-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1200px) {
  .section1-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.left-section {
  text-align: right;
}
.left-section h1 {
  font-size: 36px;
  color: #333;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .left-section h1 {
    font-size: 28px;
  }
}
.left-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}
.left-section .divider {
  width: 60px;
  height: 3px;
  background: #1976D2;
  margin: 0 0 25px auto;
}
@media (max-width: 1200px) {
  .left-section .divider {
    margin: 0 auto 25px;
  }
}

.contact-info {
  font-size: 15px;
  color: #333;
  line-height: 2;
}
.contact-info > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .contact-info > div {
    justify-content: center;
  }
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: #1976D2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

.contact-label {
  color: #999;
  font-size: 13px;
  margin-top: 10px;
  letter-spacing: 1px;
}

.center-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-graphic {
  position: relative;
  width: 140px;
  height: 140px;
}

.arrow {
  position: absolute;
  bottom: 0;
  width: 32px;
  background: linear-gradient(180deg, #42A5F5 0%, #1976D2 100%);
  border-radius: 4px 4px 0 0;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
.arrow::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 14px solid #1976D2;
}
.arrow-1 {
  left: 12px;
  height: 70px;
  animation-delay: 0s;
}
.arrow-2 {
  left: 54px;
  height: 110px;
  animation-delay: 0.2s;
}
.arrow-3 {
  right: 12px;
  height: 85px;
  animation-delay: 0.4s;
}

.ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(25, 118, 210, 0.2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.ring-1 {
  animation-delay: 0s;
}
.ring-2 {
  animation-delay: 0.5s;
}

.right-section {
  text-align: left;
}
.right-section h2 {
  font-size: 28px;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .right-section h2 {
    font-size: 24px;
  }
}
.right-section .highlight {
  color: #D32F2F;
  font-weight: 600;
}
.right-section .subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}
.right-section .divider {
  width: 60px;
  height: 3px;
  background: #1976D2;
  margin: 0 0 25px;
}
.right-section .description {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.right-section .main-text {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .features {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  padding: 10px 16px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.section2 {
  padding: 30px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}
@media (max-width: 768px) {
  .section2 {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .section2-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .section2-container {
    padding: 0 20px;
  }
}
.section2-header {
  text-align: center;
  margin-bottom: 40px;
}
.section2 h2 {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .section2 h2 {
    font-size: 26px;
  }
}
.section2 .subtitle {
  font-size: 16px;
  color: #666;
}
.section2 .divider {
  width: 60px;
  height: 3px;
  background: #1976D2;
  margin: 15px auto 0;
}
.section2-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1200px) {
  .section2-body {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.questions-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
@media (max-width: 1200px) {
  .questions-wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .questions-wrapper {
    padding: 30px 20px;
  }
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.question-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.question-item:nth-child(odd) {
  background: #f8f9fa;
}
.question-item:hover {
  background: rgba(25, 118, 210, 0.05);
  border-color: rgba(25, 118, 210, 0.2);
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .question-item {
    padding: 20px 15px;
    gap: 15px;
  }
}

.question-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
@media (max-width: 768px) {
  .question-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.question-text {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.question-text strong {
  color: #D32F2F;
  font-weight: 600;
}

.question-icon {
  width: 32px;
  height: 32px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.question-icon svg {
  width: 16px;
  height: 16px;
  fill: #D32F2F;
}
@media (max-width: 768px) {
  .question-icon {
    display: none;
  }
}

.section2-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .section2-visual {
    display: none;
  }
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%);
  animation: pulse 3s ease-in-out infinite;
}
.visual-circle-1 {
  width: 250px;
  height: 250px;
  animation-delay: 0s;
}
.visual-circle-2 {
  width: 350px;
  height: 350px;
  animation-delay: 1s;
}
.visual-circle-3 {
  width: 400px;
  height: 400px;
  animation-delay: 2s;
}

.visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.visual-number {
  font-size: 110px;
  font-weight: 700;
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.visual-label {
  font-size: 30px;
  color: #666;
  margin-top: 8px;
  font-weight: 500;
}

.section3 {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #c1e0ff 100%);
  position: relative;
}
@media (max-width: 768px) {
  .section3 {
    padding: 60px 0;
  }
}
.section3-container {
  position: relative;
}
@media (max-width: 1200px) {
  .section3-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .section3-container {
    padding: 0 20px;
  }
}
.section3-header {
  text-align: center;
  margin-bottom: 40px;
}
.section3-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section3-header h2 strong {
  color: #1976D2;
}
@media (max-width: 768px) {
  .section3-header h2 {
    font-size: 26px;
  }
}
.section3-header .subtitle {
  font-size: 16px;
  color: #666;
}
.section3-header .divider {
  width: 60px;
  height: 3px;
  background: #1976D2;
  margin: 20px auto 0;
}

.tab-content-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tab-nav {
  display: flex;
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 768px) {
  .tab-nav {
    flex-direction: column;
  }
}

.tab-nav-item {
  flex: 1;
  padding: 25px 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: transparent;
  position: relative;
}
.tab-nav-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1976D2;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tab-nav-item:hover {
  background: rgba(25, 118, 210, 0.05);
  color: #1976D2;
}
.tab-nav-item.active {
  color: #1976D2;
  background: #cfe7ff;
}
.tab-nav-item.active::after {
  transform: scaleX(1);
}
.tab-nav-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .tab-nav-item {
    padding: 18px 20px;
    justify-content: flex-start;
  }
  .tab-nav-item::after {
    display: none;
  }
}

.tab-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}
@media (max-width: 1200px) {
  .tab-body {
    grid-template-columns: 1fr;
  }
}

.tab-image-section {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 1200px) {
  .tab-image-section {
    height: 300px;
  }
}

.tab-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  transition: opacity 0.5s ease;
}
.tab-image.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-info-section {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .tab-info-section {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .tab-info-section {
    padding: 30px 20px;
  }
}

.tab-info-content {
  display: none;
}
.tab-info-content.active {
  display: block;
  animation: slideIn 0.5s ease;
}

.tab-number-large {
  font-size: 64px;
  font-weight: 700;
  color: rgba(25, 118, 210, 0.15);
  line-height: 1;
  margin-bottom: -20px;
  font-family: "Poppins", sans-serif;
}

.tab-info-header {
  margin-bottom: 25px;
}
.tab-info-header .small-title {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tab-info-header h3 {
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.4;
}
.tab-info-header h3 strong {
  color: #1976D2;
}
@media (max-width: 768px) {
  .tab-info-header h3 {
    font-size: 22px;
  }
}

.tab-info-text {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}

.tab-circles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .tab-circles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #1976D2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 12px;
  color: #666;
  background: #d3e1ef;
  transition: all 0.3s ease;
  padding: 10px;
}
.tab-circle strong {
  color: #1976D2;
  font-size: 20px;
  margin-bottom: 2px;
  font-weight: 600;
}
.tab-circle:hover {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  color: #ffffff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
}
.tab-circle:hover strong {
  color: #ffffff;
}
@media (max-width: 768px) {
  .tab-circle {
    width: 70%;
    height: 90px;
  }
}

.section4 {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #c1e0ff 100%);
}
@media (max-width: 768px) {
  .section4 {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .section4-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .section4-container {
    padding: 0 20px;
  }
}
.section4-header {
  text-align: center;
  margin-bottom: 60px;
}
.section4-header h2 {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section4-header .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}
.section4-header .divider {
  width: 60px;
  height: 3px;
  background: #1976D2;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section4-header h2 {
    font-size: 24px;
  }
}
.section4-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 1200px) {
  .section4-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (max-width: 1200px) {
  .features-column {
    gap: 30px;
  }
}

.feature-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(25, 118, 210, 0.1);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(25, 118, 210, 0.15);
  border-color: rgba(25, 118, 210, 0.3);
}
.feature-card.reverse {
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 768px) {
  .feature-card {
    padding: 20px;
    gap: 20px;
  }
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}
@media (max-width: 768px) {
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
}

.feature-content h3 {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .feature-content h3 {
    font-size: 18px;
  }
}
.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .feature-content p {
    font-size: 13px;
  }
}

.section5 {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}
@media (max-width: 768px) {
  .section5 {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .section5-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .section5-container {
    padding: 0 20px;
  }
}
.section5-header {
  text-align: center;
  margin-bottom: 60px;
}
.section5-header h2 {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section5-header .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}
.section5-header .divider {
  width: 60px;
  height: 3px;
  background: #1976D2;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section5-header h2 {
    font-size: 24px;
  }
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1200px) {
  .gallery-layout {
    grid-template-columns: 1fr;
  }
}

.gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-main:hover img {
  transform: scale(1.1);
}

.gallery-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .gallery-sub {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-sub {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: #ffffff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .gallery-item {
    aspect-ratio: 4/3;
  }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery-icon svg {
  width: 24px;
  height: 24px;
  fill: #1976D2;
}
.gallery-item:hover .gallery-icon {
  transform: translate(-50%, -50%) scale(1);
}

/*# sourceMappingURL=home.css.map */
