@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');
    .showcase-container {
      font-family: 'Cairo', Tahoma, Arial, sans-serif !important;
    }

/* Price Box Styles */
.price-box {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  margin: 30px 0;
}

/* Floating Shapes Animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
  }
}

/* Price Content */
.price-content {
  position: relative;
  z-index: 5;
  animation: priceAppear 1s ease-out;
}

@keyframes priceAppear {
  0% {
    transform: scale(0.5) translateY(50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Old Price Styles */
.old-price {
  font-size: 24px;
  color: #ff6b6b;
  text-decoration: line-through;
  margin-bottom: 10px;
  opacity: 0.8;
  position: relative;
}

.strike-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ee5a24);
  transform: scaleX(0);
  animation: strikeThrough 1.5s ease-out 0.5s forwards;
  transform-origin: left;
}

@keyframes strikeThrough {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

/* New Price Styles */
.new-price {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 15px;
  position: relative;
  animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.3);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.6);
  }
}

/* Price Description */
.price-description {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Savings Display */
.savings-display {
  background: rgba(255,255,255,0.2);
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  animation: savingsBounce 2s ease-in-out infinite;
}

@keyframes savingsBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.savings-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.savings-amount {
  color: #ffd700;
  font-size: 24px;
  font-weight: 900;
}

/* Payment Button Styles */
.pay-btn {
  position: relative;
  padding: 16px 32px;
  font-size: 18px;
  background: linear-gradient(135deg, #01cf8a 0%, #00b894 100%);
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(1, 207, 138, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  width: 100%;
  margin: 20px 0;
}

.pay-btn::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;
}

.pay-btn:hover::before {
  left: 100%;
}

.pay-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(1, 207, 138, 0.4);
  background: linear-gradient(135deg, #00b894 0%, #01cf8a 100%);
}

.pay-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Icon Container */
.icon-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default-icon {
  opacity: 1;
  visibility: visible;
}

/* Button Text */
.btn-text {
  font-weight: 700;
  font-family: system-ui, -apple-system, sans-serif;
  z-index: 1;
  position: relative;
}

/* Hover Animations */
.pay-btn:hover .icon {
  animation: none;
}

.pay-btn:hover .wallet-icon {
  opacity: 0;
  visibility: hidden;
}

.pay-btn:hover .card-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 0s;
}

.pay-btn:hover .payment-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 0.5s;
}

.pay-btn:hover .dollar-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 1s;
}

.pay-btn:hover .check-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 1.5s;
}

/* Active State */
.pay-btn:active .icon {
  animation: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pay-btn:active .check-icon {
  animation: checkmarkAppear 0.6s ease forwards;
  visibility: visible;
}

/* Icon Rotate Animation */
@keyframes iconRotate {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.5);
  }
  5% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  15% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  20% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.5);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.5);
  }
}

/* Checkmark Appear Animation */
@keyframes checkmarkAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Hover Effects */
.price-box:hover .floating-shapes .shape {
  animation-duration: 3s;
}

.price-box:hover .new-price {
  animation: priceGlow 1s ease-in-out infinite alternate;
}

/* Responsive Design */
@media (max-width: 768px) {
  .price-box {
    padding: 20px;
    margin: 20px 0;
  }
  
  .new-price {
    font-size: 36px;
  }
  
  .old-price {
    font-size: 20px;
  }
  
  .pay-btn {
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* Course Showcase Section Styles */
.course-showcase {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.course-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-text {
  color: #fff;
}

.showcase-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.showcase-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #e0e0e0;
}

.course-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
  font-size: 1.5rem;
  color: #667eea;
  width: 24px;
  text-align: center;
}

.highlight-item span {
  font-weight: 600;
  color: #fff;
}

.showcase-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(-5px);
}

.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-preview {
  text-align: center;
}

.preview-image {
  position: relative;
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.play-overlay i {
  font-size: 2rem;
  color: #667eea;
  margin-left: 5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.preview-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #667eea;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-containers{
  width: 100%;
}

.video-containers iframe{
  width: 30dvw !important;
  height: 30dvh !important;
  border-radius: 20px;
}


/* Responsive Design for Course Showcase */
@media (max-width: 1024px) {
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .showcase-title {
    font-size: 2.5rem;
  }
  
  .course-highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
}

@media (max-width: 768px) {

  
  .showcase-title {
    font-size: 2rem;
  }
  
  .showcase-description {
    font-size: 1.1rem;
  }
  
  .showcase-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .preview-image {
    width: 250px;
    height: 150px;
  }
  
  .video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px auto;
  }
  
  .preview-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  .course-showcase {
    padding: 60px 0;
    margin: 0 !important;
  }
  .video-containers iframe{
    width: 80dvw !important;
    height: 20dvh !important;
    border-radius: 20px;
  }
}

