/* NexGen Innovation Technologies (Pvt) Ltd. - Corporate Stylesheet */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Orbitron:wght@700;900&display=swap');

:root {
  /* Brand Color Palette */
  --bg-dark: #030712; /* Pitch Black Void */
  --bg-radial: radial-gradient(circle at 50% 30%, #080f25 0%, #030712 80%);
  --bg-card: rgba(10, 15, 30, 0.65); /* Deep Charcoal Slate */
  --bg-card-hover: rgba(13, 22, 45, 0.85);
  --border-color: rgba(0, 215, 226, 0.08);
  --border-hover: rgba(0, 215, 226, 0.25);
  
  /* Accent Colors */
  --blue-accent: #0088EA; /* Bright Blue */
  --cyan-accent: #00D7E2; /* Cyan/Aqua */
  --text-main: #f3f6fa;
  --text-muted: #8fa3b5;
  
  /* Fonts - Brand Typography */
  --font-display: 'Square721 BT', 'Orbitron', sans-serif; /* Brand header font */
  --font-body: 'Inter', sans-serif; /* Brand body font */
  
  /* Animation Timing */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    var(--bg-radial),
    linear-gradient(rgba(0, 215, 226, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 215, 226, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 55px 55px, 55px 55px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 500;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  
  /* Moving Background Grid */
  animation: gridMove 240s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 1000px 1000px, 1000px 1000px; }
}


/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #111827;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
}

p {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* Centralized Grid Containers */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Modular Sections */
.section {
  padding: 90px 0;
  position: relative;
  width: 100%;
}

.section-dark {
  background-color: #030712;
}

.section-navy {
  background-color: #050915;
  border-top: 1px solid rgba(0, 215, 226, 0.06);
  border-bottom: 1px solid rgba(0, 215, 226, 0.06);
}

/* Section Header Styles - Matching lztech.tech */
.lz-section-header {
  text-align: center;
  margin-bottom: 55px;
}

.lz-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lz-section-header p {
  color: var(--cyan-accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 215, 226, 0.3));
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: var(--text-main);
  line-height: 1.2;
}

.brand-text span {
  color: var(--cyan-accent);
}

.brand-text em {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background: rgba(0, 215, 226, 0.06);
  box-shadow: inset 0 0 1px rgba(0, 215, 226, 0.15);
}

.nav-link.active {
  border-bottom: 2px solid var(--cyan-accent);
  border-radius: 6px 6px 0 0;
  color: var(--cyan-accent);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 285px;
  list-style: none;
  padding: 10px 0;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.dropdown-link:hover {
  background: rgba(0, 215, 226, 0.08);
  color: var(--cyan-accent);
  padding-left: 25px;
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-main);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px;
  background: radial-gradient(circle at center, rgba(8, 15, 37, 0.45) 0%, #030712 90%);
  overflow: hidden;
}

.hero-banner h1 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.6));
}

.hero-banner p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-weight: 500;
}

/* Side-by-Side Profile Layout */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.profile-text {
  text-align: left;
}

.profile-text h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.profile-text h4 {
  font-size: 0.9rem;
  color: var(--cyan-accent);
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.profile-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Radar scanning vector graphic */
.radar-panel {
  position: relative;
  background: rgba(10, 15, 30, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.radar-svg {
  width: 260px;
  height: 260px;
  filter: drop-shadow(0 0 15px rgba(0, 215, 226, 0.2));
}

.radar-line {
  transform-origin: 100px 100px;
  animation: radarRotate 5s linear infinite;
}

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-dot {
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Technology Showcase Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  text-align: left;
}

/* Custom Image Header for Cards (replaces emojis) */
.card-image-wrapper {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 215, 226, 0.08);
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img {
  transform: scale(1.06);
}

/* Corner Cyber Brackets */
.card::before, .card::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.card::before {
  top: -1px;
  left: -1px;
  border-top-color: var(--cyan-accent);
  border-left-color: var(--cyan-accent);
  opacity: 0.4;
}

.card::after {
  bottom: -1px;
  right: -1px;
  border-bottom-color: var(--cyan-accent);
  border-right-color: var(--cyan-accent);
  opacity: 0.4;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0, 215, 226, 0.08);
}

.card:hover::before, .card:hover::after {
  width: 20px;
  height: 20px;
  opacity: 1;
  box-shadow: 0 0 10px var(--cyan-accent);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

/* Futuristic Drones & Systems Views Sourcing Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.portfolio-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 215, 226, 0.12);
}

.portfolio-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-info {
  padding: 18px 15px;
  text-align: left;
}

.portfolio-info h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 5px;
}

.portfolio-info p {
  font-size: 0.72rem;
  color: var(--cyan-accent);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
}

/* Form Layout with Side illustration block */
.form-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 45px;
  overflow: hidden;
}

.form-illustration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(0, 215, 226, 0.05);
  padding-right: 40px;
}

.form-illustration h3 {
  font-size: 1.5rem;
  color: var(--cyan-accent);
  margin-bottom: 10px;
}

.form-illustration p {
  font-size: 0.95rem;
  text-align: center;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan-accent);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan-accent);
  box-shadow: 0 0 10px rgba(0, 215, 226, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--blue-accent);
  color: #fff;
  border: 1px solid var(--blue-accent);
  box-shadow: 0 8px 20px rgba(0, 136, 234, 0.25);
}

