@charset "UTF-8";
/* Hero Section Styles */
.cyberminds-hero {
  position: relative;
  width: 100%;
  background: #12143A;
  padding-bottom: 25px; /* Account for fixed header */
}

/* Hero Banner Container */
.hero-banner-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e27 0%, #12143A 50%, #0a0e27 100%);
}

.hero-banner-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
  animation: fadeIn 1.2s ease-in-out;
}

/* Wave Divider */
.hero-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}

.hero-wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Responsive */
@media (max-width: 1400px) {
  .cyberminds-hero {
    padding-top: 70px;
  }
}
@media (max-width: 992px) {
  .cyberminds-hero {
    padding-top: 60px;
  }
  .hero-wave-divider {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .cyberminds-hero {
    padding-top: 60px;
  }
  .hero-wave-divider {
    height: 40px;
  }
}
/* Performance Optimizations */
.hero-banner-image {
  will-change: transform, opacity;
}

/* Full-Width Content Block */
.cyberminds-content-block {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cyberminds-content-block:nth-of-type(even) {
  background: rgba(10, 14, 39, 0.3);
}

.cyberminds-content-block:nth-of-type(odd) {
  background: rgba(18, 20, 58, 0.3);
}

/* Background Pattern */
.block-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%), linear-gradient(150deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%), linear-gradient(30deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%);
  background-size: 80px 140px;
  opacity: 0.3;
  z-index: 0;
}

/* Image Column (40%) */
.image-column {
  position: relative;
  z-index: 2;
}

.block-image-wrapper {
  padding: 40px;
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 245, 255, 0.2);
}

.block-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover .block-image {
  transform: scale(1.05);
}

/* Frame Corners */
.frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #00F5FF;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-frame:hover .frame-corner {
  opacity: 1;
}

.frame-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.frame-corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.frame-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.frame-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Image Glow Effect */
.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.image-frame:hover .image-glow {
  opacity: 1;
}

/* Text Column (60%) */
.text-column {
  position: relative;
  z-index: 2;
}

.block-content-wrapper {
  padding: 40px 60px;
}

.content-inner {
  position: relative;
}

.block-number {
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(0, 245, 255, 0.05);
  line-height: 1;
  z-index: -1;
  user-select: none;
}

.block-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 20px;
}

.block-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00F5FF, transparent);
  border-radius: 2px;
}

.block-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.block-text p {
  margin-bottom: 1.5rem;
}

.block-text strong {
  color: #00F5FF;
  font-weight: 600;
}

.block-text h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* List Styling */
.block-text ul,
.block-text ol {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.block-text li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.block-text li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #00F5FF;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5rem;
}

/* Checkmark Lists */
.block-text p:has(strong:contains("✅")) {
  position: relative;
  padding-left: 2.5rem;
}

/* Links */
.block-text a {
  color: #00F5FF;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  transition: all 0.3s ease;
}

.block-text a:hover {
  color: #fff;
  border-bottom-color: #00F5FF;
}

/* Responsive Design */
@media (max-width: 991px) {
  .cyberminds-content-block {
    padding: 60px 0;
  }
  .cyberminds-content-block .row {
    flex-direction: column !important;
  }
  .block-image-wrapper {
    padding: 20px;
  }
  .block-content-wrapper {
    padding: 40px 30px !important;
  }
  .block-title {
    font-size: 2.2rem;
  }
  .block-text {
    font-size: 1rem;
  }
  .block-number {
    font-size: 80px;
    top: -10px;
    left: -15px;
  }
}
@media (max-width: 768px) {
  .cyberminds-content-block {
    padding: 40px 0;
  }
  .block-content-wrapper {
    padding: 30px 20px !important;
  }
  .block-title {
    font-size: 1.8rem;
  }
  .block-number {
    font-size: 60px;
    opacity: 0.5;
  }
}
/* Performance Optimizations */
.image-frame,
.block-image,
.frame-corner,
.image-glow {
  will-change: transform, opacity;
}

/* Main SubHero Heading Description */
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* CyberMinds Intro Section */
.cyberminds-intro-section {
  padding: 120px 0 140px;
  position: relative;
  background: linear-gradient(180deg, #12143A 0%, #0a0e27 50%, #12143A 100%);
}

/* Background Effects */
.intro-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.intro-gradient-1 {
  position: absolute;
  top: -30%;
  left: 10%;
  width: 40%;
  height: 160%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.08) 0%, transparent 70%);
  animation: floatGradient 20s ease-in-out infinite;
}

.intro-gradient-2 {
  position: absolute;
  bottom: -30%;
  right: 10%;
  width: 40%;
  height: 160%;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.06) 0%, transparent 70%);
  animation: floatGradient 25s ease-in-out infinite reverse;
}

