/*
Theme Name: CryptoOne
Description: Next-generation SSL Certificate Lifecycle Management platform by CryptoOne
Version: 1.0
Author: CryptoOne
Author URI: https://cryptoone.co.in
Text Domain: cryptoone
*/

/* Import main stylesheet */
@import url("css/style.css");
@import url("css/cryptoone-images.css");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #f57336;
  --primary-light: #f0e5e1;
  --primary-dark: #000000;
  --ripple: #f79567;
  --secondary-color: #198754;
  --accent-color: #fd7e14;
  --danger-color: #ba1a1a;
  --warning-color: #ffc107;
  --neon-blue: #00f5ff;
  --neon-purple: #bf00ff;
  --neon-green: #39ff14;

  --text-primary: #000000;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;

  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-dark: #111827;
  --bg-gradient: linear-gradient(135deg, #f57336 0%, #f79567 100%);
  --bg-gradient-2: linear-gradient(135deg, #f57336 0%, #fd7e14 100%);
  --bg-gradient-hero: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f57336 100%
  );
  --bg-gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --bg-gradient-glow: radial-gradient(
    circle at 50% 50%,
    rgba(245, 115, 54, 0.3) 0%,
    transparent 70%
  );

  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(245, 115, 54, 0.3);
  --shadow-neon: 0 0 20px rgba(0, 245, 255, 0.5);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-2xl: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --backdrop-blur: blur(20px);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f57336 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient-glow);
  opacity: 0.1;
  z-index: -1;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.875rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, #f5f5dc 0%, #ffcccb 50%, #ffa07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--backdrop-blur);
}

.btn::before {
  content: "";
  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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--glass-border);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow), var(--shadow-neon);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--shadow-glass);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-glass);
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 115, 54, 0.1) 0%,
    rgba(247, 149, 103, 0.1) 50%,
    rgba(245, 115, 54, 0.1) 100%
  );
  z-index: -1;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo i {
  font-size: 2rem;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.powered-text {
  font-size: 0.7rem;
  color: var(--text-light);
}

.nimbus-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-gradient-hero);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(245, 115, 54, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 245, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(191, 0, 255, 0.2) 0%,
      transparent 50%
    );
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
  opacity: 0.3;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(0, 245, 255, 0.1)
  );
  animation: float 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  animation:
    float 8s ease-in-out infinite,
    glow 4s ease-in-out infinite alternate;
  background: linear-gradient(
    135deg,
    rgba(245, 115, 54, 0.3),
    rgba(247, 149, 103, 0.2)
  );
}

.shape-2 {
  width: 180px;
  height: 180px;
  top: 55%;
  right: 8%;
  animation:
    float 10s ease-in-out infinite 2s,
    glow 6s ease-in-out infinite alternate 1s;
  background: linear-gradient(
    135deg,
    rgba(0, 245, 255, 0.3),
    rgba(102, 126, 234, 0.2)
  );
}

.shape-3 {
  width: 90px;
  height: 90px;
  top: 75%;
  left: 15%;
  animation:
    float 7s ease-in-out infinite 4s,
    glow 5s ease-in-out infinite alternate 2s;
  background: linear-gradient(
    135deg,
    rgba(191, 0, 255, 0.3),
    rgba(118, 75, 162, 0.2)
  );
}

.shape-4 {
  width: 140px;
  height: 140px;
  top: 25%;
  right: 25%;
  animation:
    float 9s ease-in-out infinite 1s,
    glow 7s ease-in-out infinite alternate;
  background: linear-gradient(
    135deg,
    rgba(57, 255, 20, 0.3),
    rgba(25, 135, 84, 0.2)
  );
}

.shape-5 {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 5%;
  animation:
    float 6s ease-in-out infinite 3s,
    glow 4s ease-in-out infinite alternate 1.5s;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.3),
    rgba(253, 126, 20, 0.2)
  );
}

.shape-6 {
  width: 110px;
  height: 110px;
  top: 10%;
  right: 5%;
  animation:
    float 11s ease-in-out infinite 2.5s,
    glow 6s ease-in-out infinite alternate 0.5s;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(245, 115, 54, 0.1)
  );
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-30px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(-15px) rotate(240deg) scale(0.9);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    filter: brightness(1);
  }
  100% {
    box-shadow: 0 8px 60px rgba(245, 115, 54, 0.4);
    filter: brightness(1.3);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
  min-height: 70vh;
  padding: 2rem 0;
}

.hero-text {
  position: relative;
  z-index: 11;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
  word-wrap: break-word;
  hyphens: none;
}

.pqc-container {
  margin-bottom: 1rem;
}

.pqc-badge-small {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--neon-green)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Certificate Dashboard */
.certificate-dashboard {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  border-radius: var(--border-radius-2xl);
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.certificate-dashboard::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(245, 115, 54, 0.1) 45deg,
    transparent 90deg,
    rgba(0, 245, 255, 0.1) 135deg,
    transparent 180deg,
    rgba(191, 0, 255, 0.1) 225deg,
    transparent 270deg,
    rgba(245, 115, 54, 0.1) 315deg,
    transparent 360deg
  );
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.certificate-dashboard:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glass), var(--shadow-glow), var(--shadow-neon);
}

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

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-color);
  animation: pulse 2s infinite;
}

.status-indicator.warning {
  background: var(--warning-color);
}

.status-indicator.active {
  background: var(--secondary-color);
}

