* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  background: #030303;
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ======================== SECTION SEPARATOR LINES ======================== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cc0000, #ff4444, #cc0000, transparent);
  margin: 0 auto;
}

/* Each section gets a top border line */
section {
  position: relative;
  z-index: 2;
  background: #030303;
  padding: 35px 0;
}

/* Add separator line before each section except first */
section:not(.hero)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 0, 0, 0.5), #cc0000, rgba(204, 0, 0, 0.5), transparent);
}

/* Hero section special padding */
.hero {
  padding-top: 80px;
  padding-bottom: 50px;
}

/* ======================== HERO SECTION ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030303;
  z-index: 1;
}

/* Desktop Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/home page images/Home Page Wallpaper 02.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Mobile Background */
@media (max-width: 768px) {
  .hero-bg {
    background: /*linear-gradient(135deg, rgba(187, 6, 6, 0.2), rgba(0, 0, 0, 0.9)),*/ url('images/home page images/homepagemobile.png');
    background-size: cover;
    background-position: center;
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
  z-index: 1;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  transition: 0.3s;
}

.navbar.scrolled {
  padding: 15px 40px;
  background: #03030300;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 35px;
  width: auto;
}

.logo-text-ani {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: #00e1ff;
  letter-spacing: 1px;
}

.logo-text-3d {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: #cc0000;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .logo-img { height: 25px; }
  .logo-text-ani, .logo-text-3d { font-size: 1.3rem; }
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-links a:hover { color: #ff0000; }

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #ff0000;
}

/* ======================== HERO CONTENT ======================== */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 00px;
  align-items: center;
}

.hero-left { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #cc0000;
  margin-bottom: 25px;
}

.hero-left h1 {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: transparent;
  border: 2px solid #cc0000;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
   background: rgba(204, 0, 0, 0.1);
  transform: translateY(-3px);
}


.btn-outline {
  background: transparent;
  border: 2px solid #cc0000;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: rgba(204, 0, 0, 0.1);
  transform: translateY(-3px);
}

.hero-right { display: flex; justify-content: flex-end; }

.hero-3d-graphics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.glass-card-3d {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  border: 5px solid rgba(204, 0, 0, 0.2);
  transition: 0.3s;
}

.glass-card-3d:hover {
  border-color: #cc0000;
  transform: translateY(-5px);
}

.glass-card-3d i {
  font-size: 2rem;
  color: #cc0000;
  margin-bottom: 10px;
}

.glass-card-3d h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #fff;
}

