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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, backdrop-filter 0.3s;
}

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

/* Logo */
.logo {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ffeb3b, #ff6b6b, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo a {
  color: inherit;
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

/* Navigation */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin-right: 1rem;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

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

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-label {
  cursor: pointer;
  display: block;
  padding: 0.5rem 0;
  color: white;
  position: relative;
  text-decoration: none;
}

.dropdown-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.dropdown-label:hover::after {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e40af;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDropdown 0.3s ease forwards;
}

.dropdown.fade-out .dropdown-content {
  animation: fadeOutDropdown 0.3s ease forwards;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDropdown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #1e3a8a;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.sub-dropdown:hover .sub-dropdown-content {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: fadeInSubDropdown 0.3s ease forwards;
}

.sub-dropdown.fade-out .sub-dropdown-content {
  animation: fadeOutSubDropdown 0.3s ease forwards;
}

@keyframes fadeInSubDropdown {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutSubDropdown {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-10px);
  }
}

.dropdown-content a,
.sub-dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover,
.sub-dropdown-content a:hover {
  background-color: #ff6b6b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1200&h=600&fit=crop&crop=center") center / cover;
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #ff6b6b;
  color: white;
  border: 2px solid #ff6b6b;
}

.btn-primary:hover {
  background: transparent;
  color: #ff6b6b;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

/* Service Pages Styles */
.service-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.service-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-detail-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #ffd700;
  font-weight: 500;
}

