.secondary-launch-section {
  position: relative !important;
  padding: 80px 0 90px !important;
  background: linear-gradient(135deg, #0a0a3a 0%, #1a1a6e 45%, #3a1a8a 100%) !important;
  overflow: hidden;
  color: #ffffff !important;
  clear: both;
  width: 100%;
  display: block;
  z-index: 1;
  margin: 0;
}
.secondary-launch-section::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,193,7,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: secPulseGlow 5s ease-in-out infinite;
  z-index: 0;
}
.secondary-launch-section::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -150px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,210,255,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: secPulseGlow 6s ease-in-out infinite reverse;
  z-index: 0;
}
@keyframes secPulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.secondary-launch-section .container { position: relative; z-index: 2; }
.secondary-launch-section .text-center { position: relative; z-index: 2; }
.secondary-launch-section .sec-badge {
  display: inline-block;
  background: linear-gradient(45deg, #ffc107, #ff6b35);
  color: #0a0a3a !important;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(255,193,7,0.4);
  animation: secBounceBadge 2s ease-in-out infinite;
}
@keyframes secBounceBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.secondary-launch-section .sec-title {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 15px;
  background: linear-gradient(90deg, #ffffff 0%, #ffc107 50%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  color: #ffffff;
}
.secondary-launch-section .sec-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85) !important;
  max-width: 780px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.secondary-launch-section .sec-gallery {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}
.secondary-launch-section .sec-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a6e;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  width: 100%;
  display: block;
  height: 260px;
}
@media (max-width: 991px) {
  .secondary-launch-section .sec-card { height: 220px; }
}
@media (max-width: 600px) {
  .secondary-launch-section .sec-card { height: 240px; }
}
.secondary-launch-section .sec-card img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transition: transform 0.7s ease;
}
@media (max-width: 991px) {
  .secondary-launch-section .sec-card img { height: 220px !important; }
}
@media (max-width: 600px) {
  .secondary-launch-section .sec-card img { height: 240px !important; }
}
.secondary-launch-section .sec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(255,193,7,0.35);
}
.secondary-launch-section .sec-card:hover img {
  transform: scale(1.08);
}
.secondary-launch-section .sec-card .sec-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,58,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff !important;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.secondary-launch-section .sec-card:hover .sec-overlay { opacity: 1; }
.secondary-launch-section .sec-card .sec-overlay h5 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #ffc107 !important;
}
.secondary-launch-section .sec-card .sec-overlay p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.5;
}
.secondary-launch-section .sec-card .sec-corner {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,193,7,0.95);
  color: #0a0a3a !important;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 3;
}
.secondary-launch-section .sec-cta-wrap { text-align: center; position: relative; z-index: 2; }
.secondary-launch-section .sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #ffc107, #ff6b35);
  color: #0a0a3a !important;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255,107,53,0.4);
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.secondary-launch-section .sec-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,107,53,0.6);
  color: #0a0a3a !important;
  text-decoration: none !important;
}
.secondary-launch-section .sec-cta i { font-size: 18px; }

.secondary-modal .modal-content {
  background: linear-gradient(135deg, #0a0a3a 0%, #1a1a6e 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
.secondary-modal .modal-header {
  border-bottom: 1px solid rgba(255,193,7,0.3);
  padding: 18px 25px;
}
.secondary-modal .modal-title {
  color: #ffc107 !important;
  font-weight: 700;
  letter-spacing: 1px;
}
.secondary-modal .close {
  color: #fff !important;
  opacity: 0.9;
  text-shadow: none;
}
.secondary-modal .modal-body { padding: 0; }
.secondary-modal .sec-modal-banner {
  position: relative;
  width: 100%;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  background: #0a0a3a;
}
.secondary-modal .sec-modal-banner img {
  width: 100% !important; height: 100% !important;
  object-fit: cover;
  display: block;
}
.secondary-modal .sec-modal-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,58,0.95) 100%);
}
.secondary-modal .sec-modal-text {
  padding: 30px 35px 35px;
  color: #fff;
}
.secondary-modal .sec-modal-text h3 {
  color: #ffc107 !important;
  font-weight: 800;
  margin: 0 0 12px;
  font-size: 26px;
}
.secondary-modal .sec-modal-text p {
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 18px;
}
.secondary-modal .sec-modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.secondary-modal .sec-modal-features li {
  background: rgba(255,193,7,0.1);
  border-left: 3px solid #ffc107;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff !important;
  margin-bottom: 8px;
  display: block;
}
.secondary-modal .sec-modal-features li i { color: #ffc107 !important; margin-right: 8px; }
.secondary-modal .sec-modal-cta {
  display: inline-block;
  background: linear-gradient(45deg, #ffc107, #ff6b35);
  color: #0a0a3a !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.secondary-modal .sec-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.5);
  color: #0a0a3a !important;
  text-decoration: none !important;
}
