.about-section {
  padding: 80px 20px;
  background: #0f0f0fce;
  color: #fff;
}

.about-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* LEFT */
.about-left img {
  width: 350px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
  transition: 0.3s;
}

.about-left img:hover {
  transform: scale(1.05);
}

/* RIGHT */
.about-right {
  max-width: 1000px;
}

.about-right h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff0000;
}

.about-right p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ffffff;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: red;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fff;
  color: red;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left img {
    width: 180px;
  }

  .about-right h2 {
    font-size: 28px;
  }
}
.mv-section {
  padding: 80px 20px;
}

/* Container */
.mv-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Cards */
.mv-card {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.257);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.mv-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,0,0,0.2), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

/* Hover effect */
.mv-card:hover::before {
  opacity: 1;
}

.mv-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255,0,0,0.4);
}

/* Text */
.mv-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: red;
}

.mv-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .mv-container {
    flex-direction: column;
    gap: 20px;
  }

  .mv-card {
    padding: 20px;
  }

  .mv-card h2 {
    font-size: 22px;
  }

  .mv-card p {
    font-size: 14px;
  }
}
.cta-section {
  padding: 80px 20px;
  text-align: center;
}

/* Container */
.cta-container {
  max-width: 800px;
  margin: auto;
}

/* Title */
.cta-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff0000, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1s ease forwards;
}

/* Subtitle */
.cta-subtitle {
  font-size: 20px;
  color: #000000;
  margin-bottom: 30px;
  animation: fadeUp 1.2s ease forwards;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Button base */
.cta-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* Primary button */
.cta-btn.primary {
  background: red;
  color: #fff;
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

/* Pulse animation */
.cta-btn.primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: red;
  opacity: 0.5;
  top: 0;
  left: 0;
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Secondary */
.cta-btn.secondary {
  border: 1px solid red;
  color: red;
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}