




.company-hero {
  position: relative;
  height: 680px;
  margin-top: 65px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.company-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.company-slide.active {
  opacity: 1;
  animation: kbZoom 7s ease-out forwards;
}

@keyframes kbZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.company-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 20, 0.82) 0%,
    rgba(88, 41, 11, 0.45) 100%
  );
  z-index: 2;
}

.company-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
  max-width: 860px;
  padding: 0 1.5rem;
}

.company-hero-content .hero-eyebrow {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.company-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.company-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--secondary-color);
  transform: scale(1.25);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slider-arrow:hover {
  background: var(--secondary-color);
}

.slider-arrow.prev {
  left: 1.5rem;
}

.slider-arrow.next {
  right: 1.5rem;
}


.company-stats {
  padding: 4.5rem 0;
  background: var(--light-gray);
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cstat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.cstat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cstat-card i {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cstat-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.cstat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}


.director-section {
  padding: 5.5rem 0;
  background: var(--primary-color);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.director-section::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-size: 20rem;
  color: rgba(212, 157, 53, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.director-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

.director-photo-wrap {
  position: relative;
}

.director-photo-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--secondary-color);
}

.director-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.director-message blockquote {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  border-left: 4px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}

.director-message .director-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.2rem;
}

.director-message .director-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.director-sig {
  margin-top: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: var(--secondary-color);
  font-style: italic;
}


.vm-section {
  padding: 5rem 0;
  background: #fff;
}

.vm-section .section-header {
  margin-bottom: 3.5rem;
}


.company-brands-section {
  padding: 5rem 0;
  background: var(--bg-warm);
}

.company-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cbrand-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
}

.cbrand-card-content {
  padding: 0.3rem 1rem 1rem 1rem;
  text-align: left;
}
.cbrand-card-content h4 {
  padding: 0.1rem 1rem 0 1rem;
  text-align: center;
}

.cbrand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cbrand-card img {
  width: auto;
  border-top-right-radius: var(--radius-lg);
  border-top-left-radius: var(--radius-lg);
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.cbrand-card .cbrand-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.cbrand-card .cbrand-icon i {
  color: #fff;
  font-size: 1.75rem;
}

.cbrand-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cbrand-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}


.company-location {
  padding: 5rem 0;
  background: var(--primary-color);
  color: #fff;
}

.company-location .section-header h2 {
  color: #fff;
}

.company-location .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.location-card:hover {
  background: rgba(212, 157, 53, 0.12);
  border-color: var(--secondary-color);
  transform: translateY(-4px);
}

.location-card i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.location-card h4 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.location-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin: 0;
}

.location-map-embed {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}


.company-awards {
  padding: 5rem 0;
  background: var(--bg-light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.award-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.award-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.award-icon i {
  color: #fff;
  font-size: 1.75rem;
}

.award-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.award-card .award-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.award-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}


.company-faq {
  padding: 5rem 0;
  background: var(--bg-warm);
}

.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--secondary-color);
}

.faq-question i {
  transition: transform 0.3s;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}


.company-testimonials {
  padding: 5.5rem 0;
  background: var(--primary-color);
  color: #fff;
  overflow: hidden;
}

.company-testimonials .section-header h2 {
  color: #fff;
}

.company-testimonials .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease;
}

.tcard {
  min-width: 360px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  flex-shrink: 0;
}

.tcard-stars {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tcard-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.tcard-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.tcard-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
}

.tcard-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.tc-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.tc-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.tc-dots {
  display: flex;
  gap: 0.5rem;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}

.tc-dot.active {
  background: var(--secondary-color);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}


.industries-serve {
  padding: 6rem 0;
  background: var(--primary-color);
  color: #fff;
  position: relative;
}

.industries-serve .section-header h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  text-align: center;
}

.industry-card:hover {
  background: rgba(212, 157, 53, 0.1);
  border-color: var(--secondary-color);
  transform: translateY(-8px);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.industry-card h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}



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

  .tcard {
    min-width: 300px;
  }

  .director-grid {
    grid-template-columns: 1fr;
  }

  .director-photo-wrap {
    max-width: 240px;
    margin: 0 auto 2rem;
  }
}