.dashboard-content {
  display: grid;
  gap: 1rem;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--backdrop-blur);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.8s;
}

.metric-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    var(--shadow-glass),
    0 0 30px rgba(245, 115, 54, 0.3);
}

.metric-card:hover::before {
  left: 100%;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.metric-icon.warning {
  background: rgba(249, 115, 22, 0.3);
  color: #f97316;
}

.metric-icon.success {
  background: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.metric-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.metric-info p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Warning Section */
.warning-section {
  background: linear-gradient(
    90deg,
    white 50%,
    linear-gradient(135deg, #f0e5e1 0%, #f79567 100%) 50%
  );
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.warning-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 193, 7, 0.1) 50%
  );
  z-index: 1;
}

.warning-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-2xl);
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.warning-icon {
  font-size: 4rem;
  color: var(--warning-color);
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
  animation: pulse 2s ease-in-out infinite;
}

.warning-text h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
}

.warning-text p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: var(--backdrop-blur);
  padding: 2.5rem;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-bounce);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(245, 115, 54, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Solutions Section */
.solutions {
  padding: 6rem 0;
  background: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  text-align: center;
}

.solution-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow-lg);
}

.solution-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.solution-item span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.team-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(245, 115, 54, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(247, 149, 103, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-lg);
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-logo {
  height: 80px;
  width: auto;
  margin-bottom: 2rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-info p {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.contact-btn {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: var(--shadow-glow);
  }
  50% {
    box-shadow:
      var(--shadow-glow),
      0 0 40px rgba(245, 115, 54, 0.5);
    transform: translateY(-2px) scale(1.02);
  }
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--primary-color);
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-nimbus-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Advanced Animations */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes morphing {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

@keyframes floatingParticles {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

.morphing-shape {
  animation: morphing 8s ease-in-out infinite;
}

.shimmer-effect {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Glassmorphism utilities */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.neon-border {
  position: relative;
}

.neon-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00f5ff, #bf00ff, #39ff14, #f57336);
  background-size: 400% 400%;
  border-radius: inherit;
  z-index: -1;
  animation: gradientShift 4s ease infinite;
}

/* Enhanced scroll animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .warning-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    margin: 0 1rem;
  }

  .warning-icon {
    font-size: 3rem;
  }

  .warning-text h2 {
    font-size: 1.5rem;
  }

  .warning-section {
    background: white;
  }

  .warning-section::before {
    background: rgba(255, 255, 255, 0.9);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-logo {
    flex-direction: row;
    gap: 1rem;
  }

  .powered-by {
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-logo {
    height: 60px;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .pqc-badge-small {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* Blog Styles */
.blog-header {
  padding: 8rem 0 4rem;
  background: var(--bg-gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(245, 115, 54, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 245, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.blog-header-content {
  position: relative;
  z-index: 2;
}

.blog-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.blog-posts {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.blog-card-title {
  margin-bottom: 1rem;
}

.blog-card-title a {
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
}

.blog-tag {
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.topic-list {
  list-style: none;
}

.topic-list li {
  margin-bottom: 0.75rem;
}

.topic-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: var(--transition);
  padding: 0.5rem;
  border-radius: var(--border-radius);
}

.topic-list a:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
}

.topic-list i {
  color: var(--primary-color);
  width: 16px;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.blog-pagination {
  grid-column: 1;
  text-align: center;
  margin-top: 2rem;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.blog-pagination a,
.blog-pagination span {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.blog-pagination a:hover,
.blog-pagination .current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.no-posts {
  grid-column: span 2;
  text-align: center;
  padding: 4rem 2rem;
}

.no-posts-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-posts i {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.no-posts h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.no-posts p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Single Post Styles */
.single-post-header {
  padding: 8rem 0 4rem;
  background: var(--bg-gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.single-post-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(245, 115, 54, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 245, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.post-header-content {
  position: relative;
  z-index: 2;
}

.post-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.post-breadcrumb a {
  color: white;
  text-decoration: none;
}

.post-breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}

.current-page {
  opacity: 0.6;
}

.post-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.post-meta i {
  color: var(--primary-color);
}

.post-featured-image {
  margin-top: 3rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post-content {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.post-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.post-content {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  line-height: 1.8;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content h2 {
  font-size: 2rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--border-radius);
  font-style: italic;
}

.post-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-tags h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-tag {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.post-cta {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-text h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-text p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.post-navigation {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.nav-previous,
.nav-next {
  padding: 1rem;
  border-radius: var(--border-radius);
  background: var(--bg-secondary);
  transition: var(--transition);
}

.nav-previous:hover,
.nav-next:hover {
  background: var(--primary-light);
}

.nav-previous a,
.nav-next a {
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.nav-direction {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-title {
  font-weight: 600;
  line-height: 1.3;
}

.nav-next {
  text-align: right;
}

.back-to-blog {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.related-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-post-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.related-post-item a {
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.related-post-item a:hover {
  color: var(--primary-color);
}

.related-post-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-share {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-share a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-linkedin {
  background: #0077b5;
  color: white;
}

.share-email {
  background: var(--text-secondary);
  color: white;
}

.social-share a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
  .blog-grid,
  .post-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-sidebar,
  .post-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-title,
  .post-title {
    font-size: 2.5rem;
  }

  .post-meta {
    gap: 1rem;
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-next {
    text-align: left;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .blog-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
