:root {
  --primary-color: #667eea;
  --darkpurple: #2a1458;
  --secondary-color: #764ba2;
  --accent-color: #4c1d95;
  --accent-secondary: #5b21b6;
  --light-gray: #f3f4f6;
  --dark-gray: #333;
  --text-gray: #666;
  --badge-color1: linear-gradient(45deg, #6962ad, #e19898);
  --badge-color2: linear-gradient(45deg, #d91656, #640d5f);
  --badge-color3: linear-gradient(135deg, #d7c3f1 0%, #0d7c66 100%);
  --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --facebook-blue: #1877f2;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* Navbar Customization - Match Domain.html Style */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand h1 {
  color: var(--primary-color);
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Mega Dropdown Menu */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: none;
}

.hosting-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.hosting-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: #333;
}

.hosting-icon {
  color: #666;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.hosting-content h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.hosting-content p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #666;
}

.promo-section {
  text-align: center;
  padding: 0 20px;
}

.promo-section h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.promo-price {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 10px 0 5px;
}

.promo-price span {
  font-size: 16px;
}

.original-price {
  text-decoration: line-through;
  color: #666;
  font-size: 14px;
}

.discount-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #10b981;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin: 10px 0;
}

.purchase-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #1a2234;
  color: white !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hosting-options {
    grid-template-columns: 1fr;
    padding-right: 0;
    border-right: none;
    margin-bottom: 20px;
  }
}

/* Modern Hero Section Styles */
.modern-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%),
    url("../images/ninthgrid-4-RLopzTVQ8-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 0;
}

