* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1410px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background-color: #005299;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: bold;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero .description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Section Styles */
.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 2rem;
  color: #005299;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Highlighted Sections (前三個板塊) */
.highlighted-section .content {
  background-color: #f8f9fa;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 30px;
  margin: 0 auto;
}

.highlighted-section .content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

/* Special styling for stock coins section - horizontal layout */
.stock-coins-section .content ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-between;
  overflow-x: auto;
}

.stock-coins-section .content li {
  background-color: white;
  color: #000;
  padding: 15px 20px;
  border: 2px solid #000;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
}

.stock-coins-section .content li:hover {
  background-color: #005299;
  color: white;
  border-color: #005299;
}

/* Container divider line */
.container-with-divider::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #005299, transparent);
  margin: 30px 0;
}

/* Section divider line */
.section-divider {
  width: 40px;

  height: 2px;
  background: white;
  margin: 10px auto;
  border: none;
}

.highlighted-section .content li {
  background-color: white;
  color: #000;
  padding: 15px 20px;
  border: 2px solid #000;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.highlighted-section .content li:hover {
  background-color: #005299;
  color: white;
  border-color: #005299;
}

/* Regular Section */
.regular-section .content {
  background-color: #005299;
  color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.regular-section .content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.regular-section .content li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.regular-section .content li:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Service Features Section */
.service-features-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.service-features-section h2 {
  font-size: 2.5rem;
  color: #005299;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-feature-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 82, 153, 0.1);
  border: 2px solid #005299;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 82, 153, 0.15);
  border-color: #007acc;
}

.service-feature-card h3 {
  font-size: 1.5rem;
  color: #005299;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.service-feature-card p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

.team-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.team-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.team-qualifications {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
  text-align: center;
}

.qualifications-title {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.qualifications-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.qualification-item {
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.qualification-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #005299;
}

.testimonials-description {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.flag-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.flag-germany {
  background-image: url("https://flagcdn.com/w80/de.png");
}

.flag-usa {
  background-image: url("https://flagcdn.com/w80/us.png");
}

.flag-japan {
  background-image: url("https://flagcdn.com/w80/jp.png");
}

.flag-spain {
  background-image: url("https://flagcdn.com/w80/es.png");
}

.flag-uk {
  background-image: url("https://flagcdn.com/w80/gb.png");
}

.flag-korea {
  background-image: url("https://flagcdn.com/w80/kr.png");
}

.flag-india {
  background-image: url("https://flagcdn.com/w80/in.png");
}

.flag-malaysia {
  background-image: url("https://flagcdn.com/w80/my.png");
}

.flag-singapore {
  background-image: url("https://flagcdn.com/w80/sg.png");
}

.flag-global {
  background-image: url("https://flagcdn.com/w80/un.png");
}

.flag-europe {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/80px-Flag_of_Europe.svg.png");
}

.flag-switzerland {
  background-image: url("https://flagcdn.com/w80/ch.png");
}

.flag-canada {
  background-image: url("https://flagcdn.com/w80/ca.png");
}

.flag-australia {
  background-image: url("https://flagcdn.com/w80/au.png");
}

.flag-netherlands {
  background-image: url("https://flagcdn.com/w80/nl.png");
}

.flag-france {
  background-image: url("https://flagcdn.com/w80/fr.png");
}

.flag-sweden {
  background-image: url("https://flagcdn.com/w80/se.png");
}

.flag-israel {
  background-image: url("https://flagcdn.com/w80/il.png");
}

.flag-ireland {
  background-image: url("https://flagcdn.com/w80/ie.png");
}

.flag-dubai {
  background-image: url("https://flagcdn.com/w80/ae.png");
}

.flag-denmark {
  background-image: url("https://flagcdn.com/w80/dk.png");
}

.flag-italy {
  background-image: url("https://flagcdn.com/w80/it.png");
}

.flag-brazil {
  background-image: url("https://flagcdn.com/w80/br.png");
}

.flag-monaco {
  background-image: url("https://flagcdn.com/w80/mc.png");
}

.core-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.leader-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #005299;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.leader-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.1) 0%,
    rgba(255, 215, 0, 0.1) 100%
  );
  border-radius: 50%;
}

.avatar-business {
  background-image: url("img/user/4.png");
}

.avatar-marketing {
  background-image: url("img/user/5.png");
}

.avatar-manager {
  background-image: url("img/user/6.png");
}

.team-scale {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
}

.scale-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .highlighted-section .content ul {
    grid-template-columns: 1fr;
  }

  /* Mobile responsive for stock coins section */
  .stock-coins-section .content ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stock-coins-section .content li {
    min-width: 100px;
    flex: 1 1 auto;
  }

  .container {
    padding: 0 15px;
  }

  .container-with-divider::after {
    margin: 20px 0;
  }

  .section-divider {
    height: 1px;
  }

  .section {
    padding: 30px 0;
  }
}

/* Accounts Section Styles */
#accounts {
  background-color: #f8f9fa;
  padding: 80px 0;
}

