@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
  --primary-color: #ecad29;
  --text-color: #ffffffdd;
}

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

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

/* Hamburger menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 36px;
  background: transparent;
  z-index: 100;
}

nav.scrolled {
  background-color: rgba(26, 26, 26, 0.8);
  transition: background-color 0.3s ease;
}

nav .svg-container {
  width: 20px;
  height: 90px;
}

nav svg {
  width: 20px;
  height: 20px;
}

nav > div:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text-color);
}

nav #nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

nav #nav-links a {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 4px;
}

nav #nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Carousel */
.caro {
  background-color: #1a1a1a;
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
}

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-left: 40px;
  color: var(--text-color);
  pointer-events: none;
}

.content-start {
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background-color: var(--text-color);
  margin-bottom: -3%;
}

.content-place {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  width: 150px;
}

.content-title-1,
.content-title-2 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

/* Details Panes */
.details {
  position: absolute;
  top: 240px;
  left: 60px;
  z-index: 22;
}

.details .place-box {
  height: 46px;
  overflow: hidden;
}

.details .place-box .text {
  padding-top: 16px;
  font-size: 20px;
}

.details .place-box .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background-color: white;
}

.details .title-box-1,
.details .title-box-2 {
  margin-top: 2px;
  height: 100px;
  overflow: hidden;
}

.details .title-1,
.details .title-2 {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 600;
}

.details > .desc {
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.5;
}

.details > .cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.details > .cta .bookmark {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: grid;
  place-items: center;
}

.details > .cta .bookmark svg {
  width: 20px;
  height: 20px;
}

.details > .cta .discover {
  margin-left: 16px;
  padding: 4px 24px;
  height: 36px;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 99px;
  background: transparent;
  color: #fff;
}

/* Sliding Indicator */
.indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-color);
  z-index: 90;
}

/* Pagination */
.pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-40%);
  display: inline-flex;
  align-items: center;
  z-index: 90;
}

.pagination .arrow {
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff55;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff99;
  cursor: pointer;
}

.pagination .arrow + .arrow {
  margin-left: 20px;
}

.pagination .arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.progress-sub-container {
  margin: 0 24px;
  width: 500px;
  height: 3px;
  background: #ffffff33;
  border-radius: 2px;
  overflow: hidden;
}

.progress-sub-foreground {
  width: 0;
  height: 100%;
  background: var(--primary-color);
}

.slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  display: grid;
  place-items: center;
}

/* Cover (Loader) */
.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
}

/* About Us Section */
#about {
  background: #fff;
  padding: 50px 70px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1600px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-us-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-us-left {
  position: relative;
  flex: 1 1 45%;
  width: 100%;
}

.main-image {
  width: 100%;
  max-width: 450px;
  min-height: 200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}



.experience-box {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plus-signs span {
  position: absolute;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.05);
  user-select: none;
}

.plus-signs span:nth-child(1) { top: -10px; left: 10%; }
.plus-signs span:nth-child(2) { top: 30%; left: 90%; }
.plus-signs span:nth-child(3) { top: 80%; left: 40%; }