.intro-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 15% 20%, rgba(0, 245, 255, 0.3), transparent), radial-gradient(2px 2px at 85% 30%, rgba(0, 245, 255, 0.25), transparent), radial-gradient(2px 2px at 40% 60%, rgba(0, 245, 255, 0.3), transparent), radial-gradient(2px 2px at 70% 80%, rgba(0, 245, 255, 0.25), transparent), radial-gradient(2px 2px at 25% 90%, rgba(0, 245, 255, 0.3), transparent);
  background-size: 400px 400px;
  animation: particleDrift 30s linear infinite;
}

/* Headline */
.intro-headline-wrapper {
  margin-bottom: 2rem;
}

.intro-headline {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00F5FF 0%, #fff 50%, #00F5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
  position: relative;
  z-index: 2;
}

.headline-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Subtitle */
.intro-subtitle-wrapper {
  margin-bottom: 3rem;
}

.intro-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 1280px;
  margin: 0 auto;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Raffle Banner */
.intro-banner-wrapper {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.intro-raffle-banner {
  width: 100%;
  max-width: 1320px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 245, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-raffle-banner:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 245, 255, 0.25);
}

/* Raffle CTA Button */
.raffle-cta-wrapper {
  margin-top: 3rem;
}

.raffle-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  background: linear-gradient(135deg, #00F5FF 0%, #0099ff 100%);
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3), 0 0 40px rgba(0, 245, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
}

.raffle-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4), 0 0 60px rgba(0, 245, 255, 0.3);
  color: var(--dark);
}

.raffle-cta-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.raffle-cta-btn .btn-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raffle-cta-btn .btn-text {
  position: relative;
  z-index: 2;
}

.raffle-cta-btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.raffle-cta-btn:hover .btn-shine {
  left: 100%;
}

/* Bottom Divider */
.intro-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}

.intro-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Animations */
@keyframes floatGradient {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(20px, 30px) scale(1.1);
    opacity: 1;
  }
}
@keyframes particleDrift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .cyberminds-intro-section {
    padding: 80px 0 100px;
  }
  .intro-headline {
    font-size: 2.5rem;
  }
  .intro-subtitle {
    font-size: 1.2rem;
  }
  .raffle-cta-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
  .intro-raffle-banner {
    max-width: 100%;
    border-radius: 8px;
  }
}
@media (max-width: 768px) {
  .cyberminds-intro-section {
    padding: 60px 0 80px;
  }
  .intro-headline {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .intro-subtitle {
    font-size: 1.1rem;
  }
  .raffle-cta-btn {
    padding: 14px 35px;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }
  .raffle-cta-btn .btn-icon {
    font-size: 1.3rem;
  }
  .intro-banner-wrapper {
    margin-bottom: 2rem;
  }
  .intro-raffle-banner {
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 255, 0.1);
  }
}
/* Performance */
.intro-gradient-1,
.intro-gradient-2,
.intro-particles {
  will-change: transform, opacity;
}

/* CTA Section */
.cyberminds-cta-section {
  padding: 120px 0;
  position: relative;
  /*background: linear-gradient(135deg, #0a0e27 0%, #1a1e3a 50%, #0a0e27 100%);*/
}

/* Background Effects */
.cta-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.cta-gradient-1 {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
  animation: rotateGradient 15s linear infinite;
}

.cta-gradient-2 {
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.1) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite reverse;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(3px 3px at 20% 30%, rgba(0, 245, 255, 0.4), transparent), radial-gradient(2px 2px at 60% 70%, rgba(0, 245, 255, 0.3), transparent), radial-gradient(3px 3px at 50% 50%, rgba(0, 245, 255, 0.35), transparent), radial-gradient(2px 2px at 80% 10%, rgba(0, 245, 255, 0.3), transparent), radial-gradient(3px 3px at 90% 60%, rgba(0, 245, 255, 0.4), transparent);
  background-size: 300px 300px;
  animation: particlesFloat 25s linear infinite;
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CTA Button */
.cyberminds-cta-btn {
  position: relative;
  padding: 18px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a0e27;
  background: linear-gradient(135deg, #00F5FF 0%, #00d4ff 100%);
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3), 0 0 40px rgba(0, 245, 255, 0.2);
  cursor: pointer;
}

.cyberminds-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4), 0 0 60px rgba(0, 245, 255, 0.3);
  color: #0a0e27;
}

.cyberminds-cta-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.cyberminds-cta-btn:hover .btn-glow {
  left: 100%;
}

/* Wave Bottom */
.cta-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}

.cta-wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Animations */
@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes particlesFloat {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .cyberminds-cta-section {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 2.5rem;
  }
  .cta-subtitle {
    font-size: 1.1rem;
  }
  .cyberminds-cta-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .cyberminds-cta-section {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .cyberminds-cta-btn {
    padding: 14px 35px;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }
}
/* Performance */
.cta-gradient-1,
.cta-gradient-2,
.cta-particles,
.cyberminds-cta-btn {
  will-change: transform;
}

/* CyberMinds Modal Styling - Matching Site Theme */
.cyberminds-modal .modal-content {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1e3a 50%, #0a0e27 100%);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.modal-content.cyberminds-modal {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1e3a 50%, #0a0e27 100%);
}

/* Background Effects */
.cta-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 15px;
}

