:root {
  --clr-bg: #f0f2f5;
  --clr-section-light: #fafafa;
  --clr-section-dark: #e3e3e3;
  --clr-primary: #00aaff;
  --clr-secondary: #00c0ff;
  --clr-accent: #ffc107;
  --clr-text: #222;
  --clr-dark: #333;
  --stripe-dark: #444;
  --stripe-mid: #333;
  --stripe-light: #00aaff;
}

/*—— Reset & Base ——————————————————————————————*/
*,
*::before,
*::after {
  box‑sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/*—— Section Wrapper & Stripes —————————————————————*/
.section {
  position: relative;
  margin: 3rem auto;
  padding: 2rem 1rem;
  max-width: 1000px;
  background: linear-gradient(
    135deg,
    var(--clr-section-light) 0%,
    var(--clr-section-dark) 100%
  );
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.section::before,
.section::after,
.section .stripe-mid {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  transform: skewY(-20deg);
}
.section::before {
  left: -20px;
  width: 20px;
  background: var(--stripe-dark);
}
.section .stripe-mid {
  left: 0;
  width: 30px;
  background: var(--stripe-mid);
}
.section::after {
  left: 30px;
  width: 40px;
  background: var(--stripe-light);
}

/*—— Section Title ————————————————————————————*/
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content:"";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--clr-text);
}

/*—— Common List Styles ————————————————————————*/
.section ul {
  list-style: none;
  margin-top: 1rem;
}
.section li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.section li::before {
  content: "\f058"; /* FontAwesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 0;
  color: var(--clr-primary);
}

/*—— Company Details (table) —————————————————————*/
.company-section .table {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.company-section .table th {
  background: #ddd;
}
.company-section .table tbody tr:nth-child(even) td {
  background: #f7f7f7;
}

/*—— Connect (timeline) ————————————————————————*/
.connect-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.connect-content .left,
.connect-content .right {
  flex: 1 1 300px;
}
.connect-content .right {
  position: relative;
  padding-left: 3rem;
}
.connect-content .right::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  background: var(--clr-primary);
  border-radius: 2px;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.contact-item .icon {
  width: 50px; height: 50px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.contact-item .bar {
  flex: 1;
  background: var(--clr-secondary);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: var(--clr-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background .3s, color .3s;
}
.contact-item .bar:hover {
  background: var(--clr-primary);
  color: #fff;
}

/*—— Responsive —————————————————————————————————*/
@media (max-width: 768px) {
  .connect-content { flex-direction: column; }
}

/*—— AOS defaults —————————————————————————————*/
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }
