:root {
  --primary-navy: #5271FF;
  --action-blue: #0099FF;
  --nav-blue: #5271FF;
  --soft-blue-tag: #E1F5FE;
  --light-grey-bg: #F4F7F9;
  --text-dark: #333333;
  --gradient-from: #2867e9;
  --gradient-to: #5bb6fa;
  --light-blue: #cbe0fb;
  --transition-speed: 0.3s;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

.h2 {
  font-weight: 800;
}

.cta-button a {
  text-decoration-line: none;
  color: var(--light-grey-bg);
}

.nav-btn {
  text-decoration-line: none;
  background-color: #f1f1f1;
  color: var(--text-dark);
  border: none;
}

.nav-btn a {
  text-decoration-line: none;
  color: var(--text-dark);
}

.a {
  text-decoration: none;
}

/* Top Utility Bar */
.top-utility-bar {
  background-color: #efefef;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.social-icons a {
  color: #666;
  margin-left: 15px;
  transition: color var(--transition-speed);
}

.social-icons a:hover {
  color: var(--action-blue);
}

/* Header */
.main-header {
  padding: 24px 0;
  background: #fff;
}

.contact-info-top {
  font-size: 1rem;
}

.lang-toggle {
  font-weight: 500;
  text-decoration: none;
  color: var(--text-dark);
}

/* Navigation */
.navbar-custom {
  background-color: var(--nav-blue);
  padding: 0;
  border-radius: 5px;
}

.navbar-custom .nav-link {
  color: white !important;
  padding: 15px 25px !important;
  font-weight: 500;
  transition: background var(--transition-speed);
}

.navbar-custom .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
  top: -24px;
  margin-bottom: -40px;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('../../img/top-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  color: white;
}

.badge-insight {
  background-color: var(--soft-blue-tag);
  color: var(--action-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

/* Feature Cards */
.feature-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
}

.feature-scroll-container::-webkit-scrollbar {
  display: show;
}

.feature-card {
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Service Arc */
.service-arc-container {
  position: relative;
  height: 450px;
  margin-top: 50px;
}

.arc-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.arc-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.arc-icon.active {
  background: var(--action-blue);
  border-color: var(--action-blue);
  color: white;
  transform: scale(1.2);
  box-shadow: 0 10px 20px rgba(0, 153, 255, 0.3);
}

.arc-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 300px;
}

.service-arc-section {
  background: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.arc-bg {
  background: url('../../img/services-bg.jpg') no-repeat center center;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Stats */
.stat-card {
  border: 8px solid var(--light-blue);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h3 {
  color: var(--action-blue);
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0;
}

/* Dark Banner */
.dark-banner-section {
  height: 502px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #fff;
}

.dark-banner-section > .container,
.dark-banner-section {
  position: relative;
  z-index: 2;
}

.testimonial-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 3px solid var(--lightblue);
  margin-bottom: 6px;
}

/* Footer */
.footer-top {
  background-color: #e7e7e7;
  color: var(--text-dark);
  padding: 80px 0;
}

.footer-bottom {
  background-color: #111;
  padding: 30px 0;
  color: var(--light-grey-bg);
  font-size: 0.9rem;
}

.footer-bottom a {
  text-decoration-line: none;
  color: var(--light-grey-bg);
}

.copyright {
  color: #666;
}

.back-to-top {
  width: 50px;
  height: 50px;
  background: var(--primary-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -105px auto 55px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

/* About */
.about-section {
  top: -35px;
  margin-bottom: -40px;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('../../img/about-us_overlay.jpg') no-repeat center center;
  background-size: cover;
  height: 240px;
  display: flex;
  align-items: center;
  color: white;
}

.section-breadcrumb-content {
  z-index: 1;
  position: relative;
}

.section-breadcrumb-content .section-breadcrumb-item li {
  display: inline-block;
  padding: 0px 20px;
  position: relative;
  list-style-type: none;
}

.section-breadcrumb-item a {
  text-decoration: none;
  color: white;
}

/* Service */
.service-banner-section {
  top: -35px;
  margin-bottom: -40px;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('../../img/about-us_overlay.jpg') no-repeat center center;
  background-size: cover;
  height: 240px;
  display: flex;
  align-items: center;
  color: white;
}

.service-section {
  padding: 80px 0;
}

.service-title-main {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-subtitle {
  color: #666;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.service-menu-item {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  background: #EDF3F9;
  border-radius: 8px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-menu-item i {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #3b5998;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-menu-item:hover,
.service-menu-item.active {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.service-menu-item.active {
  color: var(--action-blue);
  border-color: #eee;
}

.service-detail-img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  height: 450px;
  margin-bottom: 30px;
}

.service-detail-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.service-detail-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
}

.feature-list li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 8px;
  color: #999;
}

/* FAQs */
.faq-banner-section {
  top: -35px;
  margin-bottom: -40px;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('../../img/faq_overlay.jpg') no-repeat center center;
  background-size: cover;
  height: 240px;
  display: flex;
  align-items: center;
  color: white;
}

/* Contact */
.contact-banner-section {
  top: -35px;
  margin-bottom: -40px;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('../../img/faq_overlay.jpg') no-repeat center center;
  background-size: cover;
  height: 240px;
  display: flex;
  align-items: center;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {

  .service-arc-container {
    height: auto;
    margin-top: 30px;
  }

  .arc-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
    position: static;
    height: auto;
  }

  .arc-icon {
    position: static;
    margin: 0 auto;
    width: 82px;
    height: 82px;
  }

  .arc-center-content {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    text-align: center !important;
  }

  .arc-center-content h3,
  .arc-center-content p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .arc-center-content .cta-button {
    display: inline-block;
    width: auto;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .navbar-custom {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .navbar-custom > .container {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .navbar-custom .navbar-toggler {
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 10px 12px;
  }

  .navbar-custom .navbar-collapse {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .navbar-custom .navbar-nav {
    padding-top: 8px !important;
    padding-bottom: 12px !important;
  }

  .navbar-custom .nav-link {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .navbar-custom .nav-btn {
    margin-top: 10px;
    margin-bottom: 22px;
    margin-left: 10px !important;
  }
}