/* 
   ROOT VARS & GLOBAL
 */
:root {
  --midnight: #0f172a;
  --midnight-light: #1e293b;
  --slate: #334155;
  --gray: #94a3b8;
  --light-gray: #e2e8f0;
  --bg-light: #f1f5f9;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif, "Prompt", sans-serif;
  overflow-x: hidden;
}

.bg-transparent::placeholder {
  color: var(--white);
}

/* 
   TOP BAR 
   */

.topbar {
  background: var(--midnight);
  padding: 9px 0;
  font-size: 13px;
}

.topbar .inner {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.topbar a {
  color: var(--white);
  transition: 0.25s;
}
.topbar a:hover {
  color: var(--orange);
}

.topbar .social-icons a {
  margin-right: 12px;
  font-size: 16px;
}

.topbar .auth-links a {
  margin-left: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 3px 12px;
  border-radius: 20px;
  transition: 0.25s;
}
.topbar .auth-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* 
   NAVBAR
 */
.navbar {
  background: var(--midnight) !important;
  padding: 0;
  min-height: 68px;
}

.navbar-brand {
  border-radius: 5px;
  padding: 0px 14px;
  line-height: 1;
  transition: 0.3s;
}

.navbar-brand img {
  height: 50px;
  display: block;
  transition: 0.3s;
}
.navbar-brand:hover img {
  transform: scale(1.04);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 22px 14px !important;
  position: relative;
  transition: 0.25s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
}
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 6px;
}

.dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  padding: 9px 14px;
  transition: 0.2s;
}
.dropdown-item:hover {
  background: var(--midnight);
  color: var(--white);
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 13px;
  padding: 5px 14px;
  transition: 0.25s;
}
.lang-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.dropdown-toggle::after {
  border-top: none !important;
}

/* 
   HERO
 */
.about-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero .badge-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero h1 span {
  color: var(--orange);
}

.about-hero p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

.about-hero .about-img-wrap {
  position: relative;
}

.about-hero .about-img-wrap img {
  border-radius: 24px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.about-hero .img-badge {
  position: absolute;
  bottom: -18px;
  left: 30px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-hero {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}
.btn-hero:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
}

/* 
   STATS ROW
 */
.stats-row {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--light-gray);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--light-gray);
}
.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-item .label {
  font-size: 13px;
  color: var(--slate);
  margin-top: 6px;
  font-weight: 500;
}

/* 
   COMPANY HISTORY
 */
.company-history {
  background: var(--midnight);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

/* subtle diagonal glow */
.company-history::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
}

.section-heading {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  letter-spacing: -1px;
}

.section-heading span.accent {
  color: var(--orange);
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 4px;
  margin: 14px auto 0;
}

.company-intro {
  max-width: 1080px;
  margin: 0 auto 90px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.9;
  color: var(--gray);
  max-width: 820px;
  margin: 0 auto 50px;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 44px 36px;
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--orange);
  text-align: center;
  transition: 0.4s;
}
.mv-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(249, 115, 22, 0.25);
}

.mv-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
}

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.timeline-line {
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #f97316aa, var(--orange));
  border-radius: 10px;
  z-index: 1;
  animation: lineGlow 2.5s infinite alternate;
}

.timeline-line span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--midnight);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
  animation: dotPulse 2s infinite;
}
.timeline-line span:nth-child(1) {
  left: 10%;
}
.timeline-line span:nth-child(2) {
  left: 30%;
}
.timeline-line span:nth-child(3) {
  left: 50%;
}
.timeline-line span:nth-child(4) {
  left: 70%;
}
.timeline-line span:nth-child(5) {
  left: 90%;
}

.history-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 22px;
  padding: 26px 20px;
  min-height: 170px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  backdrop-filter: blur(8px);
}
.history-card:hover {
  transform: translateY(-12px);
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(249, 115, 22, 0.2);
}

.history-card .year-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.history-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.history-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray);
}

.top {
  margin-bottom: 130px;
}
.bottom {
  margin-top: 130px;
}