.breadcrumb a {
  color: #ffeb3b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.service-detail-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

.services-grid-section {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card h3 a:hover {
  color: #667eea;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.service-link {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #764ba2;
}

/* Service Detail Pages */
.service-content {
  padding: 80px 0;
  background: white;
}

.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.service-main {
  max-width: none;
}

.service-overview h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.service-overview p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.service-benefits {
  margin: 3rem 0;
}

.service-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
}

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

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.benefit-item i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.benefit-item p {
  color: #666;
  font-size: 0.9rem;
}

.service-details {
  margin: 3rem 0;
}

.service-details h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.service-feature {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.service-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-feature h4 i {
  color: #667eea;
}

.service-feature p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-feature ul {
  list-style: none;
  padding-left: 0;
}

.service-feature ul li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.service-feature ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.process-section {
  margin: 3rem 0;
}

.process-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.process-steps {
  display: grid;
  gap: 2rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

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

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

.sidebar-widget {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #333;
}

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

.highlight-list li {
  padding: 0.75rem 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #eee;
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li i {
  color: #28a745;
}

.pricing-widget {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  text-align: center;
}

.pricing-widget h3 {
  color: white !important;
}

.price-range {
  margin: 1rem 0;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
}

.pricing-widget p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.pricing-widget .btn {
  background: white;
  color: #667eea;
  border: 2px solid white;
}

.pricing-widget .btn:hover {
  background: transparent;
  color: white;
}

.related-services {
  list-style: none;
  padding: 0;
}

.related-services li {
  margin-bottom: 0.5rem;
}

.related-services a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-services a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Technology Stack Section */
.tech-stack-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.tech-stack-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.tech-category {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.tech-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tech-item {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Platforms Section */
.platforms-section {
  margin: 3rem 0;
}

.platforms-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.platform-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-5px);
}

.platform-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.platform-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.platform-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Design Process Section */
.design-process-section {
  padding: 80px 0;
  background: white;
}

.design-process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.process-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-icon i {
  font-size: 2rem;
  color: white;
}

.process-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

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

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

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

.why-choose-us .section-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.why-choose-us .section-title::after {
  background: white;
}

.why-choose-us .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 4rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.reason-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card::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 0.5s;
}

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

.reason-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.reason-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1) rotate(360deg);
  background: rgba(255, 255, 255, 0.3);
}

.reason-icon i {
  font-size: 2.5rem;
  color: white;
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: bold;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.reason-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reason-stat .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reason-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.cta-banner h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-banner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn {
  background: white;
  color: #667eea;
  border: 2px solid white;
}

.cta-section .btn:hover {
  background: transparent;
  color: white;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.portfolio-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.portfolio-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.portfolio-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.portfolio-overlay h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.portfolio-overlay > p {
  margin-bottom: 0.6rem;
  opacity: 0.9;
  font-size: 0.9rem;
}

.portfolio-stats {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.portfolio-stats span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.portfolio-description {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.portfolio-description p {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.9;
  margin: 0;
}

.portfolio-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-btn:hover {
  background: white;
  color: #667eea;
  border-color: white;
}

.portfolio-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.portfolio-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-text p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #667eea;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact .section-title {
  color: white;
}

.contact .section-title::after {
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #ff6b6b;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #ff5252;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #ff6b6b;
  width: 30px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* 7 Steps Process Section */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}



.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: #f8f9fa;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

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

.faq-question h3 {
  color: #333;
  font-size: 1.1rem;
  margin: 0;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-content h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: #667eea;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #764ba2;
}

.blog-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: white;
}

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

.testimonial-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-content p {
  color: #333;
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: #333;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.google-reviews-cta {
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.google-reviews-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.google-reviews-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.google-reviews-btn {
  background: white;
  color: #667eea;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.google-reviews-btn:hover {
  background: transparent;
  color: white;
}

.google-reviews-btn i {
  font-size: 1.2rem;
}

/* Blog Post Single Page Styles */
.blog-post-single .breadcrumb {
  background: #f8f9fa;
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb-list li {
  color: #666;
}

.breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
  color: #999;
}

.breadcrumb-list a {
  color: #667eea;
  text-decoration: none;
}

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

.blog-post-single {
  padding: 2rem 0 4rem;
  background: white;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-post-content {
  max-width: 800px;
}

.post-header {
  margin-bottom: 2rem;
}

.post-category {
  margin-bottom: 1rem;
}

.category-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.category-tag.social-media {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.post-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #333;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  color: #333;
}

.author-title {
  font-size: 0.9rem;
  color: #666;
}

.post-details {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.post-featured-image {
  margin: 2rem 0;
}

.post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.post-content .lead {
  font-size: 1.3rem;
  font-weight: 300;
  color: #555;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #333;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  color: #333;
}

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

.post-content ul,
.post-content ol {
  margin: 1rem 0 1.5rem 2rem;
}

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

.post-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
}

.post-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
}

.post-sharing {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}

.post-sharing h3 {
  margin-bottom: 1rem;
  color: #333;
}

.social-share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.linkedin {
  background: #0077b5;
}
.share-btn.pinterest {
  background: #bd081c;
}

.author-bio {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-bio-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-content h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.author-bio-title {
  color: #667eea;
  font-weight: bold;
  margin-bottom: 1rem;
}

.author-bio-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.author-social a {
  color: #667eea;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.author-social a:hover {
  color: #764ba2;
}

.related-posts {
  margin: 3rem 0;
}

.related-posts h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.5rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-post {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post-content {
  padding: 1rem;
}

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

.related-post-content h4 a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
}

.related-post-content h4 a:hover {
  color: #667eea;
}

.related-date {
  color: #666;
  font-size: 0.9rem;
}

/* Blog Post Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.2rem;
}

.table-of-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.table-of-contents li {
  margin-bottom: 0.5rem;
}

.table-of-contents a {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.table-of-contents a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.popular-posts,
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popular-post,
.recent-post {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.popular-post img,
.recent-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.popular-post-content h4,
.recent-post-content h4 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.3;
}

.popular-post-content h4 a,
.recent-post-content h4 a {
  color: #333;
  text-decoration: none;
}

.popular-post-content h4 a:hover,
.recent-post-content h4 a:hover {
  color: #667eea;
}

.popular-views,
.recent-date {
  font-size: 0.8rem;
  color: #666;
}

.cta-widget {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-align: center;
}

.cta-widget h3 {
  color: white;
  margin-bottom: 1rem;
}

.cta-widget p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-widget .btn {
  background: white;
  color: #667eea;
  border: 2px solid white;
}

.cta-widget .btn:hover {
  background: transparent;
  color: white;
}

/* Blog Page Enhancements */
.blog-hero {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.blog-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-main {
  padding: 4rem 0;
  background: #f8f9fa;
}

.blog-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-content-main {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.blog-post.featured {
  grid-column: 1 / -1;
  margin-bottom: 3rem;
}

.blog-post.featured .blog-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.featured-badge {
  background: #ff6b6b !important;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  padding: 0.75rem 1rem;
  background: white;
  color: #667eea;
  text-decoration: none;
  border: 2px solid #667eea;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: #667eea;
  color: white;
}

.pagination-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* RSS Feed Link Styling */
.rss-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.rss-feed-link:hover {
  color: #cc5200;
}

.rss-feed-link i {
  font-size: 1.2rem;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  background: #667eea;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #764ba2;
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 0.5rem;
}

.category-list a {
  color: #667eea;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #764ba2;
}

.category-list span {
  background: #f8f9fa;
  color: #666;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    padding: 1rem 0;
    display: none;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .dropdown-content,
  .sub-dropdown-content {
    position: static;
    box-shadow: none;
    background-color: rgba(30, 58, 138, 0.8);
    margin-top: 0.5rem;
  }

  .dropdown:hover .dropdown-content,
  .sub-dropdown:hover .sub-dropdown-content {
    display: none;
  }

  .logo {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content,
  .service-layout,
  .blog-post-layout,
  .blog-sidebar-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  .step {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    margin: 0 auto 1rem auto;
  }

  .step-content {
    max-width: 100%;
  }

  .process,
  .faq,
  .blog,
  .testimonials {
    padding: 60px 0;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .google-reviews-cta {
    padding: 2rem 1rem;
  }

  .post-header h1 {
    font-size: 2rem;
  }

  .post-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .social-share-buttons {
    flex-wrap: wrap;
  }

  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .blog-hero p {
    font-size: 1.1rem;
  }

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

  .benefits-grid,
  .process-grid,
  .tech-categories,
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 120px 0 80px;
  }

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

  .portfolio,
  .about,
  .contact,
  .services-grid-section,
  .service-content {
    padding: 60px 0;
  }

  .blog-content,
  .testimonial-item {
    padding: 1rem;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }

  .testimonial-content p {
    font-size: 1rem;
  }

  .post-content .lead {
    font-size: 1.1rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .post-content h2 {
    font-size: 1.5rem;
  }

  .blog-content-main {
    padding: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-hero h1,
  .service-detail-hero h1 {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hide elements by default for filtering */
.portfolio-item.hidden {
  display: none;
}

/* Accessibility improvements */
.btn:focus,
.filter-btn:focus,
.submit-btn:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print styles for SEO */
@media print {
  .nav-links,
  .hero-buttons,
  .portfolio-filters,
  .contact-form {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Graceful ZigZag Process Layout */
.process .steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}



.process .step {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: flex-end;
}

.process .step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process .step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color, #007bff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0.1);
}

.process .step-content {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.process .step:hover .step-content {
    transform: translateY(-5px);
}

.process .step-content h3 {
    color: var(--primary-color, #007bff);
    margin-bottom: 15px;
    font-size: 22px;
}

/* Footer Styling */
.site-footer {
    background: #111;
    color: #fff;
    padding: 70px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}
.footer-col p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--primary-color, #007bff);
}
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.footer-socials a:hover {
    background: var(--primary-color, #007bff);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
}
.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: var(--primary-color, #007bff);
}

@media (max-width: 768px) {

    .process .step {
        justify-content: flex-end !important;
        flex-direction: row !important;
    }
    .process .step-number {
        left: 30px;
    }
    .process .step-content {
        width: calc(100% - 80px);
    }
}

/* Blog Animations & Hover Effects */
@keyframes blogFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.blog-post-content {
  opacity: 0;
  animation: blogFadeInUp 0.8s ease-out forwards;
}

.sidebar-widget {
  opacity: 0;
  animation: blogFadeInLeft 0.8s ease-out forwards;
}

.sidebar-widget:nth-child(1) { animation-delay: 0.1s; }
.sidebar-widget:nth-child(2) { animation-delay: 0.3s; }
.sidebar-widget:nth-child(3) { animation-delay: 0.5s; }

.popular-post {
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.popular-post:hover {
  transform: translateX(5px);
  background-color: #f0f4ff;
}

.table-of-contents ul li {
  transition: transform 0.2s ease;
}

.table-of-contents ul li:hover {
  transform: translateX(5px);
}