.btn-primary:hover {
  background: var(--cyan-accent);
  border-color: var(--cyan-accent);
  color: #030712;
  box-shadow: 0 12px 25px rgba(0, 215, 226, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(0, 215, 226, 0.05);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 15px rgba(0, 215, 226, 0.15);
  transform: translateY(-2px);
}

/* Footer styling */
footer {
  background: #02040a;
  border-top: 1px solid var(--border-color);
  padding: 70px 45px 30px 45px;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--text-main);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 55px auto 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 215, 226, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--text-main);
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-panel {
    grid-template-columns: 1fr;
  }
  .form-illustration {
    border-right: none;
    border-bottom: 1px solid rgba(0, 215, 226, 0.05);
    padding-right: 0;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .nav-menu {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 2px solid var(--cyan-accent);
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 15px;
    display: none; /* Toggled via JS */
  }
  .hamburger {
    display: block;
  }
  .hero-banner h1 {
    font-size: 2.3rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Alternating Product Row Split Layout */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.product-row.reverse {
  direction: rtl;
}

.product-row.reverse .product-details {
  direction: ltr;
}

.product-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 215, 226, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-media:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 215, 226, 0.15);
}

.product-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.product-details h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.product-details h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--cyan-accent);
  box-shadow: 0 0 8px var(--cyan-accent);
}

.product-details p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 25px;
}

/* Feature tags / lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.feature-icon-wrapper {
  background: rgba(0, 215, 226, 0.08);
  border: 1px solid rgba(0, 215, 226, 0.2);
  border-radius: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  margin-top: 2px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  background: rgba(0, 215, 226, 0.15);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 10px rgba(0, 215, 226, 0.1);
}

.feature-text strong {
  color: var(--text-main);
}

/* Glowing tech badges */
.tech-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.tech-badge {
  background: rgba(0, 215, 226, 0.05);
  border: 1px solid rgba(0, 215, 226, 0.15);
  color: var(--cyan-accent);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 215, 226, 0.02);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(0, 215, 226, 0.1);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 15px rgba(0, 215, 226, 0.1);
}

/* Glowing separators */
.glow-separator {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 215, 226, 0.25), transparent);
  margin: 60px 0;
  width: 100%;
}

.glow-separator::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--cyan-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-accent);
}

/* Responsive Product Row */
@media (max-width: 900px) {
  .product-row, .product-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
  }
  .product-row.reverse .product-details {
    direction: ltr;
  }
  .product-media img {
    height: auto;
    max-height: 350px;
    object-fit: cover;
  }
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(3, 7, 18, 0.45) 0%, rgba(3, 7, 18, 0.85) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  z-index: 2;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h1 {
  font-family: var(--font-header);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 15px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-main) 30%, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--cyan-accent);
  border-color: var(--cyan-accent);
  color: #030712;
  box-shadow: 0 0 15px var(--cyan-accent);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--cyan-accent);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 0 8px var(--cyan-accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }
  .slide-content h1 {
    font-size: 2.2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
  }
  .slider-arrow.prev {
    left: 12px;
  }
  .slider-arrow.next {
    right: 12px;
  }
}
