/*
Theme Name: EduBiz
Theme URI: http://localhost:8000
Author: Education And Business
Author URI: http://localhost:8000
Description: A premium digital marketing agency theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edubiz
*/

/* --- Variables --- */
:root {
  --primary: #4F46E5; /* Vibrant Indigo */
  --primary-light: #818CF8;
  --primary-dark: #3730A3;
  --secondary: #F43F5E; /* Vibrant Rose / Coral */
  
  --bg-main: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-dark: #0F172A;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  
  --border: #E2E8F0;
  
  --font-heading: 'Syne', 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-neon: 0 0 20px rgba(79, 70, 229, 0.3);
  
  --radius-md: 12px;
  --radius-lg: 24px;

  --nav-scrolled-bg: rgba(255, 255, 255, 0.9);
  --hero-bg-shapes: #F8FAFC;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.8);
}

.dark-theme {
  --primary: #6366f1; /* Brighter Indigo for dark mode */
  --primary-light: #818CF8;
  --primary-dark: #4F46E5;
  --secondary: #ec4899; /* Cyber Pink */
  
  --bg-main: #0B0E14;
  --bg-light: #121826;
  --bg-dark: #050608;
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  
  --border: rgba(255, 255, 255, 0.1);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-neon: 0 0 20px rgba(99, 102, 241, 0.4);

  --nav-scrolled-bg: rgba(11, 14, 20, 0.9);
  --hero-bg-shapes: #121826;
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-padding {
  padding: 100px 0;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--text-white); }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 24px; }
.full-width { width: 100%; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(79, 70, 229, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* --- Section Header --- */
.section-header {
  margin-bottom: 60px;
  max-width: 650px;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
  padding: 24px 0;
}

.header.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: rgba(126, 126, 126, 0.1);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: var(--hero-bg-shapes);
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: pulse 8s infinite alternate;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: var(--primary-light);
}

.shape-2 {
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: rgba(244, 63, 94, 0.3);
  animation-delay: -4s;
}

@keyframes pulse {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-20px, 20px); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

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

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.stat-card {
  position: absolute;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(79, 70, 229, 0.1);
  padding: 12px;
  border-radius: 50%;
}

.stat-card h4 {
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-1 {
  top: 10%;
  left: -10%;
  animation: float 7s ease-in-out infinite alternate;
}

.stat-2 {
  bottom: 10%;
  right: -10%;
  animation: float 5s ease-in-out infinite alternate-reverse;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
}

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

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-main);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  width: 50px;
  height: 50px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-link {
  transform: translateY(0);
}

.portfolio-link:hover {
  background: var(--primary);
  color: white;
}

.portfolio-info {
  padding: 30px;
}

.portfolio-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.portfolio-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.portfolio-info p {
  color: var(--text-muted);
}

/* --- Testimonials --- */
.testimonials h2, .testimonials p {
  color: white;
}
.testimonials .section-desc {
  color: #CBD5E1;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.quote-icon {
  font-size: 3rem;
  color: rgba(244, 63, 94, 0.5);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.6;
}

.author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.author-name {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* --- Blog Section --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.2);
}

.blog-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  backdrop-filter: blur(4px);
}

.blog-content {
  padding: 30px;
}

.blog-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.blog-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-main);
}

.read-more i {
  color: var(--primary);
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(4px);
}

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.price-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
}

.price-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-neon);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price {
  color: var(--text-main);
  margin-bottom: 12px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.period {
  color: var(--text-muted);
}

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

.price-features {
  margin-bottom: 40px;
}

.price-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.price-features li i {
  color: #10B981;
}

.price-features li.disabled {
  color: #CBD5E1;
}

.price-features li.disabled i {
  color: #F87171;
}

/* --- Contact Section --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.method-item p {
  color: var(--text-muted);
}

.contact-form-container {
  padding: 40px;
  background: var(--bg-main);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: #F8FAFC;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  color: white;
  margin-bottom: 20px;
}

.footer-desc {
  color: #94A3B8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links-group h4 {
  color: white;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94A3B8;
  transition: var(--transition);
}

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

.footer-newsletter h4 {
  color: white;
  margin-bottom: 16px;
}

.footer-newsletter p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: white;
}

/* --- Utilities & Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .stat-card {
    display: none; /* Simplify on smaller screens */
  }
  
  .price-card.popular {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Mobile Nav active state css */
  .nav-links.active-mobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
}

/* --- Added Extra Animations & Logo Styles --- */
.logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  background-color: white; /* In case of transparency */
  object-fit: contain;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
}

.footer-logo-img {
  height: 60px;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Extra hover animations for buttons and links */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Continuous pulse on pricing popular card */
@keyframes neonPulse {
  0% { box-shadow: 0 0 10px rgba(79, 70, 229, 0.2), 0 0 20px rgba(79, 70, 229, 0.2); }
  50% { box-shadow: 0 0 20px rgba(79, 70, 229, 0.5), 0 0 40px rgba(79, 70, 229, 0.3); transform: scale(1.06); }
  100% { box-shadow: 0 0 10px rgba(79, 70, 229, 0.2), 0 0 20px rgba(79, 70, 229, 0.2); }
}

.price-card.popular {
  animation: neonPulse 3s infinite ease-in-out;
}

/* Float animations for cards */
.service-card, .portfolio-item, .blog-card {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover, .portfolio-item:hover, .blog-card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Text glowing */
.text-gradient:hover {
  text-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
}