/* Hero Background with Particles */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.8) 0%,
    rgba(118, 75, 162, 0.8) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(
      2px 2px at 160px 30px,
      rgba(255, 255, 255, 0.2),
      transparent
    );
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleFloat 20s linear infinite;
  z-index: 2;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  animation-delay: 4s;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.badge-text {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-highlight {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-gradient {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border: none;
  color: #333;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.server-illustration {
  position: relative;
  width: 300px;
  height: 400px;
}

.server-rack {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 26, 46, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.server-unit {
  background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.server-unit.active {
  background: linear-gradient(145deg, #3a4a6e, #2a3a5e);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.server-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 2s ease;
}

.server-unit.active::before {
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.server-lights {
  display: flex;
  gap: 8px;
  align-items: center;
}

.light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.light.green {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-green 2s ease-in-out infinite;
}

.light.blue {
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
  animation: pulse-blue 2.5s ease-in-out infinite;
}

.light.orange {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
  animation: pulse-orange 1.8s ease-in-out infinite;
}

@keyframes pulse-green {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pulse-blue {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes pulse-orange {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.connection-lines {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}

.line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), transparent);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: data-flow 2s ease-in-out infinite;
}

.line-1::before {
  animation-delay: 0s;
}
.line-2::before {
  animation-delay: 0.5s;
}
.line-3::before {
  animation-delay: 1s;
}

@keyframes data-flow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* .features-section .fas{
    color: #4c1d95 !important;
} */

/* Responsive Design for Modern Hero */
@media (max-width: 992px) {
  .modern-hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .server-illustration {
    width: 250px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: 100vh;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
  }

  .modern-hero .container {
    padding-top: 0;
  }

  .modern-hero .row {
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }

  .hero-visual {
    margin-top: 2rem;
    order: -1;
  }

  .server-illustration {
    width: 200px;
    height: 260px;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
    top: 5%;
    right: 5%;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 10%;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stat-item {
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* VPN Explore Button Redesign */
.vpn-explore-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4c1d95 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4),
    0 4px 15px rgba(118, 75, 162, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vpn-explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #5b21b6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.vpn-explore-btn:hover::before {
  opacity: 1;
}

.vpn-explore-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5),
    0 8px 25px rgba(118, 75, 162, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

.vpn-explore-btn:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vpn-explore-btn:hover .btn-content {
  transform: translateX(2px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.vpn-explore-btn:hover .btn-shine {
  left: 100%;
}

.vpn-explore-btn i {
  transition: all 0.3s ease;
}

.vpn-explore-btn:hover .fa-shield-alt {
  transform: rotate(10deg) scale(1.1);
}

.vpn-explore-btn:hover .fa-arrow-right {
  transform: translateX(5px);
}

/* Responsive adjustments for VPN button */
@media (max-width: 768px) {
  .vpn-explore-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 576px) {
  .vpn-explore-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
}

/* @keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
} */

/* Enhanced Container */
.linux-hero .container {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

/* Modern Typography */
.linux-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.linux-hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 2px;
  animation: slideIn 1s ease 0.5s both;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

/* Enhanced Lead Text */
.linux-hero .lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Button Styling */
.linux-hero .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation: fadeInUp 1s ease 0.6s both;
}

.linux-hero .btn::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.5s ease;
}

.linux-hero .btn:hover::before {
  left: 100%;
}

/* Primary Button */
.linux-hero .btn-light {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.linux-hero .btn-light:hover {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  color: #0f172a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Outline Button */
.linux-hero .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.linux-hero .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Button Container */
.linux-hero .d-flex {
  animation: fadeInUp 1s ease 0.8s both;
}

/* Floating Elements */
.linux-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 4;
  animation: float 6s ease-in-out infinite;
}

.linux-hero::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 4;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .linux-hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .linux-hero .container {
    padding: 2rem 0;
  }

  .linux-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .linux-hero .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .linux-hero .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .linux-hero .d-flex {
    flex-direction: column;
    gap: 1rem !important;
  }
}

@media (max-width: 576px) {
  .linux-hero {
    min-height: 70vh;
  }

  .linux-hero h1 {
    font-size: 2rem;
  }

  .linux-hero .lead {
    font-size: 1rem;
  }

  .linux-hero .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Feature Section Styles */
.feature-item {
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Pricing Section Styles */
.pricing-card {
  padding: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-header {
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.8rem;
}

.pricing-features {
  margin: 1rem 0;
}

.feature-list {
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.feature-list i {
  color: #28a745;
  margin-right: 10px;
}

.pricing-footer {
  margin-top: 1rem;
}

.pricing-footer .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Popular Plan Highlight */
.pricing-card.popular {
  border-color: #0d6efd;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background: #0d6efd;
  color: white;
  padding: 5px 40px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Windows Pricing Section */
.windows-pricing .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.windows-pricing .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.windows-pricing .card-title {
  font-size: 1.5rem;
}

.windows-pricing .price {
  font-size: 2.5rem;
}

.windows-pricing .list-unstyled i {
  color: currentColor;
}

.windows-pricing .btn {
  border-radius: 8px;
  padding: 10px 0;
}

/* Unify Linux and VPN pricing cards with Windows style */
.linux-pricing .card,
#vpn-hosting .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linux-pricing .card:hover,
#vpn-hosting .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.linux-pricing .card-title,
#vpn-hosting .card-title {
  font-size: 1.5rem;
}

.linux-pricing .price,
#vpn-hosting .price {
  font-size: 2.5rem;
}

.linux-pricing .list-unstyled i,
#vpn-hosting .list-unstyled i {
  color: currentColor;
}

.linux-pricing .btn,
#vpn-hosting .btn {
  border-radius: 8px;
  padding: 10px 0;
}

/* Windows Shared Hosting Section Styling */
#windows-shared {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  position: relative;
  overflow: hidden;
}

#windows-shared::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="%23e0e7ff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')
    repeat;
  opacity: 0.4;
  z-index: 0;
}

#windows-shared .container {
  position: relative;
  z-index: 1;
}

/* Section Header Styling */
#windows-shared .text-center h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#windows-shared .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#windows-shared .text-muted {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b7280 !important;
  font-weight: 400;
  text-align: justify;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Card Text Styling */
#windows-shared .card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#windows-shared .card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

#windows-shared .card-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 400;
}

#windows-shared .price {
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

#windows-shared .price span:last-child {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
}

#windows-shared .list-unstyled li {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.3rem 0;
  font-weight: 500;
}

#windows-shared .list-unstyled i {
  margin-right: 0.8rem;
  font-size: 1rem;
  opacity: 0.9;
}

#windows-shared .btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#windows-shared .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Distinct card colors for each hosting type */
.windows-pricing .card:nth-child(1) {
  background-color: #d9534f;
  color: #fff;
}
.windows-pricing .card:nth-child(2) {
  background-color: #40e0d0;
  color: #222;
}
.windows-pricing .card:nth-child(3) {
  background-color: #d9534f;
  color: #fff;
}
.windows-pricing .btn {
  background-color: #a94442;
  color: #fff;
}
.windows-pricing .btn:hover {
  background-color: #7a2d2a;
}

.linux-pricing .card:nth-child(1) {
  background-color: #218838;
  color: #fff;
}
.linux-pricing .card:nth-child(2) {
  background-color: #007bff;
  color: #fff;
}
.linux-pricing .card:nth-child(3) {
  background-color: #17a2b8;
  color: #fff;
}
.linux-pricing .btn {
  background-color: #145c27;
  color: #fff;
}
.linux-pricing .btn:hover {
  background-color: #0e3e1a;
}

/* VPN Hosting cards now use inline gradient styles */
#vpn-hosting .card:nth-child(1) .btn:hover {
  background-color: #3b4bc7;
}
#vpn-hosting .card:nth-child(2) .btn:hover {
  background-color: #d81b60;
}
#vpn-hosting .card:nth-child(3) .btn:hover {
  background-color: #0277bd;
}
#vpn-hosting .btn {
  transition: all 0.3s ease;
}
#vpn-hosting .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }

  .feature-item {
    padding: 0.75rem;
  }
}