#accounts .section-heading {
  color: #005299;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 82, 153, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #005299;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 82, 153, 0.15);
}

.service-card h3 {
  display: flex;
  align-items: flex-start;
  font-size: 1.3rem;
  color: #005299;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* SVG Icon Styles */
.service-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: text-top;
  fill: #005299;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Service Scope Container */
.service-scope-container {
  margin-top: 40px;
}

.service-category {
  margin-bottom: 30px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-tag {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-tag.expert {
  background-color: #005299;
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.industry-tag.focus {
  background-color: #e3f2fd;
  color: #005299;
  border: 1px solid #005299;
}

.industry-tag.focus:hover {
  background-color: #005299;
  color: white;
}

.industry-tag.professional {
  background-color: #fff;
  color: #005299;
  border: 1px solid #ddd;
}

.industry-tag.professional:hover {
  background-color: #005299;
  color: white;
  border-color: #005299;
}

/* Mobile Responsive for Accounts Section */
@media (max-width: 768px) {
  #accounts {
    padding: 50px 0;
  }

  #accounts .section-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .industry-tags {
    justify-content: flex-start;
  }

  .industry-tag {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .service-features-section h2 {
    font-size: 2rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .service-feature-card {
    padding: 25px;
  }

  .service-feature-card h3 {
    font-size: 1.3rem;
  }
}

/* Testimonials Section Styles */
#testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#testimonials .section-heading {
  color: #005299;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.testimonials-description {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Swiper Container */
.reviews-swiper {
  width: 100%;
  padding: 20px 0 60px;
}

.swiper-wrapper {
  padding-bottom: 20px;
}

/* Review Card Styles */
.review-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  height: auto;
  width: 100%;
  max-width: none;
  box-shadow: 0 8px 32px rgba(0, 82, 153, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
}

.review-card:hover {
  border-color: #005299;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 82, 153, 0.15);
}

.review-header {
  margin-bottom: 30px;
  text-align: center;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.review-tag {
  background: linear-gradient(135deg, #005299, #007acc);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

.review-content {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review-content::before {
  content: '"';
  font-size: 3rem;
  color: #005299;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.client-info {
  text-align: center;
}

.client-info h4 {
  color: #005299;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.client-info p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #005299 !important;
  background: white !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px !important;
  box-shadow: 0 4px 12px rgba(0, 82, 153, 0.2) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
  position: absolute !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #005299;
  color: white !important;
  transform: scale(1.1);
}

.swiper-button-disabled {
  opacity: 0.5 !important;
  visibility: visible !important;
  display: block !important;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 10px !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #ccc !important;
  opacity: 0.5 !important;
  transition: all 0.3s ease !important;
  visibility: visible !important;
  display: inline-block !important;
}

.swiper-pagination-bullet-active {
  background: #005299 !important;
  opacity: 1 !important;
  transform: scale(1.2) !important;
  visibility: visible !important;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
  #testimonials {
    padding: 50px 0;
  }

  #testimonials .section-heading {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .testimonials-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .review-card {
    padding: 30px 25px;
    margin: 0;
  }

  .review-content {
    font-size: 1.1rem;
    max-width: none;
  }

  .client-info h4 {
    font-size: 1.2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    margin-top: -18px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 25px 20px;
    margin: 0;
  }

  .review-header {
    margin-bottom: 25px;
  }

  .review-tags {
    gap: 8px;
    margin-bottom: 15px;
  }

  .review-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .review-content {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: none;
  }

  .review-content::before {
    font-size: 2.5rem;
    top: -5px;
    left: -5px;
  }

  .client-info h4 {
    font-size: 1.1rem;
  }

  .client-info p {
    font-size: 0.9rem;
  }
}

/* Portfolio/Cases Section */
.content-section {
  padding: 60px 0;
}

.white-bg {
  background-color: #fff;
}

.main-wrapper {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  font-size: 2.5rem;
  color: #005299;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.portfolio-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
}

.portfolio-showcase {
  margin: 0 auto;
}

.portfolio-category {
  margin-bottom: 60px;
}

.category-header {
  font-size: 1.8rem;
  color: #005299;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.category-description {
  text-align: center;
  font-size: 1rem;
  color: #888;
  margin-bottom: 40px;
  font-style: italic;
}

.portfolio-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.portfolio-item {
  text-align: center;
}

.portfolio-image {
  width: 100%;
  height: 650px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 3px solid #005299;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 82, 153, 0.2);
  border-color: #007acc;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 82, 153, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-image:hover .portfolio-overlay {
  opacity: 1;
}

.magnify-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.magnify-icon svg {
  width: 100%;
  height: 100%;
}

.portfolio-overlay p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.portfolio-title {
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* Modal styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close-modal:hover {
  color: #007acc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }

  .section-heading {
    font-size: 2rem;
  }

  .category-header {
    font-size: 1.5rem;
  }

  .portfolio-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-image {
    height: 580px;
  }

  .main-wrapper {
    padding: 0 15px;
  }

  .modal-content {
    padding: 10px;
  }

  .close-modal {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .screening-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-services {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .hero-markets-title {
    font-size: 1.1rem;
  }

  .screening-title {
    font-size: 1rem;
  }

  .google-title {
    font-size: 1.1rem;
  }

  .google-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .service-box {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .guarantee-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .floating-contact {
    right: 15px;
    bottom: 130px;
    gap: 10px;
  }

  .floating-main-btn {
    width: 50px;
    height: 50px;
  }

  .floating-main-tooltip {
    font-size: 11px;
    padding: 5px 8px;
    right: 60px;
  }

  .floating-contact::before {
    font-size: 11px;
    padding: 10px 14px;
    right: 65px;
    min-width: 160px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
  }

  .floating-btn svg {
    width: 24px;
    height: 24px;
  }

  .floating-tooltip {
    right: 60px;
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-separator {
    display: none;
  }
}

.leader-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.leader-title {
  font-size: 1rem;
  color: #005299;
  margin-bottom: 1rem;
  font-weight: 600;
}

.leader-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team-scale {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .scale-item {
    padding: 1rem;
  }

  .scale-number {
    font-size: 2rem;
  }

  .core-team {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .leader-card {
    padding: 1.5rem;
  }

  .leader-avatar {
    width: 60px;
    height: 60px;
  }

  .leader-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .team-scale {
    grid-template-columns: 1fr;
  }

  .scale-number {
    font-size: 1.8rem;
  }

  .leader-card {
    padding: 1rem;
  }

  .leader-avatar {
    width: 50px;
    height: 50px;
  }

  .hero-decoration {
    width: 60px;
    height: 60px;
    left: 5%;
  }

  .hero-decoration-2 {
    width: 50px;
    height: 50px;
    right: 8%;
  }

  .hero-decoration-3 {
    width: 40px;
    height: 40px;
    right: 20%;
  }
}

/* Header Styles */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 82, 153, 0.1);
  border-bottom: 2px solid #005299;
}

.brand-identity {
  display: flex;
  align-items: center;
}

.brand-identity img {
  height:80px;
  width: auto;
}

nav.main-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 1px 20px;
  gap: 20px;
}

.navigation-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.navigation-menu a {
  color: #005299;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navigation-menu a:hover {
  color: #007acc;
}

.navigation-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #007acc;
  transition: width 0.3s ease;
}

.navigation-menu a:hover::after {
  width: 100%;
}

.language-switcher {
  justify-self: end;
  margin: 0;
}

.language-dropdown {
  border: 2px solid #005299;
  border-radius: 6px;
  padding: 8px 12px;
  background: white;
  color: #005299;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-dropdown:hover {
  background: #005299;
  color: white;
}

.hamburger-button {
  display: none;
  background: none;
  border: none;
  color: #005299;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #005299 0%, #003d73 100%);
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  text-align: center;
}

.footer-info {
  margin-bottom: 30px;
}

.footer-info div {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-info div:first-child {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-copyright a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: white;
  text-decoration: underline;
}

/* Guarantee Section Styles (id="process") */
.guarantee-section {
  text-align: center;
  padding: 40px 0;
}

.guarantee-items {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-top: 50px;

  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  background: linear-gradient(135deg, #005299, #007acc);
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 82, 153, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guarantee-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.guarantee-item:hover::before {
  opacity: 1;
  top: -100%;
  left: -100%;
}

.guarantee-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 82, 153, 0.3);
}

.guarantee-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navigation-menu {
    display: none;
  }

  .hamburger-button {
    display: block;
    justify-self: center;
  }

  nav.main-wrapper {
    padding: 12px 15px;
    grid-template-columns: 1fr auto 1fr;
  }

  .language-switcher {
    justify-self: end;
  }

  .brand-identity img {
    height: 40px;
  }

  footer {
    padding: 30px 0 15px;
    margin-top: 40px;
  }

  .footer-info div {
    font-size: 1rem;
  }

  .footer-info div:first-child {
    font-size: 1.1rem;
  }

  .guarantee-items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .guarantee-item {
    padding: 30px 25px;
  }

  .guarantee-item h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  nav.main-wrapper {
    padding: 10px 15px;
    grid-template-columns: 1fr auto 1fr;
  }

  .brand-identity img {
    height: 35px;
  }

  .guarantee-item {
    padding: 25px 20px;
  }

  .guarantee-item h3 {
    font-size: 1rem;
  }
}

/* Floating Contact Panel Styles */
.floating-contact {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.floating-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-contact.active .floating-contact-items {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: all;
}

.floating-btn-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  /* overflow: hidden; */
}

.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
  opacity: 1;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Telegram Button */
.tg-btn {
  background: linear-gradient(135deg, #0088cc, #00a6d6);
  color: white;
}

.tg-btn:hover {
  background: linear-gradient(135deg, #006699, #0088cc);
}

/* WhatsApp Button */
.ws-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.ws-btn:hover {
  background: linear-gradient(135deg, #1da851, #25d366);
}

/* Main Contact Button */
.floating-main-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.floating-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005299, #007acc);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 82, 153, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  /* overflow: hidden; */
}

.floating-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-main-btn:hover::before {
  opacity: 1;
}

.floating-main-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 82, 153, 0.4);
}

.floating-main-btn.active {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #007acc, #005299);
}

/* Tooltips */
.floating-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-btn-container:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

.floating-main-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.floating-main-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-main-container:hover .floating-main-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

/* Responsive Design for Floating Contact */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 130px;
    right: 15px;
    gap: 12px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
  }

  .floating-main-btn {
    width: 55px;
    height: 55px;
  }

  .floating-tooltip,
  .floating-main-tooltip {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .floating-tooltip::after,
  .floating-main-tooltip::after {
    border-width: 5px;
  }

  .floating-btn-container:hover .floating-tooltip {
    right: 60px;
  }

  .floating-main-container:hover .floating-main-tooltip {
    right: 70px;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    bottom: 130px;
    right: 10px;
    gap: 10px;
  }

  .floating-btn {
    width: 40px;
    height: 40px;
  }

  .floating-main-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-main-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Cookie Notice Styles */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(51, 51, 51, 0.95));
  color: white;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border-top: 2px solid #005299;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-notice-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-notice-text a {
  color: #007acc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-notice-text a:hover {
  color: #ffd700;
}

.cookie-notice-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #005299, #007acc);
  color: white;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #007acc, #0099e6);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 82, 153, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}

.cookie-btn-decline:hover {
  color: white;
  border-color: #999;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings-btn {
  background: transparent;
  color: #007acc;
  border: 1px solid #007acc;
}

.cookie-settings-btn:hover {
  background: #007acc;
  color: white;
}

/* Mobile Responsive for Cookie Notice */
@media (max-width: 768px) {
  .cookie-notice {
    padding: 15px;
  }

  .cookie-notice-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-notice-text {
    font-size: 0.9rem;
  }

  .cookie-notice-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cookie-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .cookie-notice {
    padding: 12px;
  }

  .cookie-notice-text {
    font-size: 0.85rem;
  }

  .cookie-notice-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
  }
}

/* Cookie Settings Modal Styles */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-settings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cookie-settings-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  padding: 30px;
}

.cookie-settings-content h3 {
  color: #005299;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.cookie-settings-content > p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #005299;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category-header strong {
  color: #333;
  font-size: 1rem;
}

.cookie-required {
  background: #005299;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: #005299;
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-category p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.cookie-settings-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Mobile Responsive for Cookie Settings */
@media (max-width: 768px) {
  .cookie-settings-modal {
    padding: 15px;
  }

  .cookie-settings-content {
    padding: 25px 20px;
    max-height: 85vh;
  }

  .cookie-settings-content h3 {
    font-size: 1.3rem;
  }

  .cookie-category {
    padding: 12px;
  }

  .cookie-settings-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-settings-actions .cookie-btn {
    width: 100%;
  }
}
.portfolio-bg-1{
  background-image: url(img/case/1.jpg);
}
.portfolio-bg-2{
  background-image: url(img/case/2.jpg);
}
.portfolio-bg-3{
  background-image: url(img/case/3.jpg);
}
.portfolio-bg-4{
  background-image: url(img/case/4.jpg);
}
.portfolio-bg-5{
  background-image: url(img/case/5.jpg);
}
.portfolio-bg-6{
  background-image: url(img/case/6.jpg);
}
