@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --primary: #0F172A;
  --secondary: #334155;
  --cta: #0369A1;
  --background: #F8FAFC;
  --text: #020617;
}

/* Fix horizontal overflow */
/* Ensure all sections don't overflow */
* {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700 !important;
}

.head-nav {
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  border-bottom: 5px solid #0369A1;
}
.head-nav .navbar-nav .menu-item.active .nav-link {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.head-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #000000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 5px solid #0369A1;
  z-index: 1000;
}

@media (min-width: 992px) {
  .head-nav {
    background-color: transparent;
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .head-nav {
    background-color: transparent;
    border-bottom: none;
    position: relative;
  }
  .head-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #000000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 5px solid #0369A1;
    z-index: 1000;
  }
}
.head-nav.navbar {
  z-index: 10;
}
.head-nav.navbar .navbar-logo {
  height: auto;
  width: 60px;
}
.head-nav.navbar .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
  color: #0369A1 !important;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #0369A1;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #0b5ed7;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: scale(0.95);
}

/* YouTube Video Banner Styling */
.banner-wrap {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  max-width: 100%;
  margin-top: -80px;
  background-image: url("../image/Header.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Viewport Header Overlay */
.viewport-header {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 100%;
}
.viewport-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.viewport-header h4 {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .banner-wrap {
    height: 80vh;
    min-height: 500px;
  }
  .viewport-header h1 {
    font-size: 2.5rem;
  }
  .viewport-header h4 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .banner-wrap {
    height: 70vh;
    min-height: 450px;
  }
  .viewport-header {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .viewport-header h1 {
    font-size: 2rem;
  }
  .viewport-header h4 {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .banner-wrap {
    height: 60vh;
    min-height: 400px;
  }
  .viewport-header {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .viewport-header h1 {
    font-size: 1.5rem;
  }
  .viewport-header h4 {
    font-size: 0.875rem;
  }
}
/* About Us Section Styles */
.img-hover {
  height: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.img-hover img {
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block;
  width: 100%;
}
.img-hover img:hover {
  transform: scale(1.05);
}

/* About Us Section */
.about-us {
  background-image: url("../image/pattern-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-us .section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cta);
  margin-bottom: 0.75rem;
}
.about-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.about-us .about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}
.about-us .about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.about-us .about-stats .stat-item {
  text-align: left;
}
.about-us .about-stats .stat-item h4 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cta);
  margin: 0;
  line-height: 1;
}
.about-us .about-stats .stat-item p {
  font-size: 0.95rem;
  color: var(--secondary);
  margin: 0.25rem 0 0;
}
.about-us .about-cta {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .about-us h2 {
    font-size: 1.75rem;
  }
  .about-us .about-content p {
    font-size: 1rem;
  }
  .about-us .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us .about-stats .stat-item {
    text-align: center;
  }
}
/* Professional Button Styles */
.btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.btn:active {
  transform: translateY(1px);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #0369A1 0%, #2563EB 100%);
  color: #ffffff;
  border-color: #0369A1;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}
.btn-primary:active {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, #64748B 0%, #475569 100%);
  color: #ffffff;
  border-color: #64748B;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}
.btn-secondary:active {
  background: linear-gradient(135deg, #334155 0%, #1E293B 100%);
}

/* Outline Button */
.btn-outline-primary {
  background: transparent;
  color: #0369A1;
  border-color: #0369A1;
  box-shadow: none;
}
.btn-outline-primary:hover {
  background: #0369A1;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}
.btn-outline-primary:active {
  background: #2563EB;
  border-color: #2563EB;
}

/* Outline Secondary Button */
.btn-outline-secondary {
  background: transparent;
  color: #64748B;
  border-color: #64748B;
  box-shadow: none;
}
.btn-outline-secondary:hover {
  background: #64748B;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
  transform: translateY(-2px);
}
.btn-outline-secondary:active {
  background: #475569;
  border-color: #475569;
}

/* Dark Button */
.btn-dark {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #ffffff;
  border-color: #1E293B;
}
.btn-dark:hover {
  background: linear-gradient(135deg, #0F172A 0%, #000000 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}
.btn-dark:active {
  background: #000000;
}

/* Light Button */
.btn-light {
  background: #ffffff;
  color: #1E293B;
  border-color: #E2E8F0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.btn-light:hover {
  background: #F8FAFC;
  color: #0369A1;
  border-color: #0369A1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.btn-light:active {
  background: #F1F5F9;
}

/* Outline Light Button */
.btn-outline-light {
  background: transparent;
  color: #F8FAFC;
  border-color: #F8FAFC;
  box-shadow: none;
}
.btn-outline-light:hover {
  background: #F8FAFC;
  color: #1E293B;
  box-shadow: 0 4px 12px rgba(248, 250, 252, 0.3);
  transform: translateY(-2px);
}
.btn-outline-light:active {
  background: #E2E8F0;
  border-color: #E2E8F0;
}

/* Button Sizes */
.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Button Block */
.btn-block {
  display: block;
  width: 100%;
}

/* Button Group */
.btn-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-group .btn {
  margin: 0;
}

/* Icon Button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-icon i, .btn-icon svg {
  width: 18px;
  height: 18px;
}

/* Rounded Button */
.btn-rounded {
  border-radius: 50px;
}

/* Button with Loading State */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}
.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive Button Adjustments */
@media (max-width: 768px) {
  .btn {
    padding: 10px 24px;
    font-size: 0.9375rem;
  }
  .btn-sm {
    padding: 7px 16px;
    font-size: 0.8125rem;
  }
  .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }
  .btn-xl {
    padding: 16px 36px;
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    width: 100%;
  }
}
/* Services Section Styles */
.services {
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.service-card {
  background: #172554;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
  border-color: #0369A1;
  background: #1e3a8a;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.15) 100%);
  transform: scale(1.05);
}
.service-card:hover h4 {
  color: #ffffff;
}
.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff !important;
  margin-bottom: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Responsive adjustments for services */
@media (max-width: 992px) {
  .service-card {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .service-icon {
    width: 64px;
    height: 64px;
  }
  .service-icon svg {
    width: 36px !important;
    height: 36px !important;
  }
  .service-card h4 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}
/* CTA Section Styles */
.cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  pointer-events: none;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.cta p {
  line-height: 1.8;
}
.cta .btn-light {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.cta .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  background: #0369A1;
  color: #ffffff;
  border-color: #0369A1;
}
.cta .btn-light:active {
  transform: translateY(-1px);
}

.cta-stat {
  padding: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.cta-stat:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}
.cta-stat:hover h3 {
  color: #0369A1;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.cta-stat h3 {
  font-size: 3rem;
  margin: 0;
  transition: all 0.3s ease;
}
.cta-stat p {
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive adjustments for CTA section */
@media (max-width: 992px) {
  .cta h2 {
    font-size: 2rem;
  }
  .cta .cta-stat h3 {
    font-size: 2.5rem;
  }
  .cta .cta-stat p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .cta h2 {
    font-size: 1.75rem;
    text-align: center;
  }
  .cta p {
    font-size: 1rem;
    text-align: center;
  }
  .cta .btn-light {
    width: 100%;
    margin-top: 1rem;
  }
  .cta .cta-stat {
    margin-bottom: 1.5rem !important;
  }
  .cta .cta-stat h3 {
    font-size: 2rem;
  }
  .cta .cta-stat p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .cta h2 {
    font-size: 1.5rem;
  }
  .cta .cta-stat h3 {
    font-size: 1.75rem;
  }
}
/* Partner Section Styles */
.partner-slider {
  padding: 20px 0;
}

.partner-logo-item {
  padding: 15px;
  outline: none;
}

.partner-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-logo-wrapper:hover {
  transform: translateY(-5px);
}

.partner-logo-wrapper img {
  max-height: 60px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Slick Slider Custom Styles */
.partner-slider {
  display: flex;
  align-items: center;
}

.partner-slider .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-slider .slick-slide:hover {
  border-color: #0369A1 !important;
}

.partner-slider .slick-slide img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-slider .slick-slide:hover img {
  transform: scale(1.1);
}

.partner-slider .slick-list {
  margin: 0 -10px;
}

.partner-slider .slick-dots {
  bottom: -40px;
}

.partner-slider .slick-dots li button:before {
  font-size: 12px;
  color: #0369A1;
}

.partner-slider .slick-dots li.slick-active button:before {
  color: #0369A1;
}

/* Slick Arrow Styles */
.partner-slider .slick-prev,
.partner-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.partner-slider .slick-prev {
  left: -50px;
}

.partner-slider .slick-next {
  right: -50px;
}

.partner-slider .slick-prev:before,
.partner-slider .slick-next:before {
  font-size: 40px;
  color: #0369A1;
}

@media (max-width: 768px) {
  .partner-logo-wrapper {
    height: 80px;
  }
  .partner-logo-wrapper img {
    max-height: 50px;
  }
  .partner-slider .slick-prev {
    left: -25px;
  }
  .partner-slider .slick-next {
    right: -25px;
  }
}
/* Product Solutions / Services Cards */
.product-solutions {
  background: var(--background);
}
.product-solutions h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.service-card-2 {
  background: #ffffff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.service-card-2 h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}
.service-card-2 p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--secondary);
  margin-bottom: 0;
}

.service-icon-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.1) 0%, rgba(3, 105, 161, 0.05) 100%);
  border-radius: 12px;
  flex-shrink: 0;
}
.service-icon-2 svg {
  width: 32px;
  height: 32px;
  color: var(--cta);
}

.solution-category {
  background: #ffffff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.solution-category:hover {
  border-color: var(--cta);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.15);
  transform: translateY(-4px);
}
.solution-category:hover .category-icon {
  transform: scale(1.1);
}
.solution-category .category-icon {
  transition: transform 0.3s ease;
}
.solution-category h4 {
  color: var(--primary);
  font-size: 1.1rem;
}
.solution-category .category-links li {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.solution-category .category-links li:last-child {
  border-bottom: none;
}

/* About Us Section - Paragraph Font Size */
.about-us {
  background-image: url("../image/pattern-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-us .container p {
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Fields of Application Section */
.fields-section {
  background: #f1f5f9;
}
.fields-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.field-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 100px;
}
.field-card .field-icon svg {
  transition: color 0.3s ease;
}
.field-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}
.field-card p {
  transition: color 0.3s ease;
}

/* Original Footer Styles */
footer .footer-top {
  background-color: #1a1a1a;
}
footer .footer-top a {
  text-decoration: none;
  color: #fff;
}
footer .footer-top a:hover {
  color: #0369A1 !important;
}
footer .footer-top .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
footer .footer-top .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
footer .footer-top .social-icon-link:hover {
  background-color: #1877F2;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}
footer .footer-top .social-icon-link:hover .social-icon {
  color: #ffffff;
  transform: scale(1.1);
}

/* Servinox-style Footer */
.site-footer {
  background-color: var(--primary);
}
.site-footer .footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
}
.site-footer h5 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer a {
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: var(--cta) !important;
}
.site-footer .social-icons {
  display: flex;
  gap: 12px;
}
.site-footer .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.site-footer .social-icon-link:hover {
  background-color: var(--cta);
  transform: translateY(-2px);
}
.site-footer .social-icon {
  color: #ffffff;
}

/* Product Solutions - Servinox Style */
.product-solutions {
  background: var(--background);
}
.product-solutions h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.service-card-new {
  background: #ffffff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.service-card-new:hover {
  border-color: var(--cta);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.15);
  transform: translateY(-4px);
}
.service-card-new:hover .service-icon-new {
  transform: scale(1.1);
  background: var(--cta);
}
.service-card-new:hover .service-icon-new svg {
  color: #ffffff;
}
.service-card-new h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}
.service-card-new p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-icon-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.1) 0%, rgba(3, 105, 161, 0.05) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.service-icon-new svg {
  color: var(--cta);
  transition: color 0.3s ease;
}

/* About Section */
.about-section {
  background-image: url("../image/pattern-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-section .years-badge {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about-section .years-badge .display-1 {
  color: var(--cta);
  line-height: 1;
}
.about-section .years-badge .years-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  line-height: 1.3;
}
.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary);
}

/* Partner Section - Improved Design */
.partner-section {
  background: var(--background);
}
.partner-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(3, 105, 161, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 120px;
  transition: all 0.3s ease;
}
.partner-logo-card img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.partner-logo-card:hover {
  border-color: var(--cta);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.15);
  transform: translateY(-4px);
}
.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* About Global Network Section */
.about-partners {
  background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%);
}
.about-partners h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}
.about-partners p {
  color: rgba(255, 255, 255, 0.7);
}

