/* ==================== MODERN DESIGN STYLES - CLEAN VEDA INSPIRED ==================== */

/* Page Header - Clean Interior Pages */
.page-header {
  background: #ffffff;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 3px solid #f472b6;
  border-radius: 50%;
  opacity: 0.15;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 8%;
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0.3;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header h1 span {
  color: #2563eb;
}

.page-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header .breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.page-header .breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s;
}

.page-header .breadcrumb a:hover {
  color: #2563eb;
}

.page-header .breadcrumb span {
  color: #94a3b8;
  margin: 0 0.5rem;
}

/* Hero Modern - Clean White Design */
.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

/* Subtle decorative circle */
.hero-modern::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 150px;
  height: 150px;
  border: 3px solid #f472b6;
  border-radius: 50%;
  opacity: 0.2;
  animation: floatSlow 8s ease-in-out infinite;
}

/* Small blue dot */
.hero-modern::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 8%;
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatSlow 6s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-modern .hero-background {
  display: none;
}

.hero-particles {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 750px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-modern h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: #2563eb;
  -webkit-text-fill-color: #2563eb;
  background: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
}

.hero-stats {
  display: none;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2563eb;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid #cbd5e1;
  border-radius: 14px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: #94a3b8;
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* Animations */
.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
}

.section-header.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.7;
}

.section-header .section-description {
  margin: 0 auto;
}

/* Service Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 2rem;
  border: 2px solid var(--light-color);
  background: white;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--teal));
  color: white;
  border-color: transparent;
}

/* Modern Service Cards */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card-modern {
  position: relative;
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.service-card-modern:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon-modern {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-card-modern p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

.service-bg-pattern {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--teal));
  opacity: 0.05;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.service-card-modern:hover .service-bg-pattern {
  transform: scale(1.5);
  opacity: 0.1;
}

/* Clients Section */
.clients-section {
  background: var(--light-color);
}

.clients-showcase {
  overflow: hidden;
}

.clients-row {
  display: flex;
  gap: 3rem;
  animation: scrollClients 30s linear infinite;
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0%) brightness(1.1);
}

/* Portfolio Modern */
.portfolio-showcase .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.portfolio-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.portfolio-card-modern {
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

.portfolio-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card-modern:hover .portfolio-image-wrapper img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(139, 92, 246, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  color: white;
}

.portfolio-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-tags .tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: white;
}

.portfolio-link {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  align-self: flex-end;
  transition: transform 0.3s ease;
}

.portfolio-link:hover {
  transform: scale(1.1) rotate(45deg);
}

/* Testimonials Modern */
.testimonials-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card-modern {
  flex: 0 0 100%;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin: 0 1rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-meta h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.testimonial-meta p {
  color: var(--text-light);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.5rem;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--teal);
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-color), var(--darker-color));
  padding: 6rem 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--teal));
  padding: 4rem;
  border-radius: 30px;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.1;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: float 20s ease-in-out infinite;
}

.cta-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.cta-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation-delay: -5s;
}

.cta-circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Blog Styles - Clean Veda Theme */
.blog-post-hero {
  background: #ffffff;
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.blog-post-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  border: 3px solid #f472b6;
  border-radius: 50%;
  opacity: 0.15;
}

.blog-post-hero::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 8%;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0.3;
}

.blog-post-header {
  position: relative;
  z-index: 1;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.back-to-blog:hover {
  color: #2563eb;
}

.blog-category-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-category-badge.large {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
}

.blog-post-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #1e293b;
}

.publish-date {
  color: #64748b;
  font-size: 0.9rem;
}

.updated-badge {
  color: #94a3b8;
  font-style: italic;
}

.blog-post-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}

.blog-featured-image-section {
  padding: 2rem 0;
}

.blog-featured-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-featured-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  padding: 3rem 0;
}

.blog-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article {
  line-height: 1.8;
  color: #374151;
  font-size: 1.1rem;
}

.blog-article h2, .blog-article h3, .blog-article h4 {
  color: #1e293b;
  margin: 2rem 0 1rem;
}

.blog-article p {
  margin-bottom: 1.5rem;
}

.blog-article img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-post-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
}

.tags-label {
  font-weight: 600;
  color: #1e293b;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags-list .tag, .blog-tags .tag {
  background: #f1f5f9;
  color: #64748b;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.share-label {
  font-weight: 600;
  color: #1e293b;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.copy-link { background: #64748b; }

/* Blog Grid & Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-no-image {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-placeholder-icon {
  color: #94a3b8;
}

.blog-card-image .blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.blog-card-content h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-content h3 a:hover {
  color: #2563eb;
}

.blog-card-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.blog-separator {
  color: #d1d5db;
}

.blog-views {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #94a3b8;
}

.blog-filter-section {
  padding: 1rem 0;
  background: #f8fafc;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  background: white;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
}

.filter-btn:hover, .filter-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.blog-featured-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.blog-featured-image {
  position: relative;
  height: 250px;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 1.5rem;
}

.blog-featured-content h3 a {
  color: #1e293b;
  text-decoration: none;
  font-size: 1.3rem;
}

.blog-featured-content h3 a:hover {
  color: #2563eb;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 0;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.pagination-btn:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: white;
  border: 1px solid #e5e7eb;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.pagination-num:hover, .pagination-num.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #64748b;
}

.blog-empty h3 {
  color: #1e293b;
  margin: 1rem 0;
}

.related-posts-section {
  background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-modern h1 { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-lg { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2rem; }
  .services-grid-modern { grid-template-columns: 1fr; }
  .portfolio-grid-modern { grid-template-columns: 1fr; }
  .service-tabs { justify-content: flex-start; overflow-x: auto; }
  .testimonial-header { flex-wrap: wrap; }
  .cta-content h2 { font-size: 2rem; }
  .cta-buttons { flex-direction: column; }
}
