/* Cybrige Website Styles */

:root {
  /* Professional Security Color Palette */
  --primary-dark: #1C1C1C;
  --secondary-dark: #2a2a2a;
  --tertiary-dark: #333333;
  --security-red: #E62429;
  --pure-white: #FFFFFF;
  --light-gray: #F5F5F5;
  --text-primary: #FFFFFF;
  --text-secondary: #b3b3b3;
  --text-muted: #666666;
  --text-dark: #1C1C1C;
  --gradient-primary: linear-gradient(135deg, var(--security-red), #c41e22);
  --gradient-secondary: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--security-red), var(--primary-dark));

  /* Professional Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* Spacing */
  --section-padding: 100px 0;

  /* Professional Shadows */
  --shadow-primary: 0 0 20px rgba(230, 36, 41, 0.3);
  --shadow-secondary: 0 0 20px rgba(28, 28, 28, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-elegant: 0 8px 32px rgba(230, 36, 41, 0.15);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: var(--font-weight-normal);
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(42, 42, 42, 0.8) 0%, var(--primary-dark) 100%);
}

#matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E62429' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Navigation */
.cybrige-nav {
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 36, 41, 0.2);
  transition: all 0.3s ease;
  padding: 18px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.cybrige-nav.scrolled {
  background: rgba(28, 28, 28, 0.98);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-segment {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 4px solid transparent;
}

.segment-1 {
  border-top-color: var(--security-red);
  border-right-color: var(--security-red);
  transform: rotate(0deg);
  animation: rotate-segment 8s linear infinite;
}

.segment-2 {
  border-right-color: var(--security-red);
  border-bottom-color: var(--security-red);
  transform: rotate(90deg);
  animation: rotate-segment 8s linear infinite reverse;
  opacity: 0.8;
}

.segment-3 {
  border-bottom-color: var(--security-red);
  border-left-color: var(--security-red);
  transform: rotate(180deg);
  animation: rotate-segment 8s linear infinite;
  opacity: 0.6;
}

.segment-4 {
  border-left-color: var(--security-red);
  border-top-color: var(--security-red);
  transform: rotate(270deg);
  animation: rotate-segment 8s linear infinite reverse;
  opacity: 0.4;
}

@keyframes rotate-segment {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.brand-content {
  display: flex;
  flex-direction: column;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  font-size: 1.6rem;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  text-shadow: 0 0 10px rgba(230, 36, 41, 0.5);
}

.brand-tagline {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-medium);
}

/* Enhanced Navigation Styles */

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
  margin: 0 2px;
}

/* Right-side navigation styling */
.navbar-nav-right {
  align-items: center;
  gap: 8px;
}

.nav-link-contact {
  background: rgba(230, 36, 41, 0.1);
  border: 1px solid rgba(230, 36, 41, 0.2);
}

.nav-link-contact:hover {
  background: rgba(230, 36, 41, 0.2);
  border-color: var(--security-red);
  transform: translateY(-1px);
}

.nav-link-login {
  background: rgba(245, 245, 245, 0.1);
  border: 1px solid rgba(245, 245, 245, 0.2);
}

.nav-link-login:hover {
  background: rgba(245, 245, 245, 0.2);
  border-color: var(--light-gray);
  transform: translateY(-1px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--security-red);
  text-shadow: 0 0 10px rgba(230, 36, 41, 0.5);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.cybrige-dropdown {
  background: rgba(42, 42, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 36, 41, 0.2);
  border-radius: 10px;
  padding: 10px 0;
}

.cybrige-dropdown .dropdown-item {
  color: var(--text-primary);
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.cybrige-dropdown .dropdown-item:hover {
  background: rgba(230, 36, 41, 0.1);
  color: var(--security-red);
}

/* Buttons */
.btn-neon {
  background: var(--gradient-primary);
  border: none;
  color: var(--primary-dark);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  color: var(--primary-dark);
}

.btn-neon::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: all 0.5s ease;
}

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

/* Enhanced Button for Navigation */
.btn-enhanced {
  background: var(--gradient-primary);
  border: none;
  color: var(--primary-dark);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 92, 92, 0.3);
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 92, 92, 0.4);
  color: var(--primary-dark);
}

.btn-enhanced::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: all 0.5s ease;
}

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