.partner-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.partner-item svg {
  color: #0369A1;
}
.partner-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.partner-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #0369A1;
  transform: translateY(-4px);
}

/* About Page Styles */
/* About Page */
.about-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #0f3460 100%);
  padding: 140px 0 40px;
  margin-top: -80px;
}
.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.about-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}
.about-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.about-hero .breadcrumb-item.active {
  color: #fff;
}
.about-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
}
.stat-box .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0369A1;
}
.stat-box .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-story {
  background: #F8FAFC;
}
.about-story h2 {
  font-size: 2rem;
  color: #0F172A;
}
.about-story h3 {
  font-size: 1.5rem;
  color: #0F172A;
}
.about-story p {
  color: #334155;
  line-height: 1.8;
}

.about-commitment {
  background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%);
}
.about-commitment h2 {
  color: #fff;
}

.commitment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
}
.commitment-card .commitment-icon {
  width: 50px;
  height: 50px;
  background: #0369A1;
  border-radius: 10px;
}
.commitment-card .commitment-icon svg {
  color: #fff;
}
.commitment-card h4 {
  color: #fff;
}
.commitment-card p {
  color: rgba(255, 255, 255, 0.7);
}

.about-certifications {
  background: #F8FAFC;
}
.about-certifications h2 {
  color: #0F172A;
}

