/* education-section.css */

.education-section {
  background: linear-gradient(120deg, #f5f7fa 0%, #e8eafc 100%);
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
}

/* .edu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

.edu-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.edu-left, .edu-right {
  flex: 1 1 50%;
  min-width: 320px;
  position: relative;
}

.edu-img-main {
  position: relative;
  width: 90%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
  background: #fff;
  padding: 24px 0 0 0;
  animation: floatIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes floatIn {
  0% { transform: translateY(40px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.edu-main-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
}

.edu-img-overlay {
  position: absolute;
  left: 20px;
  bottom: -40px;
  z-index: 2;
  animation: popIn 1.2s 0.3s cubic-bezier(.68,-0.55,.27,1.55) backwards;
}

@keyframes popIn {
  0% { transform: scale(0.7) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.edu-small-img {
  width: 140px;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
}

.edu-experience-box {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  display: flex;
  align-items: center;
  padding: 10px 22px 10px 10px;
  z-index: 3;
  animation: fadeIn 1.2s 0.6s cubic-bezier(.68,-0.55,.27,1.55) backwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.edu-experience-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f8cff 60%, #a084ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}

.edu-experience-num {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.edu-experience-text {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}

.edu-right {
  padding-left: 40px;
  position: relative;
}

.edu-about-us {
  margin-bottom: 18px;
}

.edu-about-badge {
  background: #ff5e8a;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(255,94,138,0.10);
  letter-spacing: 1px;
  animation: badgePop 1.1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes badgePop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.edu-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.2;
}

.edu-title-highlight {
  color: #2d6cff;
  text-decoration: underline wavy #2d6cff 2px;
  font-weight: 900;
  background: linear-gradient(90deg, #4f8cff 60%, #a084ee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: highlightFade 1.2s 0.5s cubic-bezier(.68,-0.55,.27,1.55) backwards;
}

@keyframes highlightFade {
  0% { opacity: 0; letter-spacing: 0.2em; }
  100% { opacity: 1; letter-spacing: normal; }
}

.edu-desc {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 90%;
}

.edu-mission-vision {
  margin-bottom: 32px;
}

.edu-mission, .edu-vision {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 16px;
}

.edu-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.mission-icon {
  background: linear-gradient(135deg, #4f8cff 60%, #a084ee 100%);
  color: #fff;
  position: relative;
}
.mission-icon::before {
  content: '\2708'; /* Airplane/mission icon */
  font-size: 1.2rem;
  position: absolute;
  left: 10px;
  top: 8px;
}
.vision-icon {
  background: linear-gradient(135deg, #a084ee 60%, #4f8cff 100%);
  color: #fff;
  position: relative;
}
.vision-icon::before {
  content: '\1F4DA'; /* Book/vision icon */
  font-size: 1.2rem;
  position: absolute;
  left: 10px;
  top: 8px;
}
.edu-mission h4, .edu-vision h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222;
}
.edu-mission p, .edu-vision p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
}

.edu-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
}

