/* ===== CSS VARIABLES ===== */
:root {
  --primary-100: #0077c2;
  --primary-200: #59a5f5;
  --primary-300: #c8ffff;
  --accent-100: #00bfff;
  --accent-200: #00619a;
  --text-100: #333333;
  --text-200: #5c5c5c;
  --bg-100: #ffffff;
  --bg-200: #f5f5f5;
  --bg-300: #cccccc;
  --border-radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-100);
  background-color: var(--bg-100);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-100);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--text-100);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-100);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-100);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-100);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-100);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-100);
  border: 1px solid var(--primary-100);
}

.btn-secondary:hover {
  background-color: rgba(0, 119, 194, 0.05);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-100);
  color: var(--primary-100);
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-100);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 160px 0 0px;
  background: linear-gradient(135deg, var(--bg-200) 0%, #e6f7ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 119, 194, 0.1) 0%,
    rgba(0, 119, 194, 0) 70%
  );
  border-radius: 50%;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-100);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-200);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.hero-video {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-100);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-video:hover {
  transform: translateX(5px);
}

.play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  aspect-ratio: 1; /* Add this to maintain perfect circle */
  flex-shrink: 0; /* Prevent shrinking in flex containers */
}

.hero-video:hover .play-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

/* ===== SECTIONS COMMON STYLES ===== */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-200);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== HIGHLIGHTS SECTION ===== */
/* Unique Highlights Section Design */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.highlight-card {
  background: var(--bg-100);
  border-radius: 20px;
  padding: 40px 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-100) 0%, #fafbff 100%);
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 119, 194, 0.15),
    0 5px 15px rgba(0, 119, 194, 0.1);
  border-color: rgba(0, 119, 194, 0.2);
}

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-100) 0%,
    var(--accent-100) 50%,
    var(--primary-200) 100%
  );
  opacity: 0.8;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0, 119, 194, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(0, 119, 194, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-100);
  text-align: center;
  position: relative;
  z-index: 2;
}

.highlight-description {
  color: var(--text-200);
  line-height: 1.7;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.card-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 119, 194, 0.1);
  position: relative;
  z-index: 2;
}

.expertise-tag {
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 119, 194, 0.2);
  transition: all 0.3s ease;
}

.highlight-card:hover .expertise-tag {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 194, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .highlight-card {
    padding: 30px 25px 25px;
    border-radius: 16px;
  }

  .highlight-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .highlight-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .highlight-card {
    padding: 25px 20px 20px;
    border-radius: 14px;
  }

  .highlight-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .highlight-card h3 {
    font-size: 1.2rem;
  }

  .highlight-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .card-footer {
    flex-wrap: wrap;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: var(--bg-200);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: var(--bg-100);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--bg-300);
  transition: all 0.3s ease;
}

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

.linkedin-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--primary-100);
  font-weight: 600;
  font-size: 0.9rem;
}

.linkedin-header i {
  font-size: 1.2rem;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-100);
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
  border-left: 3px solid var(--primary-100);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-200);
  margin-bottom: 8px;
}

.post-engagement {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-200);
}

.post-engagement span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.linkedin-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-top: 1px solid var(--bg-300);
  margin-top: 15px;
}

.linkedin-link:hover {
  color: var(--accent-200);
  gap: 12px;
}

.testimonials-cta {
  text-align: center;
  padding: 30px;
  background: var(--bg-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonials-cta p {
  margin-bottom: 20px;
  color: var(--text-100);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.social-link.linkedin {
  background-color: var(--primary-100);
}

.social-link.twitter {
  background-color: var(--primary-200);
}

.social-link.facebook {
  background-color: var(--primary-100);
}

/* ===== KEY HIGHLIGHTS SECTION ===== */
/* Enhanced Key Highlights Section */
.key-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.key-highlight-card {
  background: var(--bg-100);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-300);
  position: relative;
  overflow: hidden;
}

.key-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.key-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
}

.key-highlight-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0, 119, 194, 0.2);
}

.key-highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-100);
  text-align: center;
}

.highlight-description {
  color: var(--text-200);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1rem;
}

.highlight-features {
  list-style: none;
  margin-bottom: 25px;
}

.highlight-features li {
  padding: 8px 0;
  color: var(--text-100);
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

.highlight-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-100);
  font-weight: 600;
}

.highlight-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--bg-300);
}

.highlight-stats .stat {
  background: var(--bg-200);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-100);
  border: 1px solid var(--bg-300);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .key-highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .key-highlight-card {
    padding: 25px 20px;
  }

  .highlight-stats {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .highlight-stats .stat {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .key-highlight-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .key-highlight-card h3 {
    font-size: 1.3rem;
  }
}

/* ===== INDUSTRIES SECTION ===== */
/* Enhanced Industries Section */
.industries-intro {
  text-align: center;
  margin-bottom: 50px;
}

.industries-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.industry-stat {
  text-align: center;
}

.industry-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.industry-stat .stat-label {
  color: var(--text-200);
  font-size: 0.9rem;
  font-weight: 500;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.industry-card {
  background: var(--bg-100);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-300);
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
}

.industry-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 15px rgba(0, 119, 194, 0.2);
}

.industry-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-100);
  text-align: center;
}