/* decoration */
.plus {
  position: absolute;
  color: var(--orange);
  font-size: 180px;
  opacity: 0.06;
  animation: rotatePlus 10s linear infinite;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.plus-1 {
  left: 50px;
  top: 140px;
}
.plus-2 {
  right: 120px;
  top: 100px;
}
.plus-3 {
  right: 80px;
  top: 350px;
  font-size: 80px;
}

/* 
   PRODUCTS & SERVICES
 */
.products-section {
  background: var(--midnight-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 30%, rgba(249, 115, 22, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 85% 70%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
}

.brand-slider-wrapper {
  position: relative;
  padding: 0 56px;
}

.brand-slider-track-wrap {
  overflow: hidden;
}

.brand-flow {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.brand-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}
.brand-slider-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-50%) scale(1.1);
}
.brand-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.brand-prev {
  left: 0;
}
.brand-next {
  right: 0;
}

.brand-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.brand-dot.active {
  background: var(--orange);
  width: 28px;
}

.brand-item {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  transition: transform 0.4s;
}
.brand-item:hover {
  transform: translateY(-14px);
}

.brand-logo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -18px;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(8px);
  transition: 0.4s;
}
.brand-item:hover .brand-logo {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: 0.4s;
  filter: brightness(1.1) contrast(1.05);
}
.brand-item:hover .brand-logo img {
  transform: scale(1.07) rotate(-2deg);
}

.aptiv-logo {
  background: rgba(17, 17, 17, 0.7);
}

.product-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 44px 26px 34px;
  color: var(--white);
  min-height: 360px;
  transition: 0.4s;
  backdrop-filter: blur(8px);
}
.brand-item:hover .product-box {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.product-box h4 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--orange);
  letter-spacing: 0.5px;
}

.product-box ul {
  padding-left: 18px;
  margin: 0;
}
.product-box li {
  font-size: 14.5px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--gray);
}

/* 
   BUSINESS FLOW DIAGRAM
 */
.business-flow {
  background-color: var(--midnight);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.business-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
}

.diagram-wrapper {
  width: min(900px, 100%);
  height: 640px;
  margin: auto;
  position: relative;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: var(--midnight-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow:
    0 0 0 16px rgba(249, 115, 22, 0.08),
    0 0 40px rgba(249, 115, 22, 0.15);
}

.circle-logo img {
  max-width: 180px;
  border-radius: 50%;
  object-fit: contain;
}

.node {
  position: absolute;
  width: 260px;
  text-align: center;
}
.node h3 {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.content-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px 28px;
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.5;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: 0.35s;
}
.content-box:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.node-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.node-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.node-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.arrow {
  position: absolute;
  color: var(--orange);
  font-size: 54px;
  animation: arrowPulse 2s infinite;
  z-index: 3;
  opacity: 0.7;
}
.arrow-top {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
.arrow-left {
  left: 262px;
  top: 50%;
  transform: translateY(-50%);
}
.arrow-right {
  right: 262px;
  top: 50%;
  transform: translateY(-50%);
}

/* 
   ABOUT SPLIT SECTIONS
 */
.about-split {
  padding: 90px 0;
  background: var(--white);
}
.about-split.alt {
  background: var(--bg-light);
}

.about-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: 0.5s;
}
.about-img:hover img {
  transform: scale(1.04);
}

.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.1), transparent);
  pointer-events: none;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-text h2 span {
  color: var(--orange);
}

.about-text p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.btn-about {
  display: inline-block;
  background: var(--midnight);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.btn-about:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.35);
}

/* 
   FAQ + CONTACT
 */
.faq-contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.faq-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
}

.faq-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-gray);
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  background: var(--bg-light);
  border: none;
  text-align: left;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--midnight-light);
  cursor: pointer;
  transition: 0.25s;
  position: relative;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 16px;
  font-size: 30px;
  top: 3px;
  color: var(--orange);
}
.faq-question.open::after {
  content: "−";
}
.faq-question:hover {
  background: #e2e8f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease,
    opacity 0.35s ease;
  padding: 0 18px;
  opacity: 0;
}
.faq-answer.open {
  max-height: 200px;
  padding: 12px 18px 10px;
  opacity: 1;
}
.faq-answer p {
  font-size: 14px;
  color: var(--slate);
  margin: 0;
  line-height: 1.7;
}

.contact-box {
  background: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.contact-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-gray);
}

.contact-box p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 10px;
}