.about-us-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subheading {
  color: #888;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}

.main-title {
  font-size: 32px;
  line-height: 1.2;
  color: #1a3556;
  margin-bottom: 16px;
}

.description {
  color: #555;
  font-size: 16px;
  margin-bottom: 24px;
}

.bullet-points {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.bullet-points li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #444;
}

.bullet-points li::before {
  content: ".";
  position: absolute;
  left: 0;
  top: 0;
  
  font-size: 28px;
}

.call-to-action {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.phone-icon {
  font-size: 20px;
  margin-right: 12px;
  color: #333;
}

.contact-button {
  background: var(--primary-color);
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-button:hover {
  background: #d89c20;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #4682b4;
  align-self: flex-end;
}

/* Services Section */
.section-services {
  font-family: "Poppins", sans-serif;
  color: #202020;
  padding-top: 115px;
  padding-bottom: 120px;
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color); /* Matches navbar #ecad29 */
  border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  display: none; /* Remove secondary underline */
}

.section-services .header-section .description {
  font-size: 14px;
  color: #282828;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
}

.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #00A3B3; /* Teal for hover background */
  border: 6px solid var(--primary-color); /* Matches navbar #ecad29 */
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all .6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
  background-color: #00A3B3; /* Teal for hover background */
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #00A3B3; /* Teal for icon background */
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #00A3B3; /* Teal for icon color on hover */
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color .3s;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.section-services .single-service:hover a {
  color: #fff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary-color); /* Matches navbar #ecad29 */
  transition: background-color .3s;
}

.section-services .single-service:hover a:after {
  background-color: #fff;
}

/* Footer */
footer {
  width: 100%;
  background: #1a1a1a;
  color: var(--text-color);
  padding: 60px 20px 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  width: 120px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-links h3,
.footer-info h3,
.footer-contact h3 {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.footer-links ul,
.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-info a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.footer-links a:hover,
.footer-info a:hover {
  color: #fff;
}

.footer-links a::after,
.footer-info a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: width 0.25s;
}

.footer-links a:hover::after,
.footer-info a:hover::after {
  width: 100%;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ddd;
  transition: color 0.25s, transform 0.25s;
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  background: #1a1a1a;
  color: var(--text-color);
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  opacity: 0.6;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #333;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .caro {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
  .card,
  .card-content {
    display: none;
  }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  nav .svg-container img {
    margin-top: 85%;
    width: 100px;
  }
  .hamburger {
    display: block;
  }

  .footer-social{
    margin-left: 30%;
  }
  nav #nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  nav #nav-links.active {
    display: flex !important;
  }
  nav #nav-links a {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ffffff33;
  }
  nav #nav-links a:last-child {
    border-bottom: none;
  }
  .details {
    top: 100px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.9);
  }
  .details .place-box .text {
    font-size: 18px;
  }
  .details .title-1,
  .details .title-2 {
    font-size: 36px;
  }
  .details > .desc {
    font-size: 14px;
  }
  .pagination {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pagination .arrow {
    width: 40px;
    height: 40px;
  }
  .progress-sub-container {
    width: 200px;
    margin: 0;
  }
  .slide-numbers {
    font-size: 24px;
  }
  #about {
    padding: 40px 20px;
  }
  .about-us-container {
    flex-direction: column;
    gap: 24px;
  }
  .main-image {
    max-width: 100%;
  }
  .secondary-image {
    display: none;
  }
  .experience-box {
    position: relative;
    top: auto;
    left: auto;
    margin: 16px auto;
  }
  .signature {
    align-self: center;
  }
  footer {
    padding: 40px 10px 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand,
  .footer-links,
  .footer-info,
  .footer-contact {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 12px;
  }
  .footer-tagline {
    margin-bottom: 20px;
  }
  .footer-links ul,
  .footer-info ul {
    display: inline-block;
    text-align: left;
  }
}


/* ===========================
   KPI mini-cards (restyled)
   =========================== */
.kpi-cards .kpi {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #ececec;
  border-left: 4px solid var(--primary-color); /* accent strip */
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.kpi-cards .kpi i {
  flex: 0 0 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1a1a1a;
  /* circular ring that matches brand */
  box-shadow: inset 0 0 0 2px var(--primary-color);
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.kpi-cards .kpi .kpi-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  color: #202020;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.kpi-cards .kpi .kpi-sub {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.2;
}
.kpi-cards .kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  border-left-color: #00A3B3; /* teal on hover */
}
.kpi-cards .kpi:hover i {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: inset 0 0 0 0 var(--primary-color);
}

/* ===========================
   Industry chips (restyled)
   =========================== */
.industry-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.industry-chips li {
  position: relative;
  padding: 9px 16px 9px 26px; /* room for dot */
  border-radius: 999px;
  font-size: 13px;
  color: #202020;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.industry-chips li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translateY(-50%);
  transition: background .25s;
}
.industry-chips li:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--primary-color), #00A3B3);
  transform: translateY(-2px);
  border-color: transparent;
}
.industry-chips li:hover::before {
  background: #fff;
}

/* Equal height helper (keep) */
.single-service.h-100 { height: 100%; }

/* ===========================
   Section background accents
   =========================== */
/* Supply Chain section: soft radial accent + light gradient */
#supply-chain {
  background:
    radial-gradient(600px 220px at 90% 0%, rgba(236,173,41,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Industries section: subtle diagonal texture + faint tint */
#industries {
  position: relative;
  background:
    linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);

  border: 1px solid #ececec;
  border-left: 4px solid var(--primary-color); /* accent strip */
  border-radius: 12px;
}
#industries::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  opacity: .6;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .kpi-cards .kpi {
    padding: 14px 16px;
  }
  .kpi-cards .kpi i {
    flex-basis: 40px; height: 40px;
  }
  .kpi-cards .kpi .kpi-title { font-size: 16px; }
  .industry-chips li { font-size: 12px; padding: 8px 14px 8px 24px; }


}

/* Desktop fallback: keep nav visible */
@media (min-width: 769px) {
  nav #nav-links {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    position: static !important; /* reset mobile absolute positioning */
    background: transparent !important;
  }
  nav #nav-links a {
    border: none !important; /* remove the mobile separators */
  }
}


/* Reset nav-links for desktop (force them visible even if JS messed styles) */
@media (min-width: 769px) {
  nav #nav-links {
    display: inline-flex !important;  /* always visible in desktop */
    opacity: 1 !important;            /* override gsap fade-out */
    transform: none !important;       /* reset translate */
    position: static !important;      /* prevent absolute positioning */
    background: transparent !important;
    flex-direction: row !important;
  }
}