.cert-logo {
  background: #fff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 8px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-logo span {
  color: #0F172A;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Capability Cards */
.capability-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(3, 105, 161, 0.15);
  transition: all 0.3s ease;
}
.capability-card h4 {
  color: #0369A1;
  display: flex;
  align-items: center;
}
.capability-card ul li {
  margin-bottom: 8px;
  color: #475569;
  line-height: 1.5;
}
.capability-card ul li:last-child {
  margin-bottom: 0;
}

/* Industry Badges */
.industry-badge {
  background: linear-gradient(135deg, #0369A1 0%, #0C4A6E 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.industry-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

/* About Image Hover */
.about-image-wrapper {
  overflow: hidden;
}
.about-image-wrapper img {
  transition: transform 0.4s ease;
}
.about-image-wrapper:hover img {
  transform: scale(1.1);
}

/* Header Tagline - Alert Style Moving Animation */
@media (min-width: 991.98px) {
  .navbar-logo {
    width: 100px !important;
  }
  .header-tagline-bar .header-tagline-text {
    font-size: 1rem !important;
  }
}
.header-tagline-bar {
  background: linear-gradient(90deg, #dc3545, #ffc107, #dc3545);
  background-size: 200% 100%;
  animation: alert-gradient 3s linear infinite;
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}
.header-tagline-bar .header-tagline-text {
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.header-tagline-bar .tagline-highlight {
  color: #fff;
  font-weight: 700;
  animation: blink 1s infinite;
  display: inline-block;
}

@keyframes alert-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
.ngg-galleryoverview.default-view .ngg-gallery-thumbnail a {
  border: 1px solid #636363;
}

.sl-overlay {
  background: #000000 !important;
  opacity: 0.8 !important;
}

.sl-wrapper .sl-navigation button, .sl-wrapper .sl-close {
  color: #fff !important;
}

/* Services Page Styles */
.services-section {
  background: var(--background);
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cta);
  margin-bottom: 0.75rem;
}

.capability-bg {
  background-image: url("../image/services-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.capability-bg ul.check-bullet {
  padding-left: 0 !important;
}
.capability-bg ul.check-bullet li {
  list-style: none;
  background-image: url("../image/check.png");
  background-repeat: no-repeat;
  background-position: 0 14%;
  padding-left: 20px;
  margin-bottom: 10px;
}

/* Cursor Pointer */
.cursor-pointer {
  cursor: pointer;
}
.cursor-pointer:hover {
  border-color: #0369A1;
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.15);
  transform: translateY(-4px);
}

/* Capability Icon */
.capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.1) 0%, rgba(3, 105, 161, 0.05) 100%);
  border-radius: 12px;
}