.glass-card-3d p {
  font-size: 0.65rem;
  color: #aaa;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: #aaa;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ======================== ABOUT SECTION  ======================== */
.about-section {
  background: #030303;
  padding: 50px 0;
}

.about-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-tag {
  display: inline-block;
  background: rgba(204, 0, 0, 0.15);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: #ff6666;
  margin-bottom: 15px;
}

.about-header h2 {
  font-size: 2.5rem;
  font-family: 'Orbitron', monospace;
  margin-bottom: 10px;
}

.about-subtitle {
  color: #888;
  font-size: 0.9rem;
}

/* SINGLE BOX - Dono columns ek hi box mein */
.about-single-box {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  border: 1px solid rgba(204, 0, 0, 0.2);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 45px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-single-box:hover {
  border-color: #cc0000;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(204, 0, 0, 0.15);
}

/* Left Column */
.about-left {
  border-right: 1px solid rgba(204, 0, 0, 0.2);
  padding-right: 40px;
}

/* Right Column */
.about-right {
  padding-left: 0;
}

/* Icon styling - Same for both sides */
.about-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.15), rgba(204, 0, 0, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(204, 0, 0, 0.3);
}

.about-icon i {
  font-size: 2rem;
  color: #cc0000;
}

/* Text styling - Simple, no highlight design */
.about-left p, .about-right p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Simple Quote - Sirf red color, koi design nahi */
.simple-quote {
  color: #cc0000;
  font-weight: 500;
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.end-quote {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-single-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .about-left {
    border-right: none;
    border-bottom: 1px solid rgba(204, 0, 0, 0.2);
    padding-right: 0;
    padding-bottom: 25px;
  }
  
  .about-right {
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-header h2 {
    font-size: 1.8rem;
  }
  
  .about-single-box {
    padding: 22px;
  }
  
  .about-icon {
    width: 50px;
    height: 50px;
  }
  
  .about-icon i {
    font-size: 1.5rem;
  }
  
  .about-left p, .about-right p {
    font-size: 0.85rem;
  }
  
  .simple-quote {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-single-box {
    padding: 18px;
  }
  
  .simple-quote {
    font-size: 0.85rem;
  }
}

/* Video Sections */
.video-section { background: #030303; }

.section-header-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.section-header-between h2 {
  font-size: 1.8rem;
  font-family: 'Orbitron', monospace;
}

.section-subtitle {
  color: #888;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.view-all-btn {
  background: transparent;
  border: 2px solid #cc0000;
  color: #cc0000;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.view-all-btn:hover {
  background: #cc0000;
  color: white;
  transform: translateX(5px);
}

.featured-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) { .featured-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .featured-grid-4 { grid-template-columns: 1fr; } }

.feature-card {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(204, 0, 0, 0.2);
  transition: 0.4s;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #cc0000;
}

.card-thumb {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.card-thumb:hover .play-overlay { opacity: 1; }
.play-overlay i { font-size: 2.5rem; color: #cc0000; }

.card-info { padding: 15px; }
.card-info h3 { font-size: 0.9rem; margin-bottom: 6px; color: #fff; }
.card-info p { color: #aaa; font-size: 0.7rem; line-height: 1.4; }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  background: rgba(204, 0, 0, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.6rem;
  color: #ff6666;
}


/* ======================== OWL3D SECTION - IMPROVED ======================== */
.owl3d-section { 
  background: #030303; 
  padding: 35px 0;
}

.owl3d-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: rgba(204, 0, 0, 0.15);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: #ff6666;
  margin-bottom: 9px;
}

.owl3d-header h2 {
  font-size: 2.5rem;
  font-family: 'Orbitron', monospace;
  margin-bottom: 5px;
}

.gradient-text {
  background: linear-gradient(135deg, #cc0000, #ff4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.owl3d-subtitle {
  color: #888;
  font-size: 0.9rem;
}

.owl3d-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.owl3d-box {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(204, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.owl3d-box:hover {
  border-color: #cc0000;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(204, 0, 0, 0.15);
}

/* Icon at top */
.owl3d-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.15), rgba(204, 0, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 1px solid rgba(204, 0, 0, 0.3);
}

.owl3d-icon i {
  font-size: 2.5rem;
  color: #cc0000;
}

/* Content styles */
.owl3d-content {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.owl3d-content p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

/* Highlight text */
.highlight-text {
  color: #cc0000;
  font-weight: 600;
  font-size: 1rem;
}

/* Quote style */
.owl3d-quote {
  background: rgba(204, 0, 0, 0.08);
  border-left: 4px solid #cc0000;
  padding: 15px 25px;
  margin: 25px 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.owl3d-quote i {
  font-size: 1.8rem;
  color: #cc0000;
  opacity: 0.7;
}

.owl3d-quote p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  font-family: 'Orbitron', monospace;
}

/* Responsive */
@media (max-width: 768px) {
  .owl3d-section {
    padding: 40px 0;
  }
  
  .owl3d-header h2 {
    font-size: 1.8rem;
  }
  
  .owl3d-box {
    padding: 25px;
  }
  
  .owl3d-icon {
    width: 55px;
    height: 55px;
  }
  
  .owl3d-icon i {
    font-size: 1.8rem;
  }
  
  .owl3d-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .owl3d-quote {
    padding: 12px 18px;
  }
  
  .owl3d-quote i {
    font-size: 1.3rem;
  }
  
  .owl3d-quote p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .owl3d-box {
    padding: 18px;
  }
  
  .owl3d-content p {
    font-size: 0.8rem;
  }
  
  .highlight-text {
    font-size: 0.85rem;
  }
}




/* Community Section */
.community-section { background: #030303; }

.community-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.community-card-modern {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(204, 0, 0, 0.15);
  transition: 0.3s;
}

.community-card-modern:hover {
  border-color: #cc0000;
  transform: translateY(-5px);
}

.community-icon {
  width: 50px;
  height: 50px;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.community-icon i { font-size: 1.5rem; color: #cc0000; }

.community-card-modern h3 { font-size: 1.1rem; margin-bottom: 8px; color: #000000; }
.community-card-modern p { color: #888; font-size: 0.75rem; margin-bottom: 15px; }

.community-link {
  color: #cc0000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.3s;
}

.community-link:hover { color: #ff4444; }

/* Professional Contact Wrapper */
.professional-contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1300px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(20,20,20,0.95));
  backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 50px;
  border: 1px solid rgba(204,0,0,0.2);
  transition: all 0.4s ease;
}

.professional-contact-wrapper:hover {
  border-color: rgba(204,0,0,0.4);
  box-shadow: 0 25px 50px rgba(204,0,0,0.1);
}

.social-connect-section {
  flex: 1;
  padding-right: 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.social-header { text-align: left; margin-bottom: 30px; }

.social-icon-bg {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #cc0000, #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(204,0,0,0.3);
}

.social-icon-bg i { font-size: 1.8rem; color: white; }

.social-header h3 {
  font-size: 1.6rem;
  font-family: 'Orbitron', monospace;
  margin-bottom: 10px;
}

.social-header p { color: #aaa; font-size: 0.85rem; line-height: 1.5; }

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.social-link-card:hover {
  transform: translateX(8px);
  background: rgba(204,0,0,0.1);
  border-color: rgba(204,0,0,0.3);
}

.social-link-icon {
  width: 45px;
  height: 45px;
  background: rgba(204,0,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link-icon i { font-size: 1.5rem; }
.social-link-card.youtube .social-link-icon i { color: #ff0000; }
.social-link-card.discord .social-link-icon i { color: #0088cc; }
.social-link-card.instagram .social-link-icon i { color: #e4405f; }
.social-link-card.twitter .social-link-icon i { color: #1da1f2; }
.social-link-card.reddit .social-link-icon i { color: #ff4500; }
.social-link-card.email .social-link-icon i { color: #cc0000; }

.social-link-info { flex: 1; }
.social-link-info h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.social-link-info p { font-size: 0.7rem; color: #888; }

.social-link-card i:last-child { color: #666; font-size: 0.8rem; transition: 0.3s; }
.social-link-card:hover i:last-child { color: #cc0000; transform: translateX(3px); }

.social-stats {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  color: #ff6666;
}

.contact-form-section { flex: 1; }
.form-header-modern { text-align: left; margin-bottom: 25px; }

.form-icon-bg {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #cc0000, #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.form-icon-bg i { font-size: 1.5rem; color: white; }
.form-header-modern h3 { font-size: 1.6rem; font-family: 'Orbitron', monospace; margin-bottom: 8px; }
.form-header-modern p { color: #aaa; font-size: 0.85rem; }

.pro-contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.input-group-modern { display: flex; flex-direction: column; gap: 6px; }
.input-group-modern label { font-size: 0.8rem; font-weight: 500; color: #ddd; }
.input-group-modern label i { color: #cc0000; margin-right: 6px; }

.input-group-modern input,
.input-group-modern select,
.input-group-modern textarea {
  padding: 12px 15px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.input-group-modern input:focus,
.input-group-modern select:focus,
.input-group-modern textarea:focus {
  outline: none;
  border-color: #cc0000;
  background: rgba(20,20,20,0.9);
  box-shadow: 0 0 10px rgba(204,0,0,0.1);
}

.submit-btn-pro {
  background: linear-gradient(135deg, #cc0000, #ff4444);
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 5px;
}

.submit-btn-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204,0,0,0.3);
}

.btn-icon i { transition: transform 0.3s ease; }
.submit-btn-pro:hover .btn-icon i { transform: translateX(5px); }

.form-status-pro {
  text-align: center;
  font-size: 0.8rem;
  padding: 8px;
  border-radius: 30px;
  display: none;
  margin-top: 10px;
}

.form-guarantee {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  justify-content: center;
  flex-wrap: wrap;
}

.form-guarantee .guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #888;
}

.form-guarantee .guarantee-item i { color: #cc0000; font-size: 0.8rem; }

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #0a0a0a;
  max-width: 1000px;
  width: 90%;
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid #cc0000;
}

.modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.modal-video video { width: 100%; height: 100%; object-fit: contain; }

.modal-info { padding: 25px; }
.modal-info h2 { font-size: 1.3rem; color: #cc0000; margin-bottom: 15px; }

.modal-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 15px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
}

.modal-detail { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #aaa; }
.modal-detail i { color: #cc0000; }
.modal-description { color: #bbb; line-height: 1.7; margin-bottom: 20px; font-size: 0.85rem; }

.download-btn {
  background: #cc0000;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-btn:hover { background: #ff1a1a; }

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2001;
}

.close-modal:hover {
  color: #cc0000;
  transform: rotate(90deg);
}

/* Footer */
.footer {
  background: #030303;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(204, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo .logo { font-size: 1.2rem; margin-bottom: 15px; }
.footer-logo p { color: #777; font-size: 0.75rem; max-width: 250px; }

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-column h4 { color: #fff; margin-bottom: 15px; font-size: 0.85rem; }
.footer-column a {
  display: block;
  color: #777;
  text-decoration: none;
  font-size: 0.75rem;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-column a:hover { color: #cc0000; }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(204, 0, 0, 0.1);
}

.footer-bottom p { color: #555; font-size: 0.65rem; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: rgba(204, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  border: 1px solid #cc0000;
  color: #cc0000;
  font-size: 1.1rem;
}

.show-btn { opacity: 1; }
.back-to-top:hover {
  background: rgba(204, 0, 0, 0.4);
  transform: translateY(-5px);
}

/* ======================== RESPONSIVE STYLES ======================== */
@media (max-width: 1200px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 40px; 
  }
  .hero-left h1 { font-size: 3rem; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-3d-graphics { max-width: 500px; margin: 0 auto; }
  .hero-right { justify-content: center; }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000000d8;
    backdrop-filter: blur(2000px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid #cc0000;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .container { padding: 0 20px; }
  section { padding: 40px 0; }
  .hero-3d-graphics { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 40px; }
  .hero-left h1 { font-size: 2rem; }
  .hero-badge { font-size: 0.7rem; }
  .hero-3d-graphics { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .glass-card-3d { padding: 12px; }
  .glass-card-3d i { font-size: 1.3rem; }
  .glass-card-3d h4 { font-size: 0.7rem; }
  .section-header-center h2,
  .section-header-between h2 { font-size: 1.5rem; }
  .professional-contact-wrapper { flex-direction: column; padding: 25px; gap: 30px; }
  .social-connect-section { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
  .social-header { text-align: center; }
  .social-icon-bg { margin: 0 auto 20px; }
  .social-stats { justify-content: center; }
  .form-header-modern { text-align: center; }
  .form-icon-bg { margin: 0 auto 15px; }
  .form-row { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-3d-graphics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .glass-card-3d { padding: 10px; }
  .featured-grid-4 { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .community-grid-modern { grid-template-columns: 1fr; }
  .back-to-top { bottom: 15px; left: 15px; width: 35px; height: 35px; font-size: 0.9rem; }
  .professional-contact-wrapper { padding: 15px; margin: 30px 10px 0; }
}

/* ======================== FIXED 3D SHOWCASE STYLES ======================== */
.showcase-section {
  background: #030303;
  padding: 50px 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 25px;
}

.section-tag {
  display: inline-block;
  background: rgba(204, 0, 0, 0.15);
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: #ff6666;
  margin-bottom: 15px;
}

.section-header-center h2 {
  font-size: 2.2rem;
  font-family: 'Orbitron', monospace;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #aaa;
  font-size: 0.9rem;
}

.sliders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .sliders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.slider-card {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 25px;
  border: 1px solid rgba(204, 0, 0, 0.3);
  transition: 0.4s;
}

.slider-card:hover {
  border-color: #cc0000;
  transform: translateY(-5px);
}

.slider-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Orbitron', monospace;
  color: #fff;
}

.slider-title span {
  color: #cc0000;
}

/* Image Slider Styles */
.hero-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.slider-images {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.slider-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-before {
  z-index: 1;
}

.slider-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.slider-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #cc0000;
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(204, 0, 0, 0.8);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  box-shadow: 0 0 15px #cc0000;
  border: 2px solid white;
}

.slider-handle:active {
  cursor: grabbing;
}

.slider-handle svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

/* Description Text - Below Image - Properly Styled */
.slider-description {
  background: rgba(204, 0, 0, 0.08);
  border-left: 3px solid #cc0000;
  padding: 15px 18px;
  border-radius: 12px;
  margin-top: 5px;
}

.slider-description i {
  font-size: 1rem;
  vertical-align: middle;
}

.slider-description span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #ccc;
  display: inline;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-card {
    padding: 18px;
  }
  
  .slider-title {
    font-size: 1.1rem;
  }
  
  .slider-handle {
    width: 32px;
    height: 32px;
  }
  
  .slider-handle svg {
    width: 16px;
    height: 16px;
  }
  
  .slider-description {
    padding: 12px 15px;
  }
  
  .slider-description span {
    font-size: 0.7rem;
  }
}