/* ===== Hero Section Styles ===== */
.about-hero {
  position: relative;
  height: 95vh;
  background: linear-gradient(135deg, #0a0f1f, #142850);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/assets/img/about_us.webp') center/cover no-repeat;
  opacity: 0.3;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.hero-content h1 span {
  color: var(--button-color);
}

.hero-content h2 {
  font-size: 4.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ffffff;
}

.company{
    color: var(--button-color);
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0f1f;
  background: var(--button-color);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--button-hover-color);
  color: #000000;
}

@media (max-width: 1024px) {
  .about-hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h2 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Mobile (landscape) */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Mobile (portrait, very small screens) */
@media (max-width: 480px) {
  .about-hero {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-top: 60px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* ************************************* */
/* stats-reasons-section */
/* ************************************* */
.stats-reasons-section {
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}

.stats-reasons-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #37517e;
}

.stats-reasons-section .section-subtitle {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 20px;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 200px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: rgb(255, 166, 0);
}

.stat-label {
  margin-top: 5px;
  font-size: 1.2rem;
  color: #555;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.reason-card {
  background: hsl(38, 100%, 98%);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-2px);
}

.reason-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.reason-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.reason-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-row {
    gap: 20px;
  }

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


/* ===== Mission & Vision Section ===== */
.mv-section {
  padding: 80px 20px;
  background: #f9fafc;
}

.mv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mv-left {
  flex: 1;
  min-width: 350px;
}

.mv-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mv-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.mv-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.mv-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mv-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 250px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.mv-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.mv-card-header h3 {
  font-size: 1.8rem;
  margin: 0;
  margin-left: 10px;
  font-weight: 600;
  color: #0d47a1;
}

.mv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.mv-icon img {
  width: 100%;
  height: auto;
}

.mv-card p {
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  color: #444;
  line-height: 1.5;
}

/* Right Side Image */
.mv-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.mv-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .mv-container {
    flex-direction: column;
    text-align: center;
  }

  .mv-left {
    order: 1;
  }

  .mv-right {
    order: 2;
  }

  .mv-cards {
    justify-content: center;
  }

  .mv-card {
    max-width: 350px;
  }
}


/* ====== Section Wrapper ====== */
.tech-work-section {
  padding: 60px 20px;
  background: #f9fafc;
  font-family: "Segoe UI", sans-serif;
}

.tech-work-container {
  max-width: 1200px;
  margin: auto;
}

/* ====== Header (Title + Desc) ====== */
.tech-work-header {
  text-align: center;
  margin-bottom: 40px;
}

.tech-work-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.tech-work-header p {
  font-size: 1.6rem;
  color: #555;
  max-width: 1200px;
  margin: auto;
}

/* ====== Main Content ====== */
.tech-work-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

/* ====== Left Side (Image - Fixed) ====== */
.tech-work-left {
  flex: 1;
  min-width: 300px; 
  text-align: center;
  position: sticky; /* keeps it fixed while accordion scrolls */
  top: 100px;       /* adjust based on header/navbar height */
  align-self: flex-start;
}

.tech-work-left img {
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ====== Right Side (Accordion) ====== */
.tech-work-right {
  flex: 1;
  min-width: 350px;
}

/* Accordion */
.accordion-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.accordion-header {
  background: #fff;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #fffcf7;
}

.accordion-header .icon {
  font-size: 1.8rem;
  color: var(--button-color);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fffcf7;
  padding: 0 20px;
}

.accordion-content p {
  padding: 15px 0;
  font-size: 1.15rem;
  color: #444;
  font-family: 'Poppins', sans-serif;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .tech-work-content {
    flex-direction: column;
  }
  .tech-work-left {
    position: relative;
    top: unset;
    margin-bottom: 20px;
  }
}


/* Section Wrapper */
.core-values-section {
  padding: 60px 20px;
  background: #f8f9fc;
}
.core-values-section .section-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #37517e;
}

/* Layout Wrapper */
.core-values-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Timeline (Left Side) */
.values-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 3px solid var(--button-color);
  padding-left: 20px;
}
.value-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;  
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--button-color);
  border-radius: 50%;
}
.value-card.active {
  border-left: 5px solid var(--button-color);
  background: #fff7ec;
}
.value-card img.value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.value-card h3 {
  font-size: 1.4rem;
  color: #37517e;
  font-weight: 600;
  margin: 0;
}

/* Description (Right Side) */
.values-description {
  flex: 2;
  text-align: center;
}
.values-description .desc {
  display: none;
}
.values-description .desc.active {
  display: block;
}
.values-description h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #555;
}
.values-description .desc-image {
  width: 100%;
  max-width: 400px;
  height: 260px;
  margin-bottom: 15px;
  border-radius: 10px;
}
.values-description p {
    text-align: justify;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .core-values-wrapper {
    flex-direction: column;
  }
  .values-timeline {
    border-left: none;
    border-top: 3px solid #007bff;
    padding-left: 0;
    padding-top: 20px;
  }
  .value-card::before {
    left: 20px;
    top: -30px;
  }
  .values-description {
    text-align: center;
  }
}

/* ================= Core Values Section ================= */

/* Section Wrapper */
.core-values-section {
  padding: 60px 20px;
  background: #f8f9fc;
}
.core-values-section .section-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #37517e;
}

/* Layout Wrapper */
.core-values-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Timeline (Left Side) */
.values-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 3px solid var(--button-color);
  padding-left: 20px;
}
.value-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;  
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--button-color);
  border-radius: 50%;
}
.value-card.active {
  border-left: 5px solid var(--button-color);
  background: #fff7ec;
}
.value-card img.value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.value-card h3 {
  font-size: 1.4rem;
  color: #37517e;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}
.value-card:hover h3 {
  color: var(--button-color);
}

/* Description (Right Side) */
.values-description {
  flex: 2;
  text-align: center;
  transition: all 0.3s ease;
}
.values-description .desc {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.values-description .desc.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.values-description h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #555;
}
.values-description .desc-image {
  width: 100%;
  max-width: 400px;
  height: 260px;
  margin-bottom: 15px;
  border-radius: 10px;
  object-fit: cover;
}
.values-description p {
  text-align: justify;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
}

/* Tablet: slightly smaller screens (768px - 992px) */
@media (max-width: 992px) {
  .core-values-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .values-timeline {
    flex-direction: column; /* stack vertically */
    border-left: none;
    border-top: 3px solid var(--button-color);
    padding-left: 0;
    padding-top: 20px;
  }
  .value-card {
    flex: 1 1 auto;
    width: 100%;
    margin-bottom: 20px;
    border-left: none;
    border-top: 3px solid transparent;
  }
  .value-card::before {
    left: 20px;
    top: -5px;
    transform: none;
  }
  .values-description {
    margin-top: 20px;
  }
}

/* Mobile: small devices (<=576px) */
@media (max-width: 576px) {
  .core-values-section .section-title {
    font-size: 2.4rem;
  }
  .value-card h3 {
    font-size: 1.2rem;
  }
  .values-description h3 {
    font-size: 2rem;
  }
  .values-description p {
    font-size: 1.1rem;
  }
  .values-description .desc-image {
    height: 200px;
  }
}