/* Field Icon */
.field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Page Styles */
.contact-info-wrapper {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--cta);
}
.contact-info-card h5 {
  color: var(--primary);
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}
.contact-info-card a {
  color: var(--secondary);
  transition: color 0.3s ease;
}
.contact-info-card a:hover {
  color: var(--cta);
}
.contact-info-card p {
  color: var(--secondary);
  line-height: 1.6;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cta) 0%, #0284c7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  color: #ffffff;
}

/* Contact Form Styling */
.wpcf7-form {
  padding: 0;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 0.2rem rgba(3, 105, 161, 0.15);
  outline: none;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .contact-info-wrapper {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .contact-info-card {
    margin-bottom: 1rem;
  }
}
/* About Page Additional Styles */
/* Experience Section - Clean Minimal */
.experience-gradient {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EFF6FF 100%);
}

.experience-minimal {
  padding: 2rem 0;
}
.experience-minimal .display-1 {
  color: #0369A1;
  letter-spacing: -2px;
}
.experience-minimal .lead {
  font-size: 1.15rem;
}

.experience-stat {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(3, 105, 161, 0.2);
  box-shadow: 0 8px 32px rgba(3, 105, 161, 0.1);
}

/* Industry Pills - Clean Look */
.industry-pill {
  background: #fff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 50px;
  padding: 12px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0F172A;
  transition: all 0.3s ease;
}
.industry-pill:hover {
  background: #0369A1;
  color: #fff;
  border-color: #0369A1;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
  transform: translateY(-2px);
}