/* Features Section - Modern Styling */
.features-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  color: #ffffff;
}

/* Background pattern overlay */
.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8fafc;
}

/* Container positioning */
.features-section .container {
  position: relative;
  z-index: 3;
}

/* Section title enhancement */
.features-section h2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
  letter-spacing: -0.02em;
}

.features-section h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #6a11cb, transparent);
  border-radius: 2px;
}

.features-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #9c27b0,
    #6a11cb,
    #9c27b0,
    transparent
  );
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Feature items container */
.features-section .row {
  gap: 1rem;
}

/* Individual feature styling */
.features-section .col-md-4 > div {
  background: #ffffff;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3rem 2rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hover effect for feature cards */
.features-section .col-md-4 > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #bfa100, #ffd700, #bfa100);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.features-section .col-md-4 > div:hover::before {
  transform: scaleX(1);
}

.features-section .col-md-4 > div:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(191, 161, 0, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(191, 161, 0, 0.2);
}

/* Feature icons */
.features-section .fas {
  color: #6a11cb !important;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  filter: drop-shadow(0 4px 8px rgba(106, 17, 203, 0.2));
}

.features-section .col-md-4 > div:hover .fas {
  color: #9c27b0 !important;
  transform: scale(1.15) rotateY(360deg);
  text-shadow: 0 0 25px rgba(156, 39, 176, 0.5);
  filter: drop-shadow(0 6px 12px rgba(156, 39, 176, 0.4));
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1.15) rotateY(360deg);
  }
  50% {
    transform: scale(1.25) rotateY(360deg);
  }
}

/* Feature titles */
.features-section h3 {
  color: #2c3e50 !important;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  position: relative;
}

.features-section .col-md-4 > div:hover h3 {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 50%, #9c27b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(106, 17, 203, 0.2);
}

/* Feature descriptions */
.features-section p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.features-section .col-md-4 > div:hover p {
  color: #495057;
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-section .col-md-4 > div {
  animation: fadeInUp 0.8s ease forwards;
}

.features-section .col-md-4:nth-child(1) > div {
  animation-delay: 0.1s;
}

.features-section .col-md-4:nth-child(2) > div {
  animation-delay: 0.2s;
}

.features-section .col-md-4:nth-child(3) > div {
  animation-delay: 0.3s;
}

/* Icon container enhancement */
.features-section .fas::before {
  position: relative;
  z-index: 2;
}

.features-section .fas::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.features-section .col-md-4 > div:hover .fas::after {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.2) 0%,
    transparent 70%
  );
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .features-section {
    padding: 3rem 0;
  }

  .features-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .features-section .col-md-4 > div {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 20px;
  }

  .features-section .fas {
    font-size: 2.5rem;
  }

  .features-section h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .features-section h2 {
    font-size: 1.8rem;
  }

  .features-section .col-md-4 > div {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .features-section .fas {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .features-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .features-section p {
    font-size: 0.95rem;
  }
}

/* Ensure features stay in single row */
.features-section .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.features-section .col-md-4 {
  flex: 1;
  min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-section .row {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .features-section .col-md-4 {
    flex: none;
    width: 100%;
  }
}

/* Modern Pricing Cards */
.linux-pricing .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.linux-pricing .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.linux-pricing .card-header {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 12px 12px 0 0;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.linux-pricing .card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2),
    transparent,
    rgba(255, 255, 255, 0.2)
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.linux-pricing .card-body {
  padding: 25px;
}

.linux-pricing .card-body h3 {
  color: #1a2234;
  margin-bottom: 15px;
  font-weight: 600;
}

.linux-pricing .card-body .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 5px;
}

.linux-pricing .card-body .price span {
  font-size: 0.7em;
}

.linux-pricing .card-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.linux-pricing .card-body ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  color: #4b5563;
}