.btn-outline-neon {
  background: transparent;
  border: 2px solid var(--security-red);
  color: var(--security-red);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 28px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-neon:hover {
  background: var(--security-red);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Hero Section */
.hero-section {
  padding: var(--section-padding);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: var(--font-weight-normal);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.hero-buttons {
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--security-red);
  text-shadow: 0 0 10px rgba(230, 36, 41, 0.5);
  letter-spacing: -0.01em;
}

.stat-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: relative;
  background: rgba(42, 42, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(230, 36, 41, 0.4);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.floating-card img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: var(--shadow-elegant);
}

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

/* Advanced Image Shuffle Container */
.image-shuffle-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid rgba(230, 36, 41, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, rgba(28, 28, 28, 0.1), rgba(230, 36, 41, 0.05));
}

.shuffle-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0;
  transform: scale(1.05) rotate(1deg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(1px) brightness(0.8);
  z-index: 1;
}

.shuffle-image.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0px) brightness(1);
  z-index: 2;
}

.shuffle-image.next {
  transform: scale(0.95) rotate(-1deg) translateX(20px);
  opacity: 0.3;
  z-index: 1;
}

.shuffle-image.prev {
  transform: scale(0.95) rotate(1deg) translateX(-20px);
  opacity: 0.3;
  z-index: 1;
}









/* Advanced Animation Effects */
@keyframes shuffleSlideIn {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(5deg) translateX(100px);
    filter: blur(5px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05) rotate(2deg) translateX(20px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
    filter: blur(0px);
  }
}

@keyframes shuffleSlideOut {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
    filter: blur(0px);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.95) rotate(-2deg) translateX(-20px);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg) translateX(-100px);
    filter: blur(5px);
  }
}

@keyframes shuffleFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateY(90deg);
    filter: brightness(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1);
  }
}

@keyframes shuffleFadeOut {
  0% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2) rotateY(-90deg);
    filter: brightness(0.5);
  }
}

.shuffle-image.slide-in {
  animation: shuffleSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.shuffle-image.slide-out {
  animation: shuffleSlideOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.shuffle-image.fade-in {
  animation: shuffleFadeIn 0.6s ease-out forwards;
}

.shuffle-image.fade-out {
  animation: shuffleFadeOut 0.6s ease-in forwards;
}







/* Get Started Page Styles */
.get-started-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2C2C2C 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.get-started-hero::before {
  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="%23E62429" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--security-red);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.floating-card-get-started {
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(230, 36, 41, 0.4);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.floating-card-get-started .icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 15px 30px rgba(230, 36, 41, 0.4);
}

.floating-card-get-started .icon-container i {
  font-size: 2rem;
  color: white;
}

.floating-card-get-started h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.floating-card-get-started p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.products-selection {
  background: var(--bg-light);
}

.product-selection-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-selection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--security-red), #FF5C5C);
}