.btn-contact {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  transition: 0.3s;
}
.btn-contact:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.map-box {
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

/* 
   FOOTER
 */
footer.site-footer {
  background-color: var(--midnight);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  color: var(--gray);
  padding: 70px 0 0;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 30%, rgba(249, 115, 22, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 70%, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.footer-logo-wrap {
  display: inline-block;
  border-radius: 5px;
  padding: 0px 18px;
  margin-bottom: 18px;
  transition: 0.3s;
}
.footer-logo-wrap:hover {
  background: #f1f5f9;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}

.footer-brand img {
  height: 44px;
  display: block;
  transition: 0.3s;
}
.footer-logo-wrap:hover img {
  transform: scale(1.04);
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
  color: #94a3b8;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 16px;
  margin-right: 10px;
  margin-top: 16px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: var(--gray);
  font-size: 13.5px;
  transition: 0.25s;
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 13px;
  text-align: center;
}

/* 
   SCROLL TO TOP BUTTON
 */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.25s;
  z-index: 9999;
  pointer-events: none;
}
#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#scrollTopBtn:hover {
  background: var(--orange-dark);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.55);
}
#scrollTopBtn:active {
  transform: scale(0.95);
}

/* 
   ANIMATIONS
 */
@keyframes lineGlow {
  from {
    box-shadow: 0 0 4px rgba(249, 115, 22, 0.2);
  }
  to {
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.55);
  }
}

@keyframes dotPulse {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.35);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.7;
  }
}

@keyframes arrowPulseH {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.7;
  }
}

@keyframes rotatePlus {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE
 */
@media (max-width: 991px) {
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
  }
  .brand-slider-wrapper {
    padding: 0 44px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
  .top,
  .bottom {
    margin: 0;
    grid-column: auto;
  }
  .diagram-wrapper {
    height: auto;
  }
  .node {
    position: static;
    transform: none !important;
    width: 100%;
    margin-bottom: 20px;
  }
  .center-circle {
    position: static;
    transform: none;
    margin: 20px auto;
    width: 160px;
    height: 160px;
  }
  .arrow {
    display: none;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
    padding: 14px 0;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .brand-slider-wrapper {
    padding: 0 36px;
  }
  .topbar .auth-links {
    display: none;
  }
  .about-hero {
    padding: 60px 0 50px;
  }
}

/* custom homepageg */

.carousel-inner {
  .hero-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.search-btn {
  border-radius: 0 30px 30px 0 !important ;
  padding: 0 32px !important;
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 600 !important;
  transition: 0.3s !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35) !important;
  border: 1px solid var(--orange);
}

.search-btn:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
  border: 1px solid var(--orange);
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 8px 15px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: 0.3s !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35) !important;
  border: 1px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
  border: 1px solid var(--orange);
}

.product-info i {
  font-size: 15px;
}

.category-scroll {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 8px;
  text-decoration: none;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.category-item i {
  font-size: 24px;
  color: #ef5a3c;
  margin-bottom: 8px;
}

.category-item span {
  font-size: 12px;
  text-align: center;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trust-section {
  background: var(--midnight);
  opacity: 0.9;
}

.text-midnight {
  color: var(--midnight);
  margin-top: 0.5rem;
}

.btn-midnight {
  display: inline-block;
  background: var(--midnight);
  color: var(--white);
  padding: 8px 15px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 1px solid var(--midnight);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25) !important;
}

.btn-midnight:hover {
  background: var(--midnight-light);
  color: var(--white);
  transform: translateY(-2px);
  border: 1px solid var(--midnight-light);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35) !important;
}

.btn-midnight:focus,
.btn-midnight:active {
  background: var(--midnight-light) !important;
  color: var(--white) !important;
  border-color: var(--midnight-light) !important;
  box-shadow:
    0 0 0 0.2rem rgba(15, 23, 42, 0.2),
    0 10px 28px rgba(15, 23, 42, 0.35) !important;
}

.btn {
  min-height: 25px;
}

@media screen and (max-width: 429px) {
  .btn-midnight,
  .btn-primary {
    padding: 7px 15px !important;
  }

  .btn-midnight-small {
    padding: 3px 30px !important;
  }
}

.btn-midnight-small {
  display: inline-block;
  color: var(--midnight);
  padding: 6px 30px;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  border: 1px solid var(--midnight);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25) !important;
  font-size: 14px;
  min-height: 5px;
}

.btn-midnight-small:hover {
  background: var(--midnight-light);
  color: var(--white);
  transform: translateY(-2px);
  border: 1px solid var(--midnight-light);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35) !important;
}