.linux-pricing .card-body ul li:last-child {
  border-bottom: none;
}

.linux-pricing .card-body ul li i {
  color: #10b981;
  margin-right: 10px;
  font-size: 1.1em;
}

.linux-pricing .card-body .btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.linux-pricing .card-body .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .linux-pricing .card {
    margin-bottom: 20px;
  }

  .linux-pricing .card-header {
    padding: 15px;
  }

  .linux-pricing .card-body {
    padding: 20px;
  }
}

/* Linux Pricing Section - White Background & Closer Cards */
.linux-pricing {
  background: #ffffff;
  position: relative;
  padding: 4rem 0;
}

.linux-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(76, 175, 80, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(33, 150, 243, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.linux-pricing .container {
  position: relative;
  z-index: 2;
}

.linux-pricing h2 {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 50%, #9c27b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(106, 17, 203, 0.3);
}

.linux-pricing h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #6a11cb, transparent);
  border-radius: 2px;
}

.linux-pricing h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #9c27b0,
    #6a11cb,
    #9c27b0,
    transparent
  );
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

/* Closer Cards Layout */
.linux-pricing .row {
  gap: 1rem;
  justify-content: center;
}

.linux-pricing .col-md-4 {
  flex: 0 0 auto;
  width: auto;
  max-width: 400px;
}

/* Compact Pricing Cards */
.linux-pricing .pricing-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  margin: 0;
  width: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.linux-pricing .pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #2196f3, #4caf50);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.linux-pricing .pricing-card:hover::before {
  transform: scaleX(1);
}

.linux-pricing .pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
}

/* Popular card special styling */
.linux-pricing .pricing-card.popular {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.03),
    rgba(255, 255, 255, 0.98)
  );
  border: 2px solid rgba(76, 175, 80, 0.3);
  transform: scale(1.05);
}

.linux-pricing .pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.07);
}

/* Compact Popular Badge */
.linux-pricing .popular-badge {
  position: absolute;
  top: 15px;
  right: -25px;
  transform: rotate(35deg);
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
  padding: 4px 30px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(35deg) scale(1);
  }
  50% {
    transform: rotate(35deg) scale(1.05);
  }
}

/* Compact Pricing Header */
.linux-pricing .pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.linux-pricing .pricing-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.linux-pricing .price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1976d2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.linux-pricing .price-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
}

/* Compact Features List */
.linux-pricing .pricing-features {
  margin: 1.5rem 0;
}

.linux-pricing .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.linux-pricing .feature-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.linux-pricing .feature-list li:hover {
  color: #2e7d32;
  transform: translateX(5px);
}

