/* ============================================
   COMPANY PAGE STYLES
   Matching sustainability.html and contact.html styling
   ============================================ */

/* ===== VARIABLES ===== */
:root {
  --primary-color: #1a3b5d;
  --secondary-color: #00a8ff;
  --accent-color: #0097e6;
  --light-bg: #f8f9fa;
  --dark-text: #1a3b5d;
  --light-text: #666;
  --white: #ffffff;
  --overlay-dark: rgba(0, 100, 200, 0.85);
  --overlay-light: rgba(0, 0, 0, 0.7);
}

/* ===== HERO SECTION ===== */
.company-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 50% 0%);
}

.company-hero .hero-static {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Add this to fix breadcrumb position */
.company-hero .hero-text {
  max-width: 800px;
  margin-top: 80px; /* This pushes everything down */
}


/* Alternatively, adjust the hero-content padding */
.company-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px 0; /* Add top padding here */
  margin: 0 auto;
  color: var(--white);
}/* Replace the tablet/small desktop media query for strategy section */
@media (max-width: 1024px) {
  /* ... other existing styles ... */
  
  .strategy-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .strategy-visual {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Changed from space-between to gap */
  }
  
  .strategy-circle {
    width: 100px;
    height: 100px;
    margin: 0 10px; /* Add margin between circles */
  }
}

/* Add specific mobile styles */
@media (max-width: 768px) {
  /* ... other existing styles ... */
  
  .strategy-visual {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
  }
  
  .strategy-circle {
    width: 90px;
    height: 90px;
    margin: 0 5px;
    flex: 0 0 calc(33.333% - 20px); /* Make circles responsive */
  }
  
  .strategy-circle span {
    font-size: 1.3rem;
  }
  
  .strategy-circle p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .strategy-circle {
    width: 80px;
    height: 80px;
    flex: 0 0 calc(33.333% - 15px);
  }
  
  .strategy-circle span {
    font-size: 1.2rem;
  }
  
  .strategy-circle p {
    font-size: 0.75rem;
  }
  
  .strategy-details {
    padding: 10px 0;
  }
}

@media (max-width: 400px) {
  .strategy-visual {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .strategy-circle {
    width: 100px;
    height: 100px;
    flex: none;
    margin: 0;
  }
}

/* Quick fixes */


.strategy-visual {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap; /* Add this */
  gap: 15px; /* Add this */
}

/* Make strategy circles responsive */
@media (max-width: 768px) {
  .strategy-circle {
    flex: 1 0 calc(33.333% - 20px);
    min-width: 80px;
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .strategy-circle {
    flex: 1 0 calc(33.333% - 10px);
    min-width: 70px;
  }
}
.company-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--overlay-dark) 0%, var(--overlay-light) 100%);
}

.company-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  color: var(--white);
}

.company-hero .hero-text {
  max-width: 800px;
  margin-top: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color:black;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb .current {
  color: var(--secondary-color);
  font-weight: 600;
}

.breadcrumb i {
  font-size: 0.8rem;
  margin: 0 5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
color: black;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
color: black;
font-weight: 400;
  max-width: 700px;
}

.hero-stats-company {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-stats-company .stat-box {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
  transition: transform 0.3s, background 0.3s;
}

.hero-stats-company .stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats-company .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.hero-stats-company .stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: black;
}

/* ===== MAIN CONTENT SECTIONS ===== */
.company-content {
  padding-top: 0;
}

.section {
  padding: 80px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== COMPANY INTRODUCTION ===== */
.company-intro {
  background: var(--white);
}

.company-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.intro-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e9ecef;
}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 255, 0.15);
  border-color: var(--secondary-color);
}

.intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.intro-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.intro-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 59, 93, 0.9) 0%, rgba(10, 35, 64, 0.8) 100%);
}

.mission-vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.mission-block, .vision-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-block h2, .vision-block h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mission-block p, .vision-block p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.mission-list i {
  color: var(--secondary-color);
}

.vision-features {
  margin-top: 25px;
}

.vision-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.3s;
}

