/* Our Story Page Content Styles */
:root {
  --navy: #00587A;
  --teal: #00A6A6;
  --accent: #F4C430;
  --muted: #6B7280;
  --bg: #FFFFFF;
  --light-blue: #E6F2F5;
  --light-teal: #E0F5F5;
  --dark-navy: #003D52;
  --shadow: 0 10px 30px rgba(0, 88, 122, 0.08);
  --radius: 12px;
}

/* Story Introduction Section - Left Image, Right Content */
.story_intro {
  padding: 80px 0;
  background: var(--bg);
}

.story_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story_image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story_image img {
  width: 100%;
  height: 400px;
  display: block;
  transition: transform 0.5s ease;
}

.story_image:hover img {
  transform: scale(1.05);
}

.story_image .image_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 88, 122, 0.9), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.story_image:hover .image_caption {
  transform: translateY(0);
}

.story_content {
  padding: 20px;
}

.story_content h2 {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.story_content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--teal);
}

.story_content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story_content .highlight {
  color: var(--teal);
  font-weight: 600;
}

.story_content .features_list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.story_content .features_list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--navy);
}

.story_content .features_list li i {
  color: var(--teal);
  font-size: 1.2rem;
  width: 25px;
}

/* What Makes Us Different Section */
.different_section {
  padding: 80px 0;
  background: var(--light-blue);
}

.different_header {
  text-align: center;
  margin-bottom: 50px;
}

.different_header h2 {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.different_header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--teal);
}

.different_header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.different_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.different_card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.different_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.different_card:hover::before {
  transform: scaleX(1);
}

.different_card:hover {
  transform: translateY(-10px);
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(0, 166, 166, 0.15);
}

.different_icon {
  width: 80px;
  height: 80px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.different_card:hover .different_icon {
  background: var(--teal);
  transform: rotateY(180deg) scale(1.1);
}

.different_icon i {
  font-size: 2rem;
  color: var(--teal);
  transition: all 0.4s ease;
}

.different_card:hover .different_icon i {
  color: white;
}

.different_card h3 {
  font-size: 1.3rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.different_card:hover h3 {
  color: var(--teal);
}

.different_card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Mission & Vision Section - Centered Header */
.mission_section {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.mission_header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.mission_header h2 {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.mission_header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--teal);
}

.mission_header p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.mission_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mission_card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.mission_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--teal);
  transition: all 0.3s ease;
}

.mission_card:hover {
  transform: translateY(-10px);
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(0, 166, 166, 0.15);
}

.mission_card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.mission_icon {
  width: 70px;
  height: 70px;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.mission_icon i {
  font-size: 2rem;
  color: var(--teal);
}

.mission_card h3 {
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.mission_card p {
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