.cta-gradient-1 {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
  animation: rotateGradient 15s linear infinite;
}

.cta-gradient-2 {
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.1) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite reverse;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(3px 3px at 20% 30%, rgba(0, 245, 255, 0.4), transparent), radial-gradient(2px 2px at 60% 70%, rgba(0, 245, 255, 0.3), transparent), radial-gradient(3px 3px at 50% 50%, rgba(0, 245, 255, 0.35), transparent), radial-gradient(2px 2px at 80% 10%, rgba(0, 245, 255, 0.3), transparent), radial-gradient(3px 3px at 90% 60%, rgba(0, 245, 255, 0.4), transparent);
  background-size: 300px 300px;
  animation: particlesFloat 25s linear infinite;
}

.cyberminds-modal .modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(0, 247, 255, 0.1);
  position: relative;
  z-index: 2;
}

.cyberminds-modal .modal-body {
  position: relative;
  z-index: 2;
}

.cyberminds-modal .modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.cyberminds-modal .modal-title i {
  color: var(--primary-color);
}

.title-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #fff 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cyberminds-modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.cyberminds-modal .btn-close:hover {
  opacity: 1;
}

/* Form Inputs - Matching Site's form-control-tech */
.cyberminds-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-color);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cyberminds-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
  outline: none;
}

.cyberminds-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cyberminds-input.is-valid {
  border-color: var(--success-green);
  background: rgba(0, 255, 157, 0.1);
}

.cyberminds-input.is-invalid {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-left: 10px;
}

.cyberminds-input.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Form Labels - Matching Site Theme */
.cyberminds-modal .form-label {
  color: var(--primary-color);
  margin-left: 10px;
  font-weight: 500;
}

.cyberminds-modal .form-label i {
  color: var(--accent-color);
}

/* Custom Checkbox */
.cyberminds-modal .custom-checkbox .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  margin: 0 0 0 -1.5em;
}

.cyberminds-modal .custom-checkbox .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.cyberminds-modal .custom-checkbox .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 247, 255, 0.25);
}

.cyberminds-modal .custom-checkbox .form-check-label {
  cursor: pointer;
  margin-left: 0.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Info Alert - Matching Site Theme */
.cyberminds-alert {
  background: rgba(0, 244, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 244, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.cyberminds-alert i {
  color: var(--accent-color);
}

/* Submit Button - Cyber Button Style */
.cyberminds-submit-btn {
  position: relative;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border: none;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.cyberminds-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 247, 255, 0.4);
  color: var(--dark);
}

.cyberminds-submit-btn:active {
  transform: translateY(0);
}

.cyberminds-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cyberminds-submit-btn:hover .btn-shine {
  left: 100%;
}

/* Success Animation */
.success-animation {
  display: inline-block;
}

.success-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-green) 0%, var(--accent-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-circle i {
  font-size: 3rem;
  color: var(--dark);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Success Message Text */
#cybermindsSuccessMessage h4 {
  color: var(--primary-color);
}

#cybermindsSuccessMessage p {
  color: rgba(255, 255, 255, 0.85);
}

/* Form Messages Styling */
#cybermindsFormMessages .alert {
  border-radius: 10px;
  border: 1px solid;
}

#cybermindsFormMessages .alert-success {
  background: rgba(0, 255, 157, 0.1);
  border-color: var(--success-green);
  color: var(--success-green);
}

#cybermindsFormMessages .alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #ff6b6b;
}

/* Animations */
@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes particlesFloat {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .cyberminds-modal .modal-title {
    font-size: 1.4rem;
  }
  .cyberminds-modal .modal-body {
    padding: 1.5rem !important;
  }
  .cyberminds-input {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}
/* Performance */
.cta-gradient-1,
.cta-gradient-2,
.cta-particles {
  will-change: transform;
}

/* Two-Column Modal Layout - Book-like Appearance */
.cyberminds-modal .modal-dialog {
  max-width: 1140px;
}

.modal-image-section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 750px;
  max-height: 85vh;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), rgba(121, 40, 202, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(3px);
}

.modal-raffle-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 245, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-raffle-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 245, 255, 0.3);
}

.modal-form-section {
  position: relative;
  z-index: 2;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  .cyberminds-modal .modal-dialog {
    max-width: 600px;
  }
  .modal-form-section {
    min-height: auto;
  }
  .modal-image-section {
    min-height: 450px;
    max-height: 70vh;
    padding: 1.5rem;
  }
  .modal-raffle-image {
    max-width: 350px;
    max-height: 65vh;
  }
}