.vision-feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vision-feature i {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.vision-feature span {
  color: var(--white);
  font-weight: 500;
}

/* ===== COMPANY CULTURE ===== */
.company-culture {
  background: var(--white);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.culture-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card {
  background: rgba(0, 168, 255, 0.1);
  border: 2px solid rgba(0, 168, 255, 0.2);
}

.collaboration-card {
  background: rgba(26, 59, 93, 0.1);
  border: 2px solid rgba(26, 59, 93, 0.2);
}

.courage-card {
  background: rgba(0, 151, 230, 0.1);
  border: 2px solid rgba(0, 151, 230, 0.2);
}

.culture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.culture-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.trust-card .culture-icon {
  background: var(--secondary-color);
  color: var(--white);
}

.collaboration-card .culture-icon {
  background: var(--primary-color);
  color: var(--white);
}

.courage-card .culture-icon {
  background: var(--accent-color);
  color: var(--white);
}

.culture-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.culture-card p {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.6;
}

.culture-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.culture-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.culture-features i {
  color: var(--secondary-color);
}

.culture-quote {
  max-width: 800px;
  margin: 0 auto;
}

.culture-quote blockquote {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

.culture-quote .fa-quote-left {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.culture-quote p {
  font-size: 1.5rem;
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.culture-quote cite {
  color: var(--light-text);
  font-style: normal;
  font-weight: 600;
}

/* ===== GOVERNANCE & SAFETY ===== */
.company-governance {
  background: var(--light-bg);
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.governance-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e9ecef;
}

.governance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 255, 0.15);
  border-color: var(--secondary-color);
}

.governance-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.governance-header i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.governance-header h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin: 0;
}

.governance-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.governance-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.governance-link:hover {
  color: var(--accent-color);
}

.governance-link i {
  font-size: 1rem;
}

/* ===== COMPANY STRATEGY ===== */
.company-strategy {
  background: var(--white);
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.strategy-visual {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.strategy-circle {
  width: 120px;
  height: 120px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  transition: all 0.3s;
  border: 2px solid #e9ecef;
  position: relative;
}

.strategy-circle.active {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-color: var(--secondary-color);
  color: var(--white);
}

.strategy-circle.active p {
  color: rgba(255, 255, 255, 0.9);
}

.strategy-circle span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.strategy-circle p {
  font-size: 0.85rem;
  color: var(--light-text);
  margin: 0;
}

.strategy-details {
  padding: 20px;
}

.strategy-point {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.strategy-point:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.strategy-point h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strategy-point h3 i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.strategy-point p {
  color: var(--light-text);
  line-height: 1.6;
}

/* ===== HISTORY TIMELINE ===== */
.company-history {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.company-history .section-header {
  position: relative;
  z-index: 2;
}

.company-history .section-subtitle {
  color: var(--secondary-color);
}

.company-history .section-title {
  color: var(--white);
}

.timeline {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: calc(50% - 60px);
  margin: 0 30px;
  transition: transform 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.timeline-content h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.company-cta {
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.cta-content-company {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-company h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content-company p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-company {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  padding: 14px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary-company:hover {
  background: linear-gradient(135deg, var(--accent-color), #0082cc);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
}

.btn-secondary-company {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--white);
  cursor: pointer;
}

.btn-secondary-company:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline-company {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.btn-outline-company:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.8s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and small desktops */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats-company {
    gap: 20px;
  }
  
  .hero-stats-company .stat-box {
    min-width: 130px;
    padding: 15px;
  }
  
  .hero-stats-company .stat-number {
    font-size: 2rem;
  }
  
  .intro-grid,
  .culture-grid,
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-vision-content,
  .strategy-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .strategy-visual {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .strategy-circle {
    width: 100px;
    height: 100px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-grid,
  .culture-grid,
  .governance-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    align-items: flex-start;
  }
  
  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    margin-right: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 100px);
    margin: 0;
  }
  
  .cta-content-company h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-company,
  .btn-secondary-company,
  .btn-outline-company {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .culture-quote p {
    font-size: 1.3rem;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats-company {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats-company .stat-box {
    width: 100%;
    max-width: 250px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .intro-card,
  .culture-card,
  .governance-card {
    padding: 30px 20px;
  }
  
  .mission-block,
  .vision-block {
    padding: 30px 20px;
  }
  
  .strategy-circle {
    width: 80px;
    height: 80px;
  }
  
  .strategy-circle span {
    font-size: 1.2rem;
  }
  
  .strategy-circle p {
    font-size: 0.75rem;
  }
  
  .culture-quote blockquote {
    padding: 25px;
  }
  
  .culture-quote p {
    font-size: 1.1rem;
  }
}

/* Small mobile phones */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .strategy-visual {
    flex-direction: column;
    align-items: center;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mission-vision,
  .company-history {
    background-attachment: scroll;
  }
}

/* Print styles */
@media print {
  .company-hero .hero-static {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
  
  .company-hero .hero-overlay {
    display: none;
  }
  
  .hero-title,
  .hero-subtitle,
  .section-title,
  .section-subtitle,
  .intro-card h3,
  .culture-card h3,
  .governance-header h3,
  .strategy-point h3,
  .timeline-content h3,
  .mission-block h2,
  .vision-block h2 {
    color: black !important;
  }
  
  .stat-box,
  .intro-card,
  .culture-card,
  .governance-card,
  .mission-block,
  .vision-block,
  .timeline-content {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
  }
  
  .parallax-overlay {
    display: none;
  }
  
  a {
    color: black !important;
    text-decoration: underline;
  }
  
  .btn-primary-company,
  .btn-secondary-company,
  .btn-outline-company,
  .governance-link {
    background: #ddd !important;
    color: black !important;
    border: 1px solid #999 !important;
  }
}