.product-selection-card:hover {
  transform: translateY(-10px);
  border-color: var(--security-red);
  box-shadow: 0 25px 50px rgba(230, 36, 41, 0.15);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.product-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.product-icon-large i {
  font-size: 1.8rem;
  color: white;
}

.product-badge {
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-content h4 {
  font-size: 1.1rem;
  color: var(--security-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-highlights {
  margin: 25px 0;
}

.feature-highlights .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-highlights .feature-item i {
  color: var(--security-red);
  margin-right: 10px;
  font-size: 0.8rem;
}

.pricing-info {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 15px;
  margin: 25px 0;
  text-align: center;
}

.price {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.price-amount {
  font-size: 1.5rem;
  color: var(--security-red);
  font-weight: 700;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Teams, Pricing, Guides, Blog, Careers Page Styles */
.teams-hero, .pricing-hero, .guides-hero, .blog-hero, .careers-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2C2C2C 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.teams-hero::before, .pricing-hero::before, .guides-hero::before, .blog-hero::before, .careers-hero::before {
  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="%23E62429" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.team-stats, .guide-stats, .blog-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.team-hero-card, .guides-hero-card, .blog-hero-card, .careers-hero-card {
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(230, 36, 41, 0.4);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.team-hero-card .icon-container, .guides-hero-card .icon-container, .blog-hero-card .icon-container, .careers-hero-card .icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 15px 30px rgba(230, 36, 41, 0.4);
}

.team-hero-card .icon-container i, .guides-hero-card .icon-container i, .blog-hero-card .icon-container i, .careers-hero-card .icon-container i {
  font-size: 2rem;
  color: white;
}

.team-hero-card h3, .guides-hero-card h3, .blog-hero-card h3, .careers-hero-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.team-hero-card p, .guides-hero-card p, .blog-hero-card p, .careers-hero-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--security-red);
  box-shadow: 0 25px 50px rgba(230, 36, 41, 0.15);
}

.team-card.leadership {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8F9FA 100%);
  border: 2px solid var(--security-red);
}

.team-image {
  margin-bottom: 20px;
}

.image-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(230, 36, 41, 0.3);
}

.image-placeholder i {
  font-size: 3rem;
  color: white;
}

.team-info h4, .team-info h5 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 8px;
}

.role {
  color: var(--security-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.bio, .expertise {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--security-red);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--security-red);
  color: white;
  transform: translateY(-2px);
}

/* Culture Cards */
.culture-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.culture-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.culture-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.culture-icon i {
  font-size: 1.8rem;
  color: white;
}

.culture-card h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.culture-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-shuffle-container {
    aspect-ratio: 4/3;
  }

  .hero-stats, .team-stats, .guide-stats, .blog-stats {
    justify-content: center;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .product-selection-card {
    padding: 30px 20px;
  }

  .team-card, .culture-card {
    padding: 20px;
  }

  .image-placeholder {
    width: 100px;
    height: 100px;
  }

  .image-placeholder i {
    font-size: 2.5rem;
  }
}

/* Pricing Page Styles */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.toggle-label {
  color: white;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--security-red);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.discount-badge {
  background: var(--security-red);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-left: 5px;
}

/* Guide Cards */
.guide-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.guide-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.guide-icon i {
  font-size: 1.5rem;
  color: white;
}

.guide-content h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.guide-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.guide-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.difficulty {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.difficulty.easy {
  background: #d4edda;
  color: #155724;
}

.difficulty.medium {
  background: #fff3cd;
  color: #856404;
}

.difficulty.hard {
  background: #f8d7da;
  color: #721c24;
}

.duration {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* API Cards */
.api-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.api-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.api-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.api-header h4 {
  color: #1C1C1C;
  font-weight: 700;
}

.api-version {
  background: var(--security-red);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.api-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.api-features {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.feature-tag {
  background: #F5F5F5;
  color: #666;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .image-shuffle-container {
    aspect-ratio: 1/1;
  }

  .hero-stats, .team-stats, .guide-stats, .blog-stats {
    flex-direction: column;
    gap: 15px;
  }

  .pricing-toggle {
    flex-direction: column;
    gap: 15px;
  }

  .guide-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* Blog Page Styles */
.featured-article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.featured-article-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.article-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image .image-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image .image-placeholder i {
  font-size: 2rem;
  color: white;
}

.article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-content {
  padding: 30px;
}

.article-content h3, .article-content h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.article-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #999;
}

.mini-article-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mini-article-card:hover {
  transform: translateY(-3px);
  border-color: var(--security-red);
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.15);
}

.mini-article-card h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.article-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.article-card .article-image {
  height: 200px;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.category-icon i {
  font-size: 1.5rem;
  color: white;
}

.category-card h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.category-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-count {
  color: var(--security-red);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form {
  max-width: 400px;
  margin-left: auto;
}

.newsletter-form .input-group {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  flex: 1;
}

.newsletter-form .btn {
  border-radius: 0;
  padding: 15px 30px;
  border: none;
}

/* Careers Page Styles */
.career-benefits {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.benefit-item i {
  color: var(--security-red);
  font-size: 1.2rem;
}

.job-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.job-header h4 {
  color: #1C1C1C;
  font-weight: 700;
}

.job-type {
  background: var(--security-red);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.job-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #999;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-skills {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.skill-tag {
  background: #F5F5F5;
  color: #666;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.benefit-card h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.benefit-icon i {
  font-size: 1.5rem;
  color: white;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  color: #666;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--security-red);
  font-weight: bold;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--security-red);
  box-shadow: 0 25px 50px rgba(230, 36, 41, 0.15);
}

.pricing-card.featured {
  border-color: var(--security-red);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--security-red);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h4 {
  color: #1C1C1C;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.2rem;
  color: var(--security-red);
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  color: var(--security-red);
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #666;
  margin-left: 5px;
}

.price-description {
  color: #666;
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  color: #666;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 0.9rem;
}

.pricing-features li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--security-red);
  font-size: 0.8rem;
}

/* Practice Cards */
.practice-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.practice-card:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.practice-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.practice-icon i {
  font-size: 1.5rem;
  color: white;
}

.practice-card h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.practice-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.practice-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.practice-list li {
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
}

.practice-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--security-red);
  font-weight: bold;
}

/* Culture Highlight Cards */
.culture-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.culture-highlight:hover {
  transform: translateY(-5px);
  border-color: var(--security-red);
  box-shadow: 0 20px 40px rgba(230, 36, 41, 0.15);
}

.culture-highlight .culture-icon {
  margin: 0;
  flex-shrink: 0;
}

.culture-content h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.culture-content p {
  color: #666;
  line-height: 1.6;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--security-red), #FF5C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.3);
}

.process-step h4 {
  color: #1C1C1C;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  border-color: var(--security-red);
  box-shadow: 0 10px 25px rgba(230, 36, 41, 0.15);
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #F8F9FA;
}

.faq-question h5 {
  color: #1C1C1C;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: var(--security-red);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 30px 20px;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Duration and Meta Styles */
.duration {
  color: #999;
  font-size: 0.9rem;
}

/* Section Titles */
.section-title {
  color: #1C1C1C;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Sections */
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }

  .pricing-header h4 {
    font-size: 1.3rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .culture-highlight {
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 30px 20px;
  }

  .amount {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--gradient-primary);
  animation: scroll-pulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Section Styles */
.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: var(--font-weight-normal);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Product Cards */
.product-card {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 36, 41, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: var(--security-red);
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-dark);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
  color: var(--security-red);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.product-card h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.product-card p {
  font-family: var(--font-primary);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list i {
  color: var(--security-red);
  font-size: 0.8rem;
}

/* Service Cards */
.service-card {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 36, 41, 0.2);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--security-red);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
  color: var(--security-red);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-content p {
  font-family: var(--font-primary);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* Case Study Cards */
.case-study-card {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 36, 41, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: var(--security-red);
}

.case-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.case-study-card:hover .case-image img {
  transform: scale(1.1);
}

.case-content {
  padding: 1.5rem;
}

.case-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--pinkish-red);
}

.case-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 92, 92, 0.2);
  border-radius: 20px;
  padding: 3rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.stars i {
  color: var(--pinkish-red);
  font-size: 1.2rem;
}

.testimonial-content p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.author-info h5 {
  color: var(--pinkish-red);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  background: rgba(255, 92, 92, 0.1);
  border: 1px solid var(--pinkish-red);
  color: var(--pinkish-red);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background: var(--pinkish-red);
  color: var(--primary-dark);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

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

.dot.active {
  background: var(--pinkish-red);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(230, 36, 41, 0.2);
  border-bottom: 1px solid rgba(230, 36, 41, 0.2);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--security-red);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: var(--font-weight-normal);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* Footer */
.cybrige-footer {
  background: rgba(28, 28, 28, 0.95);
  border-top: 1px solid rgba(230, 36, 41, 0.2);
  padding: 3rem 0 1rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(230, 36, 41, 0.5);
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 92, 92, 0.1);
  border: 1px solid var(--pinkish-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pinkish-red);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--pinkish-red);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--pinkish-red);
}