.businessdata-bg {
  background-image: url("../image/about-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Business Data Cards */
.biz-card {
  background: #fff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
}
.biz-card .biz-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.1) 0%, rgba(3, 105, 161, 0.05) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.biz-card .biz-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
  margin-bottom: 6px;
}
.biz-card .biz-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
}
.biz-card .biz-detail {
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 6px;
}

/* Mission & Vision Cards - Dark Background */
.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.mission-card h3,
.vision-card h3 {
  color: #fff;
}
.mission-card p,
.vision-card p {
  color: rgba(255, 255, 255, 0.7);
}
.mission-card .mission-icon,
.mission-card .vision-icon,
.vision-card .mission-icon,
.vision-card .vision-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #0369A1;
  border-radius: 12px;
}
.mission-card .mission-icon svg,
.mission-card .vision-icon svg,
.vision-card .mission-icon svg,
.vision-card .vision-icon svg {
  color: #fff;
}

/* Objective Content */
.objective-content {
  background: #fff;
  border-left: 4px solid #0369A1;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Organizational Cards */
.org-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(3, 105, 161, 0.15);
}
.org-card .org-img-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 3px solid #0369A1;
  overflow: hidden;
  padding: 2px;
}
.org-card .org-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.org-card h5 {
  font-size: 0.95rem;
  color: #0F172A;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Worker Grid - 5 per row, 2 rows */
.worker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .worker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .worker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.worker-card-simple {
  background: #fff;
  border: 1px solid rgba(3, 105, 161, 0.15);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
}
.worker-card-simple .worker-count {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0369A1;
  line-height: 1;
  margin-bottom: 8px;
}
.worker-card-simple .worker-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
}

/* Stat Cards - Counter Numbers Only */
.stat-card-simple .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-simple .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #bdbdbd;
  line-height: 1.3;
}

/* Stat Detail */
.stat-detail {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* Cert Label & Detail */
.cert-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
  margin-bottom: 0.25rem;
}

.cert-detail {
  display: block;
  font-size: 0.65rem;
  color: #64748B;
  margin-top: 0.25rem;
}

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