.edu-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  cursor: pointer;
}
.edu-btn-primary {
  background: linear-gradient(90deg, #4f8cff 60%, #a084ee 100%);
  color: #fff;
  border: none;
}
.edu-btn-primary:hover {
  background: linear-gradient(90deg, #a084ee 60%, #4f8cff 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}
.edu-btn-secondary {
  background: #fff;
  color: #ff5e8a;
  border: 2px solid #ff5e8a;
  position: relative;
  padding-left: 44px;
}
.edu-btn-secondary:hover {
  background: #ff5e8a;
  color: #fff;
  border-color: #ff5e8a;
  transform: translateY(-2px) scale(1.04);
}
.edu-live-icon {
  width: 24px;
  height: 24px;
  background: #ff5e8a;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.edu-live-icon::before {
  content: '\25B6'; /* Play icon */
  color: #fff;
  font-size: 1.1rem;
  position: absolute;
  left: 6px;
  top: 3px;
}
.edu-arrow {
  margin-left: 8px;
  font-size: 1.2rem;
  transition: margin-left 0.2s;
}
.edu-btn-primary:hover .edu-arrow {
  margin-left: 16px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .edu-row {
    flex-direction: column;
    gap: 40px;
  }
  .edu-left, .edu-right {
    min-width: 0;
    width: 100%;
    padding-left: 0;
  }
  .edu-right {
    padding-top: 30px;
  }
  .edu-img-main {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .education-section {
    padding: 32px 0 18px 0;
  }
  .edu-title {
    font-size: 1.4rem;
  }
  .edu-experience-box {
    padding: 6px 12px 6px 6px;
    top: 8px;
    left: 8px;
  }
  .edu-experience-circle {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .edu-small-img {
    width: 90px;
    border-radius: 10px;
  }
  .edu-img-overlay {
    left: 8px;
    bottom: -20px;
  }
  .edu-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Decorative elements (optional, for extra creativity) */
.education-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #a084ee33 60%, transparent 100%);
  z-index: 0;
  border-radius: 50%;
  animation: decoFloat 6s infinite alternate ease-in-out;
}
.education-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #4f8cff33 60%, transparent 100%);
  z-index: 0;
  border-radius: 50%;
  animation: decoFloat 7s infinite alternate-reverse ease-in-out;
}
@keyframes decoFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.08); }
}

/* --- HirezU Philosophy Section --- */
.hirezu-philosophy-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-row {
  display: flex;
  align-items: center;
}

.philosophy-content {
  padding-right: 30px;
}

.philosophy-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 700;
  line-height: 1.2;
}

.philosophy-highlight {
  color: #007bff;
  position: relative;
}

.philosophy-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

.philosophy-img-col {
  padding-left: 30px;
}

.philosophy-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.philosophy-img:hover {
  transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .philosophy-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .philosophy-img-col {
    padding-left: 0;
  }
  
  .philosophy-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hirezu-philosophy-section {
    padding: 60px 0;
  }
  
  .philosophy-title {
    font-size: 1.8rem;
  }
  
  .philosophy-desc {
    font-size: 1rem;
  }
}

/* --- Why Master Section --- */
.hirezu-master-section {
  background: linear-gradient(120deg, #e8eafc 0%, #f5f7fa 100%);
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
}
.master-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 36px;
}
.master-highlight {
  color: #4f8cff;
  background: linear-gradient(90deg, #4f8cff 60%, #a084ee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.master-features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.master-feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
  padding: 32px 24px 28px 24px;
  flex: 1 1 220px;
  max-width: 270px;
  min-width: 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.master-feature:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.master-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #4f8cff 60%, #a084ee 100%);
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  position: relative;
}
.feature-icon1::before {
  content: '\1F4AA'; /* Flexed biceps emoji */
  font-size: 2rem;
}
.feature-icon2::before {
  content: '\1F4CB'; /* Clipboard emoji */
  font-size: 2rem;
}
.feature-icon3::before {
  content: '\1F9E0'; /* Brain emoji */
  font-size: 2rem;
}
.feature-icon4::before {
  content: '\1F393'; /* Graduation cap emoji */
  font-size: 2rem;
}
.master-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.master-feature p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 0;
}

/* --- For Dreamers Section --- */
.hirezu-dreamers-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hirezu-dreamers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.dreamers-container {
  position: relative;
  z-index: 2;
}

.dreamers-content {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dreamers-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.dreamers-highlight {
  color: #4f8cff;
  position: relative;
}

.dreamers-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.dreamers-quote-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.dreamers-quote {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .dreamers-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hirezu-dreamers-section {
    padding: 60px 0;
  }
  
  .dreamers-title {
    font-size: 1.8rem;
  }
  
  .dreamers-desc {
    font-size: 1rem;
  }
  
  .dreamers-quote {
    font-size: 1.1rem;
  }
}