.industry-description {
  color: var(--text-200);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1rem;
}

.industry-solutions {
  list-style: none;
  margin-bottom: 25px;
}

.industry-solutions li {
  padding: 8px 0;
  color: var(--text-100);
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.industry-solutions li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-100);
  font-weight: 600;
  font-size: 1.2rem;
}

.industry-impact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--bg-300);
  flex-wrap: wrap;
  gap: 8px;
}

.impact-tag {
  background: var(--bg-200);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-100);
  border: 1px solid var(--bg-300);
  white-space: nowrap;
}

.industries-cta {
  background: var(--bg-200);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--bg-300);
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-100);
}

.cta-content p {
  color: var(--text-200);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .industry-card {
    padding: 25px 20px;
  }

  .industries-stats {
    gap: 30px;
  }

  .industry-stat .stat-number {
    font-size: 2rem;
  }

  .industry-impact {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .impact-tag {
    text-align: center;
  }

  .industries-cta {
    padding: 30px 20px;
  }
}

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

  .industry-stat .stat-number {
    font-size: 1.8rem;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .industry-card h3 {
    font-size: 1.2rem;
  }
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.success-story-card {
  background: var(--bg-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-content {
  padding: 30px;
}

.story-tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: rgba(0, 119, 194, 0.1);
  color: var(--primary-100);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.story-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-100);
}

.story-content p {
  color: var(--text-200);
  margin-bottom: 20px;
}

.story-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-100);
  font-weight: 600;
}

/* ===== PARTNER SECTION ===== */
.partner {
  background: linear-gradient(
    135deg,
    var(--primary-100) 0%,
    var(--accent-100) 100%
  );
  color: white;
  text-align: center;
  padding: 100px 0;
}

.partner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.partner p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* ===== APPROACH SECTION ===== */
.approach-section {
  position: relative;
  overflow: hidden;
}

.approach-container {
  position: relative;
  z-index: 2;
}

.approach-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
}

.approach-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-100), var(--accent-100));
  z-index: 1;
}

.approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
}

.step-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: var(--shadow-lg);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s ease;
}

.step-icon-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  border-radius: 50%;
  z-index: -1;
}

.step-icon {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.step-content {
  max-width: 250px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-100);
}

.step-content p {
  color: var(--text-200);
  line-height: 1.6;
}

.approach-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding: 40px;
  background: var(--bg-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-200);
  font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--primary-100) 0%,
    var(--accent-200) 100%
  );
  color: white;
  text-align: center;
  padding: 120px 0 80px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 0;
  background: var(--bg-200);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-container {
  background: var(--bg-100);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 1.8rem;
  color: var(--text-100);
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--bg-300);
  border-radius: var(--border-radius);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--text-100);
  background: var(--bg-100);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-200);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-100);
  box-shadow: 0 0 0 3px rgba(0, 119, 194, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--primary-100);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--accent-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--bg-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.method-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-100);
}

.method-content p {
  color: var(--text-200);
  margin-bottom: 5px;
}

.method-content a {
  color: var(--primary-100);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.method-content a:hover {
  color: var(--accent-200);
}

.office-locations {
  background: var(--bg-100);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.office-locations h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text-100);
}

.location {
  padding: 15px 0;
  border-bottom: 1px solid var(--bg-300);
}

.location:last-child {
  border-bottom: none;
}

.location h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-100);
}

.location p {
  color: var(--text-200);
  margin-bottom: 5px;
}

.response-time {
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
}

.response-time h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.response-time p {
  opacity: 0.9;
}

/* ===== ABOUT PAGE STYLES ===== */
.company-overview {
  background: var(--bg-200);
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-100);
}

.key-achievements {
  background: var(--bg-100);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 40px;
  text-align: left;
}

.key-achievements h3 {
  color: var(--text-100);
  margin-bottom: 20px;
  text-align: center;
}

.key-achievements ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.key-achievements li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-300);
  color: var(--text-200);
}

.key-achievements li:last-child {
  border-bottom: none;
}

.key-achievements strong {
  color: var(--primary-100);
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--text-100);
  color: var(--bg-100);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-100);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--bg-100);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--bg-100);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--bg-100);
  opacity: 1;
}

.footer-links a i {
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--bg-100);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--bg-100);
  text-decoration: none;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.footer-bottom-links a:hover {
  color: var(--bg-100);
  opacity: 1;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .nav-links {
    gap: 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .approach-timeline {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .approach-timeline::before {
    display: none;
  }

  .approach-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 500px;
  }

  .step-icon-container {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .step-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-100);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 140px 0 0px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .social-links {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 30px 25px;
  }

  .contact-method {
    padding: 20px;
  }

  .key-achievements ul {
    grid-template-columns: 1fr;
  }

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

  .overview-text p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .author-info {
    text-align: center;
  }

  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-section {
    padding: 60px 0;
  }

  .approach-step {
    flex-direction: column;
    text-align: center;
  }

  .step-icon-container {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .approach-stats {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .key-achievements {
    padding: 20px;
  }
}

/* ===== PERFORMANCE & UTILITY STYLES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

.highlight-icon,
.industry-icon,
.key-highlight-icon {
  aspect-ratio: 1;
}
