@import url(./header.css);
@import url(./animations.css);
@import url(./pages-hero.css);



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body {
  font-family: 'AvenirMedium';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.5;
  min-height: 100vh;
  padding-top: 4.5rem;
}
.hero-section {
  margin: 0 20px 25px 20px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(46, 125, 50, 0.8) 100%),
    url("../img/team.jpeg");
  background-size: cover;
  background-position: center;
  padding: 24px;
  color: white;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Content Sections */
.content-section {
  padding: 0 20px;
  margin: 24px 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.section-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
}

.highlight {
  font-weight: 700;
  color: var(--primary);
}
.fact-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fact-card.small {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fact-card.small:nth-child(1) {
  background-image: url("../IMG/arton5.jpg");
}

.fact-card.small:nth-child(2) {
  background-image: url("../IMG/arton6.jpg");
}

.fact-card.large {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background-image: url("../IMG/arton7.jpg");
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}

.icon-circle {
  background-color: rgba(46, 125, 50, 0.1);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

/* Mission & Vision Sections */
.mv-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 70px;
  position: relative;
  overflow: hidden;
  background: url("../IMG/arton9.jpg") center/cover no-repeat;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-card {
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Core Values Section */
.values-section {
  padding: 32px 20px;
  background: url("../img/rubon32.jpg") center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

.values-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.values-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.values-scroll::-webkit-scrollbar {
  display: none;
}

.value-item {
  flex: 0 0 auto;
  width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.value-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(46, 125, 50, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.value-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

@media (min-width: 768px) {
}


/* Category Sections */
.category-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 30px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(46, 125, 50, 0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .content-section {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Intro Section Styling */
.content-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.content-section li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.content-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
}

.content-section p {
  margin-bottom: 20px;
}

/* Animation for scroll effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Business Units Section */
.units-section-wrapper {
  padding: 60px 20px;
}

.units-section {
  max-width: 1200px;
  margin: 0 auto;
}

.units-section h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.units-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .units-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.unit-card {
  background-color: transparent;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.unit-card:hover {
  transform: translateY(-5px);
}

.unit-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: contain;   /* changed from cover */
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px auto 0;
}

.unit-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  margin: 20px;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  transition: color 0.3s ease;
}

.unit-title:hover {
  color: var(--secondary);
}
.unit-title a {
  text-decoration: none;
  color: inherit;
}
/* ===============================
   APTC OVERVIEW
   =============================== */

#aptc-overview {
  background: #f8fafc;
  padding: 6rem 1.5rem;
}

.aptc-container {
  max-width: 1100px;
  margin: 0 auto;
}

.aptc-overview-header {
  max-width: 760px;
  margin-bottom: 4rem;
}

.aptc-overview-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
}

.aptc-overview-header p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #475569;
}

/* Panels */

.aptc-overview-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.aptc-panel {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 14px;
  border-left: 5px solid #589c04;
}

.aptc-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.aptc-panel ul {
  padding-left: 1.1rem;
}

/* Body */

.aptc-overview-body p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.aptc-key-points li {
  margin-bottom: 0.7rem;
}

/* Facts */

.aptc-facts {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.aptc-facts div {
  background: #589c04;
  color: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
}

.aptc-facts strong {
  font-size: 2rem;
  display: block;
}
/* ===============================
   SUBSIDIARIES
   =============================== */

.aptc-subs {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.aptc-subs h2 {
  margin-bottom: 3rem;
}

.aptc-subs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.aptc-subs-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.aptc-subs-card img {
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.aptc-subs-card span {
  font-weight: 600;
}

.aptc-subs-card:hover {
  border-color: #589c04;
  transform: translateY(-4px);
}
/* ===============================
   MISSION & VISION
   =============================== */

.aptc-mv {
  padding: 5rem 1.5rem;
  background: #f1f5f9;
}

.aptc-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.aptc-mv-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  border-top: 6px solid #589c04;
}
@media (max-width: 900px) {
  .aptc-overview-panels,
  .aptc-mv-grid {
    grid-template-columns: 1fr;
  }

  .aptc-facts {
    grid-template-columns: 1fr;
  }
}
.partners-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--primary);
}

.partners-block {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.partners-block h4 {
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Joint Venture */
.single-partner {
  max-width: 280px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.single-partner a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  display: block;
}

.single-partner img {
  width: 250px;
  height: 150px;
  /* object-fit: contain; */
}

/* Carousel */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

.logo-item {
  min-width: 180px;
  height: 120px;
  margin-right: 20px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-6px);
}

.logo-item img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
