/* ==========================================
   ABOUT US PAGE BASE STYLES
   ========================================== */
.about-page-content {
  min-height: 450px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main), 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5; /* Light blue color for Home link matching screenshot */
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A; /* Purple slash color matching screenshot */
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A; /* Purple color for active page matching screenshot */
  font-weight: 600;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .breadcrumbs-section {
    padding: 16px 16px;
  }

  .breadcrumbs {
    font-size: 13.5px;
    gap: 6px;
  }
}


/* ==========================================
   CONTACT CTA SECTION
   ========================================== */
.contact-cta-section {
  background-color: #733DD9; /* Vibrant purple matching screenshot background */
  padding: 85px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #FFFFFF;
}

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

.cta-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.25;
}

.cta-description {
  font-family: 'Kalam', cursive;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 36px 0;
  line-height: 1.6;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

/* Primary white button styling */
.btn-primary-white {
  background-color: #FFFFFF;
  color: #733DD9;
  border: 1.5px solid #FFFFFF;
}

.btn-primary-white:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Secondary outline button styling */
.btn-secondary-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary-outline:hover {
  background-color: #FFFFFF;
  color: #733DD9;
  border-color: #FFFFFF;
}

/* Responsive adjustments for CTA */
@media (max-width: 767px) {
  .contact-cta-section {
    padding: 60px 16px;
  }

  .cta-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
  }
}

/* ==========================================
   OUR WORKING ENVIRONMENT SECTION
   ========================================== */
.working-environment-section {
  background-color: #FFFFFF;
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.working-environment-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.environment-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 50px 0;
  line-height: 1.25;
}

.environment-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
}

.environment-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments for Environment Section */
@media (max-width: 767px) {
  .working-environment-section {
    padding: 50px 16px;
  }

  .environment-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

/* ==========================================
   WHY CHOOSE ODOOVIZION SECTION
   ========================================== */
.why-choose-section {
  background-color: #FFFFFF;
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.why-choose-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.why-choose-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 60px 0;
  line-height: 1.25;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.why-choose-item {
  background-color: #FAF9FB; /* Soft light grey/lilac background matching screenshot card */
  border: 1.5px solid rgba(122, 79, 122, 0.1);
  border-left: 5px solid #733DD9; /* Thicker brand purple left border */
  border-radius: 6px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-choose-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(122, 79, 122, 0.05);
}

.why-choose-icon {
  font-size: 22px;
  color: #733DD9; /* Purple color matching screenshot checkmark */
  flex-shrink: 0;
}

.why-choose-text {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

/* Responsive adjustments for Why Choose */
@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-section {
    padding: 60px 24px;
  }
  
  .why-choose-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 50px 16px;
  }

  .why-choose-item {
    padding: 18px 20px;
    gap: 14px;
  }
}

/* ==========================================
   ABOUT HERO SECTION
   ========================================== */
.about-hero-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #f6f2f6 50%, #FAF8FB 100%);
  padding: 95px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

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

.about-hero-title {
  font-family: 'Kalam', cursive;
  font-size: 44px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #475569; /* Slate blue/gray color matching screenshot */
  margin: 0 0 28px 0;
  line-height: 1.35;
}

.about-hero-description {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  color: #556070;
  line-height: 1.65;
  max-width: 850px;
  margin: 0 auto 36px auto;
}

.about-hero-actions {
  display: flex;
  justify-content: center;
}

.about-hero-btn {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  background-color: #733DD9; /* Purple background */
  color: #FFFFFF;
  border: 1.5px solid #733DD9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.about-hero-btn:hover {
  background-color: transparent;
  color: #733DD9;
  border-color: #733DD9;
}

/* Responsive adjustments for About Hero */
@media (max-width: 767px) {
  .about-hero-section {
    padding: 60px 16px;
  }

  .about-hero-title {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .about-hero-subtitle {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .about-hero-description {
    font-size: 14.5px;
    margin-bottom: 28px;
  }

  .about-hero-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==========================================
   OUR STORY SECTION
   ========================================== */
.story-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.story-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-content {
  flex: 1.1;
  text-align: left;
}

.story-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 28px 0;
  line-height: 1.25;
}

.story-text {
  font-family: 'Kalam', cursive;
  font-size: 15px;
  color: #556070;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.story-text:last-of-type {
  margin-bottom: 0;
}

.story-image-wrapper {
  flex: 0.9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Scroll Animation Styles */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments for Story section */
@media (max-width: 1024px) {
  .story-container {
    gap: 40px;
  }
  
  .story-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 60px 24px;
  }
  
  .story-container {
    flex-direction: column;
    gap: 35px;
  }
  
  .story-content {
    order: 2;
  }
  
  .story-image-wrapper {
    order: 1;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .story-section {
    padding: 50px 16px;
  }
  
  .story-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* ==========================================
   OUR CORE VALUES SECTION
   ========================================== */
.values-section {
  background-color: #F9FAFB;
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.values-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.values-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 60px 0;
  line-height: 1.25;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background-color: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 45px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.value-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EBF1F6; /* Soft blue-gray tint background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon-wrapper i {
  font-size: 24px;
  color: #2F3E50; /* Muted slate/navy color */
}

.value-card-title {
  font-family: 'Kalam', cursive;
  font-size: 19px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 14px 0;
}

.value-card-text {
  font-family: 'Kalam', cursive;
  font-style: italic;
  font-size: 14.5px;
  font-weight: 400;
  color: #556070;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for Values */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .values-section {
    padding: 50px 16px;
  }

  .values-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 35px 20px;
  }
}

/* ==========================================
   OUR ACHIEVEMENTS SECTION
   ========================================== */
.achievements-section {
  background-color: #FFFFFF;
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.achievements-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.achievements-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 50px 0;
  line-height: 1.25;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-card {
  border-radius: 12px;
  padding: 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  color: #FFFFFF;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.achievement-card-1,
.achievement-card-2 {
  background: linear-gradient(135deg, #7A8D9F 0%, #475463 100%);
}

.achievement-card-3 {
  background: linear-gradient(135deg, #A19B96 0%, #635E5B 100%);
}

.achievement-card-4 {
  background: linear-gradient(135deg, #969696 0%, #5B5B5B 100%);
}

.achievement-number {
  font-family: 'Kalam', cursive;
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1;
}

.achievement-label {
  font-family: 'Kalam', cursive;
  font-style: italic;
  font-size: 15.5px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.2px;
}

/* Responsive adjustments for Achievements */
@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .achievement-number {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .achievements-section {
    padding: 50px 16px;
  }

  .achievements-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .achievement-card {
    padding: 35px 20px;
  }
}

/* ==========================================
   MEET OUR LEADERSHIP TEAM SECTION
   ========================================== */
.team-section {
  background-color: #F9FAFB; /* Very light background matching screenshot card backdrop */
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.team-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.team-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 60px 0;
  line-height: 1.25;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background-color: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 1.5px solid rgba(122, 79, 122, 0.1);
}

.team-name {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 8px 0;
}

.team-role {
  font-family: 'Kalam', cursive;
  font-size: 14.5px;
  font-weight: 700;
  color: #733DD9; /* Purple role title matching screenshot */
  margin: 0 0 16px 0;
}

.team-bio {
  font-family: 'Kalam', cursive;
  font-size: 13.5px;
  font-weight: 400;
  color: #556070;
  margin: 0;
  line-height: 1.55;
}

/* Responsive adjustments for Leadership section */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 50px 16px;
  }

  .team-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}