.linux-pricing .feature-list i {
  color: #4caf50;
  margin-right: 0.8rem;
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

/* Compact Footer Button */
.linux-pricing .pricing-footer {
  margin-top: 1.5rem;
}

.linux-pricing .pricing-footer .btn {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  border: none;
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.linux-pricing .pricing-footer .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.5s ease;
}

.linux-pricing .pricing-footer .btn:hover::before {
  left: 100%;
}

.linux-pricing .pricing-footer .btn:hover {
  background: linear-gradient(135deg, #388e3c, #1b5e20);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* Staggered Animation */
.linux-pricing .col-md-4:nth-child(1) .pricing-card {
  animation: slideInUp 0.6s ease 0.1s both;
}

.linux-pricing .col-md-4:nth-child(2) .pricing-card {
  animation: slideInUp 0.6s ease 0.2s both;
}

.linux-pricing .col-md-4:nth-child(3) .pricing-card {
  animation: slideInUp 0.6s ease 0.3s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .linux-pricing .row {
    gap: 1.5rem;
  }

  .linux-pricing .col-md-4 {
    max-width: 420px; /* Increased to accommodate the wider cards */
  }
}

@media (max-width: 768px) {
  .linux-pricing .row {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .linux-pricing .col-md-4 {
    max-width: 100%;
    width: 100%;
  }

  .linux-pricing .pricing-card {
    margin-bottom: 0;
  }

  .linux-pricing .pricing-card.popular {
    transform: none;
  }

  .linux-pricing .pricing-card.popular:hover {
    transform: translateY(-5px);
  }

  .linux-pricing h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .linux-pricing {
    padding: 3rem 0;
  }

  .linux-pricing .pricing-card {
    padding: 1.5rem 1.2rem;
  }

  .linux-pricing .popular-badge {
    font-size: 0.7rem;
    padding: 3px 25px;
  }
}

/* Enhanced Footer Styles */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--darkpurple) 25%,
    var(--accent-color) 50%,
    var(--accent-secondary) 75%,
    #2d1b69 100%
  );
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(76, 29, 149, 0.3);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 15%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(139, 92, 246, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(
      45deg,
      transparent 20%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 80%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    );
  pointer-events: none;
  animation: footerShimmer 8s ease-in-out infinite;
}

@keyframes footerShimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

footer .container {
  position: relative;
  z-index: 1;
}

footer h3 {
  color: #ffffff !important;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer p {
  color: #e2e8f0 !important;
  line-height: 1.6;
}

footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

footer .list-unstyled a {
  color: #cbd5e1 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

footer .list-unstyled a:hover {
  color: #ffffff !important;
  transform: translateX(5px);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

footer .contact-list a {
  padding: 0.5rem 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

footer .contact-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
  backdrop-filter: blur(10px);
}

footer .fab,
footer .fas {
  color: #ffffff !important;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

footer .fab:hover,
footer .fas:hover {
  transform: scale(1.2) rotate(5deg);
  animation: footerGlow 2s infinite;
}

footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

footer .social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(99, 102, 241, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(76, 29, 149, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

footer .social-links a::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 ease;
}

footer .social-links a:hover::before {
  left: 100%;
}

footer .social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(139, 92, 246, 0.4) 50%,
    rgba(99, 102, 241, 0.3) 100%
  );
  box-shadow: 0 8px 25px rgba(76, 29, 149, 0.5),
    0 4px 15px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer background pattern */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(191, 161, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(191, 161, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Footer container */
footer .container {
  position: relative;
  z-index: 2;
}

/* Footer links */
footer .list-unstyled {
  padding-left: 0;
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

footer .list-unstyled li:hover {
  transform: translateX(5px);
}

footer .list-unstyled a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  position: relative;
}

footer .list-unstyled a:hover {
  color: #ffead8 !important;
  text-shadow: 0 0 8px rgba(191, 161, 0, 0.3);
}

footer .list-unstyled a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c0c9ee;
  transition: width 0.3s ease;
}

footer .list-unstyled a:hover::before {
  width: 100%;
}

/* Contact list specific styling */
footer .contact-list li {
  margin-bottom: 1rem;
}

footer .contact-list i {
  color: #ffead8;
  margin-right: 0.75rem;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

footer .contact-list a:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(191, 161, 0, 0.5);
}

/* Social media icons */
footer .contact-list li:last-child {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .contact-list li:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* footer .contact-list li:last-child a:hover {
    background: rgba(191, 161, 0, 0.2);
    border-color: #BFA100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(191, 161, 0, 0.3);
} */

footer .contact-list li:last-child a i {
  margin: 0;
  font-size: 1.1rem;
}

/* Footer columns */
footer .row > div {
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  footer h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  footer p,
  footer .list-unstyled a {
    font-size: 0.9rem;
  }

  footer .contact-list li:last-child a {
    width: 35px;
    height: 35px;
    margin-right: 0.5rem;
  }

  footer .contact-list li:last-child a i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 2.5rem 0 1rem;
  }

  footer .row > div {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer .list-unstyled li:hover {
    transform: none;
  }
}