.footer-divider {
  border-color: rgba(255, 92, 92, 0.2);
  margin: 2rem 0 1rem;
}

.copyright, .contact-info {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info i {
  color: var(--pinkish-red);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .product-card, .service-card {
    margin-bottom: 2rem;
  }
  
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .navbar-nav-right {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 92, 92, 0.2);
  }

  .navbar-nav-right .nav-item {
    margin-bottom: 0.5rem;
  }

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

@media (max-width: 768px) {
  .logo-circle {
    width: 35px;
    height: 35px;
  }

  .circle-segment {
    width: 35px;
    height: 35px;
    border-width: 3px;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .cybrige-nav {
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    gap: 8px;
  }

  .logo-circle {
    width: 30px;
    height: 30px;
  }

  .circle-segment {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }

  .brand-text {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
  }

  .brand-tagline {
    font-size: 0.55rem;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .product-card, .service-card, .testimonial-content {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
  }

  .navbar-nav .nav-link {
    padding: 10px 12px;
    margin: 2px 0;
  }
}

/* Page-specific Styles */
.page-header {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 92, 92, 0.2);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.content-section {
  padding: 60px 0;
}

.content-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 92, 92, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-card h3 {
  color: var(--pinkish-red);
  margin-bottom: 1rem;
}

.content-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 92, 92, 0.2);
  border-radius: 20px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 92, 92, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--pinkish-red);
  box-shadow: 0 0 10px rgba(255, 92, 92, 0.3);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 92, 92, 0.3);
  border-radius: 50%;
  border-top-color: var(--pinkish-red);
  animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.alert-custom {
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: none;
}

.alert-success {
  background: rgba(255, 92, 92, 0.1);
  color: var(--pinkish-red);
  border: 1px solid rgba(255, 92, 92, 0.3);
}

.alert-error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 0, 0, 0.3);
}
