/* About Page Modern Styles */
:root {
  --primary-blue: #093a60;
  --accent-gold: #cea54a;
  --light-cream: #fefaf3;
  --dark-charcoal: #2d3748;
  --light-gray: #f7f9fc;
  --success-green: #48bb78;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --shadow-light: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Company Story Section */
.company-story-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.company-story-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 58, 96, 0.03) 0%, transparent 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.story-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-subtitle {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  position: relative;
}

.about-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 2.5rem;
  line-height: 1.1;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 2px;
}

/* Story Cards */
.story-card-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.story-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-gold), var(--primary-blue));
  transition: height 0.4s ease;
}

.story-card-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--accent-gold);
}

.story-card-item:hover::before {
  height: 100%;
}

.story-card-icon {
  background: linear-gradient(135deg, var(--primary-blue), #0a4a7a);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.story-card-item:hover .story-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.story-card-content h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.story-card-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Journey Highlight */
.company-journey-highlight {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7a 100%);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.company-journey-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(206, 165, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.journey-content-wrapper h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.journey-content-wrapper p {
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
}

.journey-visualization {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ethiopia-marker,
.global-marker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ethiopia-marker i,
.global-marker i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.world-connection-line {
  flex: 1;
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.world-connection-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: connectionPulse 2s infinite;
}

/* Story Visual Styles */
.story-visual-container {
  position: relative;
}

.story-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  position: relative;
}

.story-featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.story-main-image:hover .story-featured-image {
  transform: scale(1.08);
}

.image-location-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: linear-gradient(135deg, var(--accent-gold), #e0b858);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(206, 165, 74, 0.3);
}

/* Floating Feature Cards */
.floating-features-container {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  z-index: 3;
}

.floating-feature-card {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  width: 200px;
  transition: all 0.4s ease;
  border: 1px solid rgba(9, 58, 96, 0.1);
  backdrop-filter: blur(10px);
}

.floating-feature-card i {
  color: var(--accent-gold);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.floating-feature-card span {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.feature-card-1 {
  transform: translateX(-30px);
  animation: featureFloat 4s ease-in-out infinite;
}

.feature-card-2 {
  transform: translateX(-15px);
  animation: featureFloat 4s ease-in-out infinite 0.3s;
}

.feature-card-3 {
  animation: featureFloat 4s ease-in-out infinite 0.6s;
}

.floating-feature-card:hover {
  transform: translateX(0) !important;
  box-shadow: var(--shadow-heavy);
}

.floating-feature-card:hover i {
  transform: scale(1.2);
}

/* Values Preview */
.company-values-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.company-value-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(9, 58, 96, 0.05);
}

.company-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.company-value-icon {
  background: linear-gradient(135deg, var(--primary-blue), #0a4a7a);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.company-value-card:hover .company-value-icon {
  transform: rotate(10deg) scale(1.1);
}

.company-value-content h5 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.company-value-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Mission Vision Values Cards - Fixed Equal Heights */
.mission-vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  order: 2;
  padding: 0 2rem;
  align-items: stretch; /* This makes all cards stretch to same height */
}

.mission-vision-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(9, 58, 96, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%; /* Make cards take full height of grid cell */
  display: flex;
  flex-direction: column; /* Stack content vertically */
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(206, 165, 74, 0.2);
}

.mission-vision-card:hover::before {
  opacity: 1;
}

.mission-vision-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(206, 165, 74, 0.1),
    rgba(206, 165, 74, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  color: var(--accent-gold);
  transition: all 0.4s ease;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.mission-vision-card:hover .mission-vision-icon {
  background: linear-gradient(
    135deg,
    rgba(9, 58, 96, 0.1),
    rgba(9, 58, 96, 0.05)
  );
  color: var(--primary-blue);
  transform: scale(1.05);
}

.mission-vision-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.2rem;
  flex-shrink: 0; /* Prevent title from shrinking */
}

.mission-vision-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
  flex-grow: 1; /* Allow description to grow and take available space */
}

/* Mission Card Specific Styles */
.card-highlights {
  display: flex;
  justify-content: space-around;
  margin-top: auto; /* Push highlights to bottom */
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0; /* Prevent highlights from shrinking */
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.highlight-item i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.mission-vision-card:hover .highlight-item i {
  transform: scale(1.2);
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* Vision Card Specific Styles */
.vision-graphic {
  display: flex;
  justify-content: center;
  margin-top: auto; /* Push graphic to bottom */
  padding-top: 2rem;
  flex-shrink: 0; /* Prevent graphic from shrinking */
}

.vision-circle {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-core {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.7rem;
  z-index: 2;
}

.circle-ring {
  position: absolute;
  border: 2px dashed var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}

.ring-1 {
  width: 100px;
  height: 100px;
}

.ring-2 {
  width: 140px;
  height: 140px;
  animation-direction: reverse;
}

.circle-ring span {
  position: absolute;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.7rem;
  background: white;
  padding: 2px 6px;
  border-radius: 8px;
}

.ring-1 span {
  top: -8px;
}

.ring-2 span {
  top: -8px;
}

/* Values Card Specific Styles */
.mv-values-content {
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Allow values content to grow and take available space */
}

.mv-value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
  background: #f8f9fa;
}

.mv-value-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.mv-value-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mv-value-item:hover .mv-value-icon {
  transform: scale(1.1);
}

.mv-value-text h4 {
  color: var(--primary-blue);
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 600;
}

.mv-value-text p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.mv-values-quote {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  margin-top: auto; /* Push quote to bottom */
  flex-shrink: 0; /* Prevent quote from shrinking */
}

.mv-values-quote blockquote {
  margin: 0;
  font-style: italic;
  color: var(--primary-blue);
  line-height: 1.5;
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .mission-vision-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .mission-vision-card {
    height: auto; /* Allow natural height on mobile */
    min-height: 400px; /* Set minimum height for consistency */
  }
}

@media (max-width: 768px) {
  .mission-vision-card {
    padding: 2rem 1.5rem;
    min-height: 380px; /* Slightly smaller min-height on tablet */
  }

  .mission-vision-cards {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .mission-vision-card {
    min-height: 350px; /* Smaller min-height on mobile */
  }
}

/* Why Choose Us Section */
.company-features-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-cream) 100%);
  padding: 100px 0;
}

.features-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.feature-card-modern {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(9, 58, 96, 0.08);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.feature-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.feature-card-modern:hover::before {
  opacity: 1;
}

.feature-icon-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(206, 165, 74, 0.1), rgba(206, 165, 74, 0.05));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: var(--accent-gold);
  transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-modern {
  background: linear-gradient(135deg, rgba(9, 58, 96, 0.1), rgba(9, 58, 96, 0.05));
  color: var(--primary-blue);
  transform: scale(1.1);
}

.feature-title-modern {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.feature-description-modern {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  text-align: center;
}

.feature-benefits-list {
  text-align: left;
}

.benefit-item-modern {
  padding: 0.7rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(9, 58, 96, 0.05);
}

.benefit-item-modern:last-child {
  border-bottom: none;
}

.benefit-item-modern:hover {
  color: var(--primary-blue);
  transform: translateX(8px);
}

.benefit-item-modern i {
  color: var(--success-green);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card-modern:hover .benefit-item-modern i {
  transform: scale(1.3);
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 100px 0;
}

.team-members-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

.team-member-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease;
  border: 1px solid rgba(9, 58, 96, 0.08);
}

.team-member-profile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.team-member-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.team-member-photo {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.team-member-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(9, 58, 96, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-member-profile:hover .team-member-image-overlay {
  opacity: 1;
}

.team-member-profile:hover .team-member-photo {
  transform: scale(1.08);
}

.team-member-role {
  background: var(--accent-gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(25px);
  transition: transform 0.4s ease;
}

.team-member-profile:hover .team-member-role {
  transform: translateY(0);
}

.team-member-info {
  padding: 1rem 0;
}

.team-member-name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.team-member-position {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.team-member-position::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.team-member-bio {
  margin-bottom: 2.5rem;
}

.team-member-bio p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.team-member-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.team-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--light-cream);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(206, 165, 74, 0.1);
}

.team-highlight-item:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}

.team-highlight-item:hover i,
.team-highlight-item:hover span {
  color: var(--white);
}

.team-highlight-item i {
  color: var(--accent-gold);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.team-highlight-item span {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes featureFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes connectionPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .story-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-vision-cards,
  .features-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .floating-features-container {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .floating-feature-card {
    width: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .team-member-profile {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .team-member-image {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .team-member-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-visualization {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .world-connection-line {
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  }
  
  .world-connection-line::after {
    top: 0;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .company-story-section,
  .company-mission-vision,
  .company-features-section,
  .team-section {
    padding: 80px 0 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .mission-vision-cards,
  .features-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .story-card-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  
  .story-card-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .floating-features-container {
    flex-direction: column;
    align-items: center;
  }
  
  .company-value-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .company-value-icon {
    margin-bottom: 1rem;
  }
  
  .team-member-highlights {
    grid-template-columns: 1fr;
  }
  
  .team-member-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.8rem;
  }
  
  .mission-vision-card,
  .feature-card-modern {
    padding: 2.5rem 1.5rem;
  }
  
  .team-member-profile {
    padding: 2rem 1.5rem;
  }
  
  .company-journey-highlight {
    padding: 2rem 1.5rem;
  }
  
  .story-main-image {
    margin: 0 -1rem;
    border-radius: 0;
  }
}

/* Add these styles to your existing about.css file */

/* Values Card Specific Styles */
.values-content {
  margin-bottom: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--light-cream);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid rgba(206, 165, 74, 0.1);
}

.value-item:hover {
  background: var(--white);
  transform: translateX(5px);
  box-shadow: var(--shadow-light);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold), #e0b858);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-text h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.value-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.values-quote {
  background: linear-gradient(135deg, var(--light-cream), var(--white));
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--accent-gold);
  position: relative;
  margin-top: 2rem;
}

.values-quote::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.values-quote blockquote {
  margin: 0;
  font-style: italic;
  color: var(--primary-blue);
  line-height: 1.6;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* CTA Section Styles */
.why-choose-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7a 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  box-shadow: var(--shadow-heavy);
}

.why-choose-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(206, 165, 74, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why-choose-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.cta-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-button-primary {
  background: linear-gradient(135deg, var(--accent-gold), #e0b858);
  color: var(--white);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(206, 165, 74, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button-primary:hover::before {
  left: 100%;
}

.cta-button-primary:hover {
  background: linear-gradient(135deg, #b8913a, var(--accent-gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(206, 165, 74, 0.5);
}

.cta-button-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent-gold);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.cta-button-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-gold);
  transition: width 0.3s ease;
  z-index: -1;
}

.cta-button-secondary:hover::before {
  width: 100%;
}

.cta-button-secondary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(206, 165, 74, 0.3);
}

.cta-assurance {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.assurance-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Team Values Section Styles */
.team-values {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7a 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  color: var(--white);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.team-values::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(206, 165, 74, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.values-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.values-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.values-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar i {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.pillar:hover i {
  transform: scale(1.1) rotate(5deg);
}

.pillar h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.pillar p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
  .value-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-assurance {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .why-choose-cta,
  .team-values {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
  
  .cta-title,
  .values-title {
    font-size: 2rem;
  }
  
  .cta-description,
  .values-description {
    font-size: 1.1rem;
  }
  
  .value-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .value-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .why-choose-cta,
  .team-values {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-title,
  .values-title {
    font-size: 1.8rem;
  }
  
  .cta-description,
  .values-description {
    font-size: 1rem;
  }
  
  .pillar {
    padding: 2rem 1rem;
  }
  
  .values-quote {
    padding: 1.5rem;
  }
  
  .values-quote blockquote {
    font-size: 1rem;
  }
}

/* Make CTA buttons work as links */
.cta-button-primary,
.cta-button-secondary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
    box-sizing: border-box;
}

/* Ensure they maintain button styles */
.cta-button-primary {
    background: linear-gradient(135deg, var(--accent-gold), #e0b858);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(206, 165, 74, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-gold);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Hover effects */
.cta-button-primary:hover {
    background: linear-gradient(135deg, #b8913a, var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 165, 74, 0.4);
    color: var(--white);
}

.cta-button-secondary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 165, 74, 0.3);
    color: var(--white);
}

/* Team Values CTA Styles */
.team-values-cta {
    margin-top: 2rem;
}

.team-cta-button {
    background: linear-gradient(135deg, var(--accent-gold), #e0b858);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(206, 165, 74, 0.3);
    text-decoration: none;
}

.team-cta-button:hover {
    background: linear-gradient(135deg, #b8913a, var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 165, 74, 0.4);
    color: var(--white);
}

/* Style for content links */
.content-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.content-link:hover {
    color: var(--accent-gold);
    background-color: rgba(206, 165, 74, 0.1);
    border-bottom-color: var(--primary-blue);
}

/* Ensure CTA buttons are prominent */
.cta-button-primary,
.cta-button-secondary {
    text-align: center;
    white-space: nowrap;
}