/* ===== CANADA INFO SECTION ===== */
.canada-info-section {
  position: relative;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #111;
  width: 100%;
  min-height: 90vh;
  background-image: url("/img/aabout33.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.canada-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* ===== LEFT IMAGE ===== */
.canada-img-wrapper {
  position: relative;
  flex: 1;
  max-width: 460px;
}

.canada-main-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.20);
}

/* ===== EXPERIENCE CARD ===== */
.canada-experience-badge {
  position: absolute;
  bottom: -35px;
  left: -35px;
  background: #fff;
  border: 8px solid #5A8DEE;
  padding: 25px 30px;
  max-width: 230px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.canada-experience-badge h1 {
  color: #5A8DEE;
  font-size: 56px;
  margin: 0;
}

.canada-experience-badge p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* ===== RIGHT CONTENT ===== */
.canada-info-content {
  flex: 1.3;
  color: #111;
}

.canada-subtitle {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.canada-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.canada-highlight {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.canada-description {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.canada-info-btn {
  background: #5A8DEE;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.canada-info-btn:hover {
  transform: translateY(-3px);
}

/* ===== ANIMATION BASE ===== */
.animate-slide-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.animate-slide-fade.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.9s ease-out;
}

.animate-from-left.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.9s ease-out;
}

.animate-from-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== TABLET VIEW ===== */
@media (max-width: 991px) {
  .canada-info-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .canada-info-row {
    flex-direction: column;
    text-align: center;
  }

  .canada-info-content {
    order: 2;
  }

  .canada-img-wrapper {
    max-width: 70%;
    margin: 0 auto;
  }

  .canada-experience-badge {
    position: static;
    margin-top: 20px;
  }

  .canada-title {
    font-size: 30px;
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 575px) {
  .canada-info-section {
    padding: 50px 15px;
  }

  .canada-info-row {
    gap: 30px;
  }

  .canada-img-wrapper {
    max-width: 90%;
  }

  .canada-title {
    font-size: 24px;
  }

  .canada-experience-badge {
    max-width: 200px;
    padding: 18px 22px;
  }

  .canada-experience-badge h1 {
    font-size: 42px;
  }
}
