/**
 * Main Stylesheet
 * Dot Red Infotech - Responsive Design
 */

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-dark);
  margin-bottom: var(--spacing-4);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-4);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-colors);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin-bottom: var(--spacing-4);
  padding-left: var(--spacing-6);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--spacing-20) 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e0e6ed" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.section-sm {
  padding: var(--spacing-12) 0;
}

.section-alt {
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-white {
  color: var(--color-white);
}

.text-gray {
  color: var(--color-gray-500);
}

/* Icon Color Overrides */
.fas.text-primary,
.far.text-primary,
.fab.text-primary,
i.text-primary {
  color: var(--color-primary) !important;
}

/* Ensure all primary colored elements use theme color */
.text-primary * {
  color: inherit !important;
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-white {
  background-color: var(--color-white);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--spacing-4);
}

.mb-8 {
  margin-bottom: var(--spacing-8);
}

.mt-8 {
  margin-top: var(--spacing-8);
}

/* Additional Icon Color Enforcement */
.fas,
.far,
.fab {
  color: inherit;
}

/* Force primary color for all primary icons */
h4 .text-primary,
h5 .text-primary,
h3 .text-primary {
  color: var(--color-primary) !important;
}

/* ========================================
   ABOUT SECTION STYLES
   ======================================== */

.about-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.highlight-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Footer CTA & Newsletter */
.footer-cta .btn {
  font-weight: 600;
}

.footer-badges span i {
  color: var(--color-primary);
}

.footer-newsletter form input[type="email"] {
  max-width: 280px;
}

.footer-newsletter #newsletterMsg {
  min-height: 1.25rem;
}

.highlight-content p {
  margin-bottom: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.tech-stack {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tech-stack h6 {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.confidence-badges {
  display: grid;
  gap: 1.5rem;
}

.confidence-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 10, 18, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.confidence-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.badge-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.badge-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.badge-content p {
  margin-bottom: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.stats-summary {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 10, 18, 0.1);
}

.stat-item h4 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.stat-item small {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  border: var(--border-width-medium) solid transparent;
  border-radius: var(--btn-border-radius);
  cursor: pointer;
  transition: var(--transition-all);
  line-height: 1.5;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-base);
}

.btn-primary:hover {
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-outline * {
  position: relative;
  z-index: 2;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--color-white) !important;
  border-color: var(--color-primary);
  text-decoration: none;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--header-bg);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-index-fixed);
  transition: var(--transition-all);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  text-decoration: none;
  color: var(--color-dark);
}

.logo:hover {
  text-decoration: none;
  color: var(--color-dark);
}

.logo-dot {
  font-size: 24px;
  color: var(--color-primary);
  line-height: 1;
}

.logo-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  line-height: 1;
}

.logo-red {
  color: var(--color-primary);
}

.logo-subtext {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  font-weight: var(--font-weight-normal);
  letter-spacing: 2px;
  margin-left: -4px;
  line-height: 1;
}

/* Site Logo Standardization */
.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.header-logo {
  max-height: 80px;
  /* Increased from 50px */
  max-width: 250px;
}


.footer-logo {
  /* Shared base styles */
}

/* Specific style for the image */
img.footer-logo {
  max-height: 90px;
  max-width: 280px;
  margin-bottom: 0;
  /* Margin handled by wrapper */
}

/* Specific style for the wrapper div */
div.footer-logo {
  background-color: #fff;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .header-logo {
    max-height: 60px;
  }

  /* Target image specifically for responsiveness */
  img.footer-logo {
    max-height: 70px;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-8);
}

.nav-menu a {
  color: var(--color-dark);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  cursor: pointer;
  color: var(--color-dark);
}

/* ========================================
   HERO DOTRED SECTION
   ======================================== */

.hero-dotred {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #333;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-content>* {
  opacity: 0;
  transform: translateY(30px);
  animation: smoothFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-content>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-content>*:nth-child(5) {
  animation-delay: 0.5s;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(139, 10, 18, 0.2);
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-family: 'Poppins', var(--font-headings);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-highlight {
  color: var(--color-primary);
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
  max-width: 90%;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.8s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #d32f2f 100%);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 10, 18, 0.3);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 10, 18, 0.4);
  color: white;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-hero-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.hero-services {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-services .service-highlight-card {
  opacity: 0;
  transform: translateY(20px);
  animation: smoothFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-services .service-highlight-card:nth-child(1) {
  animation-delay: 0.8s;
}

.hero-services .service-highlight-card:nth-child(2) {
  animation-delay: 1s;
}

.services-highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-highlight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(139, 10, 18, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.service-highlight-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 10, 18, 0.15);
  border-color: var(--color-primary);
}

.service-highlight-card:hover::before {
  left: 100%;
}

.service-highlight-card.primary-service {
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.02), rgba(139, 10, 18, 0.05));
  border: 2px solid rgba(139, 10, 18, 0.15);
}

.service-highlight-card.primary-service:hover {
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.05), rgba(139, 10, 18, 0.08));
  border-color: var(--color-primary);
}

.service-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 10, 18, 0.3);
}

.service-highlight-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(139, 10, 18, 0.4);
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.service-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(139, 10, 18, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.service-highlight-card:hover .service-arrow {
  background: var(--color-primary);
  color: white;
  transform: translateX(3px);
  opacity: 1;
}

.hero-badge-container {
  display: flex;
  justify-content: center;
}

.success-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.success-badge i {
  font-size: 1.5rem;
}

.badge-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.badge-content span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.decoration-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
}

.dot-1 {
  top: 20%;
  left: 10%;
  animation: float 4s ease-in-out infinite;
}

.dot-2 {
  top: 60%;
  right: 15%;
  animation: float 4s ease-in-out infinite 1s;
}

.dot-3 {
  bottom: 30%;
  left: 20%;
  animation: float 4s ease-in-out infinite 2s;
}

.decoration-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.2;
}

.line-1 {
  top: 30%;
  right: 0;
  width: 150px;
  animation: slideInRight 2s ease-out infinite alternate;
}

.line-2 {
  bottom: 40%;
  left: 0;
  width: 100px;
  animation: slideInLeft 2s ease-out infinite alternate;
}

/* Animations */
@keyframes smoothFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .hero-dotred {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .services-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .logo {
    gap: 6px;
  }

  .logo-text {
    font-size: var(--font-size-xl);
  }

  .logo-subtext {
    font-size: var(--font-size-xs);
    letter-spacing: 1px;
  }

  .logo-dot {
    font-size: 20px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .services-highlight-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-tagline {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }

  /* About Section Mobile Styles */
  .highlight-item {
    margin-bottom: 1rem;
  }

  .highlight-icon,
  .badge-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .tech-badges {
    justify-content: center;
  }

  .confidence-badges {
    gap: 1rem;
  }

  .confidence-badge {
    padding: 1rem;
  }

  .stats-summary {
    margin-top: 2rem;
    padding: 1rem;
  }

  .stat-item h4 {
    font-size: 1.5rem;
  }
}

/* ========================================
   HERO SECTION (Legacy - Remove if not used)
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: var(--font-size-6xl);
  margin-bottom: var(--spacing-6);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.hero h1 .highlight {
  color: var(--color-accent-light);
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.hero p {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-8);
  line-height: var(--line-height-relaxed);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-4);
  flex-wrap: wrap;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-16);
}

.section-header h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-4);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.section-header .subtitle {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-2);
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background-color: var(--color-white);
  border-radius: var(--card-border-radius);
  padding: var(--card-padding);
  box-shadow: var(--card-shadow);
  transition: var(--transition-all);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-4);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-3);
  color: var(--color-dark);
}

.card-text {
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid {
  display: grid;
  gap: var(--spacing-8);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.service-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-10);
  box-shadow: var(--shadow-card);
  transition: var(--transition-all);
  border: 1px solid rgba(139, 10, 18, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-10px);
  border-color: var(--color-primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-6);
  display: block;
}

.service-card h3 {
  color: var(--color-dark);
  margin-bottom: var(--spacing-4);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
}

.service-card p {
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* ========================================
   TECHNOLOGY STACK
   ======================================== */

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  justify-content: center;
  margin-top: var(--spacing-8);
}

.tech-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--spacing-2) var(--spacing-4);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-md);
  transition: var(--transition-all);
}

.tech-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tech-category {
  margin-bottom: var(--spacing-8);
}

.tech-category h4 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

/* ========================================
   MODERN PROCESS SECTION
   ======================================== */

.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e0e6ed" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.process-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-4);
  position: relative;
  z-index: 2;
}

.process-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--spacing-4);
  position: relative;
  z-index: 2;
}

.process-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto var(--spacing-12);
  position: relative;
  z-index: 2;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.process-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 32px rgba(139, 10, 18, 0.3);
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(139, 10, 18, 0.4);
}

.process-step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(139, 10, 18, 0.3);
}

.process-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.process-content p {
  color: var(--color-gray-600);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
}

.process-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(139, 10, 18, 0.1);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(139, 10, 18, 0.2);
}

.process-connector {
  display: none;
}

/* Process Animation */
.process-item {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
}

.process-item:nth-child(1) {
  animation-delay: 0.1s;
}

.process-item:nth-child(2) {
  animation-delay: 0.2s;
}

.process-item:nth-child(3) {
  animation-delay: 0.3s;
}

.process-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 10, 18, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h4 {
  font-family: 'Poppins', var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 1rem;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle i {
  color: #64748b;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--color-primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle i {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f8fafc;
  border-top: 1px solid rgba(139, 10, 18, 0.08);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem 2rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-container {
    margin-top: 2rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h4 {
    font-size: 1rem;
    padding-right: 0.75rem;
  }

  .faq-toggle {
    width: 26px;
    height: 26px;
  }

  .faq-toggle i {
    font-size: 0.8rem;
  }

  .faq-answer p {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .faq-question h4 {
    font-size: 0.95rem;
    padding-right: 0;
  }

  .faq-toggle {
    align-self: flex-end;
    width: 24px;
    height: 24px;
  }

  .faq-answer p {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   BLOG CARDS
   ======================================== */

.blog-card {
  background: var(--color-white);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-all);
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .blog-card-image {
    height: 160px;
  }
}

.blog-card-content {
  padding: var(--spacing-6);
}

.blog-card-category {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: var(--border-radius-full);
  margin-bottom: var(--spacing-3);
  text-transform: uppercase;
}

.blog-card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-3);
}

.blog-card-title a {
  color: var(--color-dark);
}

.blog-card-title a:hover {
  color: var(--color-primary);
}

.blog-card-excerpt {
  color: var(--color-gray-600);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-4);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.benefits-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-section {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 25px rgba(139, 10, 18, 0.3);
  flex-shrink: 0;
}

.timeline-title h3 {
  font-family: 'Poppins', var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-title h3 i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.timeline-title p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
  font-style: italic;
}

.timeline-benefits {
  padding-left: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.timeline-benefit:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.benefit-highlight {
  font-weight: 600;
  color: #333;
  min-width: 180px;
  font-size: 0.95rem;
}

.benefit-separator {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-result {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1;
}

.timeline-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
  margin: 3rem auto;
  width: 60%;
  border-radius: 2px;
}

/* Responsive Design for Timeline Benefits */
@media (max-width: 991px) {
  .timeline-header {
    gap: 1.5rem;
  }

  .timeline-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .timeline-title h3 {
    font-size: 1.6rem;
  }

  .timeline-title h3 i {
    font-size: 1.3rem;
  }

  .timeline-benefits {
    padding-left: 4rem;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .timeline-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .timeline-title h3 {
    font-size: 1.4rem;
    justify-content: center;
  }

  .timeline-title p {
    font-size: 1rem;
  }

  .timeline-benefits {
    padding-left: 0;
    gap: 1rem;
  }

  .timeline-benefit {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .benefit-highlight {
    min-width: auto;
    font-weight: 700;
    color: var(--color-primary);
  }

  .benefit-separator {
    display: none;
  }

  .benefit-result {
    font-size: 0.85rem;
  }

  .timeline-divider {
    width: 80%;
    margin: 2rem auto;
  }
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 10, 18, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--color-primary);
  transition: all 0.4s ease;
  border: 2px solid rgba(139, 10, 18, 0.1);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  color: white;
  transform: scale(1.1);
  border-color: var(--color-primary);
}

.industry-card h4 {
  font-family: 'Poppins', var(--font-headings);
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.industry-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for Industries */
@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .industry-card {
    padding: 1.75rem 1.25rem;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .industry-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .industry-card {
    padding: 1.5rem 1rem;
  }

  .industry-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .industry-card h4 {
    font-size: 1.1rem;
  }

  .industry-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .industry-card {
    padding: 1.25rem 0.75rem;
  }

  .industry-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .industry-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .industry-card p {
    font-size: 0.85rem;
  }
}

/* ========================================
   TECHNOLOGIES SECTION
   ======================================== */

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.tech-category {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 10, 18, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.tech-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  border-radius: 18px 18px 0 0;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.tech-category h3 {
  font-family: 'Poppins', var(--font-headings);
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 10, 18, 0.1);
}

.tech-category h3 i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  border: 1px solid rgba(139, 10, 18, 0.08);
  transition: all 0.3s ease;
  cursor: default;
}

.tech-item:hover {
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 10, 18, 0.3);
}

.tech-item i {
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.tech-item:hover i {
  color: white;
}

/* Specific icon colors for better recognition */
.fa-html5 {
  color: #e34c26 !important;
}

.fa-css3-alt {
  color: #1572b6 !important;
}

.fa-js-square {
  color: #f7df1e !important;
}

.fa-react {
  color: #61dafb !important;
}

.fa-php {
  color: #777bb4 !important;
}

.fa-laravel {
  color: #ff2d20 !important;
}

.fa-node-js {
  color: #339933 !important;
}

.fa-wordpress {
  color: #21759b !important;
}

.fa-shopify {
  color: #7ab55c !important;
}

.fa-bootstrap {
  color: #7952b3 !important;
}

.fa-git-alt {
  color: #f05032 !important;
}

.fa-github {
  color: #333 !important;
}

.fa-figma {
  color: #f24e1e !important;
}

.fa-trello {
  color: #0079bf !important;
}

.fa-facebook {
  color: #1877f2 !important;
}

.fa-instagram {
  color: #e4405f !important;
}

.fa-hashtag {
  color: #0668e1 !important;
}

.fa-chart-bar {
  color: #28a745 !important;
}

.fa-file-alt {
  color: #6c757d !important;
}

.fa-palette {
  color: #00c4cc !important;
}

.fa-file-excel {
  color: #217346 !important;
}

.fa-leaf {
  color: #4db33d !important;
}

.mysql-icon {
  color: #4479a1 !important;
}

.postgresql-icon {
  color: #336791 !important;
}

.tech-item:hover .fa-html5,
.tech-item:hover .fa-css3-alt,
.tech-item:hover .fa-js-square,
.tech-item:hover .fa-react,
.tech-item:hover .fa-php,
.tech-item:hover .fa-laravel,
.tech-item:hover .fa-node-js,
.tech-item:hover .fa-wordpress,
.tech-item:hover .fa-shopify,
.tech-item:hover .fa-bootstrap,
.tech-item:hover .fa-git-alt,
.tech-item:hover .fa-github,
.tech-item:hover .fa-figma,
.tech-item:hover .fa-trello,
.tech-item:hover .fa-facebook,
.tech-item:hover .fa-instagram,
.tech-item:hover .fa-hashtag,
.tech-item:hover .fa-chart-bar,
.tech-item:hover .fa-file-alt,
.tech-item:hover .fa-palette,
.tech-item:hover .fa-file-excel,
.tech-item:hover .fa-leaf,
.tech-item:hover .mysql-icon,
.tech-item:hover .postgresql-icon {
  color: white !important;
}

/* Responsive Design for Technologies */
@media (max-width: 991px) {
  .tech-categories {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .tech-category {
    padding: 1.75rem;
  }

  .tech-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .tech-items {
    gap: 0.75rem;
  }

  .tech-item {
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tech-category {
    padding: 1.5rem;
  }

  .tech-category h3 {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .tech-items {
    justify-content: center;
    gap: 0.5rem;
  }

  .tech-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .tech-item i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .tech-category {
    padding: 1.25rem;
  }

  .tech-items {
    gap: 0.4rem;
  }

  .tech-item {
    padding: 0.45rem 0.65rem;
    font-size: 0.75rem;
  }

  .tech-item i {
    font-size: 0.9rem;
  }
}

/* ========================================
   PROJECT/PORTFOLIO CARDS
   ======================================== */

.project-card {
  position: relative;
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition-all);
  background: var(--color-white);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 1;
}

.project-card:hover::before {
  opacity: 0.1;
}

.project-card-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-transform);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-card:hover .project-card-image {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-6);
  opacity: 1;
  transition: var(--transition-all);
}

.project-card-title {
  color: var(--color-white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-2);
}

.project-card-category {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-10);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-all);
  border: 1px solid rgba(139, 10, 18, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: var(--spacing-6);
  left: var(--spacing-6);
}

.testimonial-text {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-6);
  font-style: italic;
}

.testimonial-author {
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  margin-bottom: var(--spacing-1);
}

.testimonial-role {
  color: var(--color-gray-500);
  font-size: var(--font-size-sm);
}

/* ========================================
   MODERN SERVICES SECTION
   ======================================== */

.services-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.services-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e0e6ed" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.services-decoration {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
}

.curved-lines {
  width: 200px;
  height: 400px;
  animation: float 8s ease-in-out infinite;
}

.section-title {
  font-family: 'Poppins', var(--font-headings);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--admin-text-dark);
  margin-bottom: 2rem;
}

.section-title .text-primary {
  color: var(--color-primary) !important;
  font-weight: 700;
}

.section-description {
  font-size: 1.2rem;
  color: var(--admin-text-muted);
  line-height: 1.6;
  margin-bottom: 4rem;
}

.section-description .text-primary {
  color: var(--color-primary) !important;
  font-weight: 600;
}

.core-service-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 10, 18, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.core-service-card .service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.core-service-card .service-features {
  flex: 1;
}

.core-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
}

.core-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.service-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(139, 10, 18, 0.3);
}

.service-title {
  font-family: 'Poppins', var(--font-headings);
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.service-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #555;
}

.feature-item i {
  color: #28a745;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 10, 18, 0.3);
  width: 100%;
  justify-content: center;
}

.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 10, 18, 0.4);
  color: white;
  text-decoration: none;
}

.service-cta-btn i {
  transition: transform 0.3s ease;
}

.service-cta-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .services-modern {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .core-service-card {
    padding: 2.5rem 2rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .services-decoration {
    display: none;
  }

  .core-service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .section-description {
    margin-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .core-service-card {
    padding: 1.5rem 1.25rem;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .feature-item {
    font-size: 0.9rem;
  }

  .service-cta-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .service-arrow i {
    font-size: 1rem;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-content {
  padding: var(--spacing-6) 0;
}

.about-highlights .highlight-item {
  padding: var(--spacing-3);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}

.about-highlights .highlight-item:hover {
  background: var(--color-light);
  transform: translateX(10px);
}

/* Statistics Grid */
.stats-grid {
  padding: var(--spacing-4);
}

.stat-card {
  background: var(--color-white);
  padding: var(--spacing-6) var(--spacing-4);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-4) auto;
  animation: float 3s ease-in-out infinite;
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-2);
  line-height: 1;
}

.stat-label {
  color: var(--color-gray-600);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mission Cards */
.mission-card {
  background: var(--color-white);
  padding: var(--spacing-8) var(--spacing-6);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-6) auto;
  animation: pulse 2s ease-in-out infinite alternate;
}

.mission-icon i {
  font-size: 2rem;
  color: var(--color-white);
}

.mission-card h4 {
  color: var(--color-dark);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-4);
  font-size: var(--font-size-xl);
}

.mission-card p {
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #a61b23 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-12) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-4);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-6);
  line-height: 1.6;
  max-width: 90%;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-2);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-feature i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  align-items: flex-start;
}

.btn-cta-primary {
  background: white;
  color: var(--color-primary);
  border: 2px solid white;
  padding: var(--spacing-3) var(--spacing-6);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.btn-cta-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: var(--spacing-3) var(--spacing-6);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.cta-contact-info {
  margin-top: var(--spacing-6);
  padding-top: var(--spacing-4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.cta-contact-item i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  width: 16px;
}

.cta-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-contact-item a:hover {
  color: white;
}

/* CTA Section Responsive */
@media (max-width: 991px) {
  .cta-section {
    text-align: center;
    padding: var(--spacing-10) 0;
  }

  .cta-content {
    margin-bottom: var(--spacing-8);
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    max-width: 100%;
  }

  .cta-features {
    justify-content: center;
  }

  .cta-actions {
    align-items: center;
  }
}

/* ========================================
  IMAGE ROLE STYLES (Design Consistency)
  ======================================== */
.img-role {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.img-role-blog_featured {
  max-width: 860px;
  margin: 0 auto;
}

.img-role-blog_gallery {
  border-radius: 12px;
}

.img-role-blog_related {
  height: auto;
}

.img-role-project_gallery {
  border-radius: 14px;
}

.img-role-project_related {
  border-radius: 16px;
}

.img-role-home_project_card {
  height: 100%;
  border-radius: 18px;
}

.img-role-home_blog_card {
  border-radius: 16px;
}

/* Provide aspect-ratio fallback for browsers without native support */
.img-role-blog_featured,
.img-role-blog_gallery,
.img-role-blog_related,
.img-role-project_gallery,
.img-role-project_related,
.img-role-home_project_card,
.img-role-home_blog_card {
  background: #f0f2f5;
}

@media (max-width: 768px) {
  .cta-section {
    padding: var(--spacing-8) 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    min-width: 250px;
    padding: var(--spacing-4) var(--spacing-6);
  }

  .cta-contact-info {
    margin-top: var(--spacing-4);
    padding-top: var(--spacing-3);
  }
}
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-color);
  padding: var(--spacing-16) 0 var(--spacing-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-12);
}

.footer-about h3 {
  color: var(--color-white);
  margin-bottom: var(--spacing-4);
}

.footer-about p {
  color: var(--color-gray-400);
  line-height: var(--line-height-relaxed);
}

.footer-links h4 {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-4);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: var(--spacing-3);
}

.footer-links ul a {
  color: var(--color-gray-400);
  transition: var(--transition-colors);
}

.footer-links ul a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: var(--spacing-4);
  margin-top: var(--spacing-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: var(--color-gray-800);
  color: var(--color-white);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-all);
}

.footer-social a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--spacing-6);
  text-align: center;
  color: var(--color-gray-500);
  font-size: var(--font-size-sm);
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2);
  margin-top: var(--spacing-12);
}

.pagination a,
.pagination span {
  padding: var(--spacing-2) var(--spacing-4);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius-md);
  color: var(--color-dark);
  transition: var(--transition-all);
}

.pagination a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.pagination .active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ========================================
   BLOG DETAIL PAGE
   ======================================== */

.blog-detail-header {
  padding: var(--spacing-24) 0 var(--spacing-12);
  padding-top: calc(var(--header-height) + var(--spacing-12));
  background-color: var(--color-secondary);
}

.blog-detail-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--card-border-radius);
  margin-bottom: var(--spacing-8);
}

.blog-detail-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-8) 0;
}

.blog-detail-content h2 {
  margin-top: var(--spacing-12);
  margin-bottom: var(--spacing-4);
}

.blog-detail-content h3 {
  margin-top: var(--spacing-8);
  margin-bottom: var(--spacing-3);
}

.blog-detail-content p {
  margin-bottom: var(--spacing-6);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: var(--spacing-6);
}

.blog-detail-content li {
  margin-bottom: var(--spacing-2);
  line-height: var(--line-height-relaxed);
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
  margin-bottom: var(--spacing-6);
}

.form-label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-2);
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: var(--spacing-3) var(--spacing-4);
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius-md);
  transition: var(--transition-all);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 10, 18, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.form-control.is-invalid~.invalid-feedback {
  display: block;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #28a745;
}

.form-control.is-valid~.valid-feedback {
  display: block;
}

/* Services Checkboxes Styling */
.services-checkboxes {
  padding: var(--spacing-4);
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-2);
}

.services-checkboxes .form-check {
  padding: var(--spacing-3) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.services-checkboxes .form-check:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services-checkboxes .form-check:first-child {
  padding-top: 0;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-right: var(--spacing-3);
  cursor: pointer;
  border: 2px solid var(--color-gray-400);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-all);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 10, 18, 0.1);
}

.form-check-label {
  cursor: pointer;
  font-size: var(--font-size-base);
  color: var(--color-dark);
  margin-bottom: 0;
  user-select: none;
}

.form-check-input:checked+.form-check-label {
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
}

/* Character Counter */
.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

#ideaCharCount {
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

/* Contact Form Specific */
#contactForm .btn-primary {
  padding: var(--spacing-4) var(--spacing-6);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-all);
}

#contactForm .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#contactForm .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Alert Messages */
.alert {
  padding: var(--spacing-4);
  margin-bottom: var(--spacing-4);
  border: 1px solid transparent;
  border-radius: var(--border-radius-md);
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert i {
  margin-right: var(--spacing-2);
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

/* Required Field Indicator */
.text-danger {
  color: #dc3545;
}

/* Placeholder Styling */
.form-control::placeholder {
  color: var(--color-gray-400);
  opacity: 1;
}

.form-control::-webkit-input-placeholder {
  color: var(--color-gray-400);
}

.form-control::-moz-placeholder {
  color: var(--color-gray-400);
}

.form-control:-ms-input-placeholder {
  color: var(--color-gray-400);
}

/* Loading State for Submit Button */
#contactSubmitBtn.loading {
  position: relative;
  color: transparent;
}

#contactSubmitBtn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Modern Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Floating elements */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Floating elements */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets and Below (992px) */
@media (max-width: 992px) {
  :root {
    --font-size-6xl: 2.5rem;
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-6);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    gap: var(--spacing-4);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Tablets and Below (768px) */
@media (max-width: 768px) {
  .section {
    padding: var(--spacing-12) 0;
  }

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

  .hero p {
    font-size: var(--font-size-lg);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Mobile Devices (576px) */
@media (max-width: 576px) {
  :root {
    --container-padding: var(--spacing-4);
    --font-size-5xl: 1.75rem;
    --font-size-4xl: 1.5rem;
  }

  .section-header h2 {
    font-size: var(--font-size-3xl);
  }

  .card {
    padding: var(--spacing-5);
  }
}

/* ========================================
   SERVICE LANDING PAGE STYLES
   ======================================== */

/* Service Landing Page Variables */
:root {
  --service-hero-bg: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  --service-primary: var(--color-primary, #8B0A12);
  --service-secondary: var(--color-secondary, #dc3545);
  --service-accent: #28a745;
  --service-text: #333333;
  --service-text-light: #666666;
  --service-border: #e9ecef;
  --service-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --service-shadow-hover: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  --service-border-radius: 0.75rem;
  --service-transition: all 0.3s ease;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: var(--service-hero-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--service-border);
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: var(--service-text-light);
}

.breadcrumb-item a {
  color: var(--service-primary);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Service Hero Section */
.service-hero {
  background: var(--service-hero-bg);
  padding: 4rem 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--service-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--service-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  margin-bottom: 2rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-link {
  cursor: pointer;
  transition: var(--service-transition);
}

.contact-link:hover {
  color: var(--service-primary);
}

.hero-image img {
  transition: var(--service-transition);
}

.hero-image img:hover {
  transform: translateY(-5px);
}

/* Service Page Breadcrumb */
.service-breadcrumb {
  opacity: 0;
  transform: translateY(30px);
  animation: smoothFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.05s forwards;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.service-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
  color: #d32f2f;
}

.service-breadcrumb span {
  margin: 0 0.5rem;
  color: #999;
}

/* Service Hero Highlight Cards - Screenshot Style */
.hero-services .service-highlight-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-services .service-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-services .service-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-services .service-highlight-card:hover::before {
  opacity: 1;
}

.service-icon-container {
  margin-bottom: 1.5rem;
}

.hero-services .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #d32f2f 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(139, 10, 18, 0.3);
  transition: all 0.3s ease;
}

.hero-services .service-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Override specific icon colors in hero service cards */
.hero-services .service-icon .fa-facebook,
.hero-services .service-icon .fa-instagram {
  color: white !important;
}

.hero-services .service-highlight-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(139, 10, 18, 0.4);
}

.hero-services .service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.hero-services .service-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  opacity: 0.9;
}

/* Process Section */
.service-process {
  position: relative;
  overflow: hidden;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}





/* Technologies Section */
.service-technologies {
  background: #f8f9fa;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.tech-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--service-border-radius);
  text-align: center;
  box-shadow: var(--service-shadow);
  transition: var(--service-transition);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--service-shadow-hover);
}

.tech-icon {
  margin-bottom: 1rem;
}

.tech-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tech-icon i {
  font-size: 2.5rem;
  color: var(--service-primary);
}

.tech-name {
  font-weight: 600;
  color: var(--service-text);
}

/* Audience Section */
.audience-card {
  background: white;
  padding: 2rem;
  border-radius: var(--service-border-radius);
  text-align: center;
  box-shadow: var(--service-shadow);
  transition: var(--service-transition);
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--service-shadow-hover);
}

.audience-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--service-primary), var(--service-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.audience-card h4 {
  color: var(--service-text);
  margin-bottom: 1rem;
}

.audience-card p {
  color: var(--service-text-light);
  line-height: 1.6;
}

/* Other Services Section */
.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--service-border-radius);
  box-shadow: var(--service-shadow);
  transition: var(--service-transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--service-shadow-hover);
}

.service-card h5 {
  margin-bottom: 1rem;
}

.service-card h5 a {
  color: var(--service-text);
}

.service-card h5 a:hover {
  color: var(--service-primary);
}

.service-card p {
  color: var(--service-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.accordion-button {
  font-weight: 600;
  color: var(--service-text);
}

.accordion-button:not(.collapsed) {
  background-color: var(--service-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 10, 18, 0.25);
}

/* Contact Section */
.service-contact {
  background: linear-gradient(135deg, var(--service-primary), var(--service-secondary));
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--service-border-radius);
  padding: 2rem;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
  background: white;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

/* Loading States */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 0.125rem solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Copy to Clipboard Feedback */
.copied {
  background-color: var(--service-accent) !important;
  color: white !important;
  transition: var(--service-transition);
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

.text-gradient {
  background: linear-gradient(135deg, var(--service-primary), var(--service-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Design for Service Landing */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  /* Modern Process Section - Tablet */
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-card {
    padding: 2rem 1.5rem;
  }

  .step-connector {
    display: none;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-contact {
    flex-direction: column;
    gap: 1rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Modern Process Section - Mobile */
  .process-title {
    font-size: 2.5rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .process-features {
    gap: 0.25rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}



/* ============================================
   SERVICE PAGE SECTIONS - THEME DESIGN
   ============================================ */

/* Common Section Styling */
.section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(139, 10, 18, 0.2);
}

.section-title {
  font-family: 'Poppins', var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* About the Service Section */
.service-about-section {
  background: #f8f9fa;
}

.service-category-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.category-icon-container {
  margin-bottom: 1.5rem;
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.category-icon i {
  font-size: 1.8rem;
  color: white !important;
}

/* Override specific icon colors in category cards */
.category-icon .fa-photo-video,
.category-icon .fa-bullhorn,
.category-icon .fa-calendar-alt,
.category-icon .fa-chart-line {
  color: white !important;
}

.wordpress-color {
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
}

.custom-app-color {
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
}

.saas-color {
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
}

.service-category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.category-subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.category-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-features li {
  padding: 0.6rem 0;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-features li i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* Key Benefits Section */
.key-benefits-section {
  background: white;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-container {
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(139, 10, 18, 0.25);
  transition: all 0.3s ease;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Override specific icon colors in benefit cards */
.benefit-icon .fa-palette,
.benefit-icon .fa-chart-bar {
  color: white !important;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(139, 10, 18, 0.35);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Technologies Section */
.technologies-section {
  background: #f8f9fa;
}

.tech-category-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tech-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tech-category-title i {
  color: var(--color-primary);
  font-size: 1.3rem;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  padding: 0.6rem 0;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.tech-list li:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.tech-list li i {
  font-size: 1rem;
}

/* Technology-specific icon colors */
.tech-list li i.fa-react {
  color: #61DAFB;
}

.tech-list li i.fa-bolt {
  color: #000000;
}

.tech-list li i.fa-js {
  color: #F7DF1E;
}

.tech-list li i.fa-wind {
  color: #06B6D4;
}

.tech-list li i.fa-bootstrap {
  color: #7952B3;
}

.tech-list li i.fa-laravel {
  color: #FF2D20;
}

.tech-list li i.fa-node-js {
  color: #339933;
}

.tech-list li i.fa-php {
  color: #777BB4;
}

.tech-list li i.fa-database {
  color: #4479A1;
}

.tech-list li i.fa-leaf {
  color: #47A248;
}

.tech-list li i.fa-wordpress {
  color: #21759B;
}

.tech-list li i.fa-digital-ocean {
  color: #0080FF;
}

.tech-list li i.fa-aws {
  color: #FF9900;
}

.tech-list li i.fa-cloudflare {
  color: #F38020;
}

.tech-list li i.fa-google {
  color: #4285F4;
}

.tech-list li i.fa-facebook {
  color: #1877F2;
}

.performance-tools {
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-badge {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  color: var(--color-primary);
}

.tech-badge i {
  font-size: 1rem;
}

/* Target Audience Section */
.target-audience-section {
  background: white;
}

.audience-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.audience-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(139, 10, 18, 0.25);
  transition: all 0.3s ease;
}

.audience-icon i {
  font-size: 2rem;
  color: white;
}

.audience-card:hover .audience-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(139, 10, 18, 0.35);
}

.audience-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.audience-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Capabilities Section */
.capabilities-section {
  background: #f8f9fa;
}

.capability-item {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.capability-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.capability-item i {
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.capability-item:hover i {
  transform: scale(1.2);
}

.capability-item:first-child i,
.capability-item i.fa-palette {
  color: var(--color-primary) !important;
}

.capability-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Portfolio Preview Section */
.portfolio-preview-section {
  background: white;
}

.portfolio-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

@media (max-width: 576px) {
  .portfolio-image {
    height: 160px;
  }
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.portfolio-industry {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tech-tag {
  background: rgba(139, 10, 18, 0.1);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.portfolio-result {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-result i {
  color: var(--color-primary);
}

.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-cta:hover {
  gap: 1rem;
  color: #d32f2f;
}

/* Pricing Section */
.pricing-section {
  background: #f8f9fa;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.featured {
  box-shadow: 0 15px 50px rgba(139, 10, 18, 0.15);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--color-primary);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(139, 10, 18, 0.25);
}

.pricing-icon i {
  font-size: 2rem;
  color: white !important;
}

.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.price-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: var(--color-primary);
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(139, 10, 18, 0.3);
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 10, 18, 0.4);
  color: white;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item .accordion-button {
  background: white;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(139, 10, 18, 0.05), rgba(255, 255, 255, 0.95));
  color: var(--color-primary);
}

.faq-item .accordion-button i {
  font-size: 1.2rem;
  color: var(--color-primary);
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .category-title,
  .benefit-title,
  .audience-title,
  .portfolio-title,
  .pricing-title {
    font-size: 1.2rem;
  }

  .tech-badges {
    justify-content: center;
  }
}

/* ============================================
   PROCESS SECTION - CARD DESIGN
   ============================================ */

.service-process {
  background: #f8f9fa;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.process-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 5px 15px rgba(139, 10, 18, 0.3);
}

.process-icon-wrapper {
  margin: 1.5rem auto 1.5rem;
}

.process-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(139, 10, 18, 0.25);
  transition: all 0.3s ease;
}

.process-icon i {
  font-size: 2.2rem;
  color: white;
}

/* Override specific icon colors in process cards */
.process-icon .fa-palette,
.process-icon .fa-chart-bar {
  color: white !important;
}

.process-card:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(139, 10, 18, 0.35);
}

.process-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.process-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.process-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.process-tag {
  background: rgba(139, 10, 18, 0.08);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* Responsive Design for Process Section */
@media (max-width: 768px) {
  .process-card {
    margin-bottom: 1.5rem;
  }

  .process-title {
    font-size: 1.2rem;
  }

  .process-icon {
    width: 75px;
    height: 75px;
  }

  .process-icon i {
    font-size: 1.8rem;
  }
}

/* ============================================
   SERVICE CTA SECTION
   ============================================ */

.service-cta-section {
  background: linear-gradient(135deg, var(--color-primary), #a61b23);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.service-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
  opacity: 0.5;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Poppins', var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

.cta-feature-item i {
  font-size: 1.3rem;
  color: white;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.cta-primary-btn {
  background: white;
  color: var(--color-primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--color-primary);
}

.cta-secondary-btn {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-3px);
}

.cta-contact-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.95rem;
}

.contact-detail i {
  font-size: 1.1rem;
}

/* Responsive Design for CTA Section */
@media (max-width: 991px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    margin-top: 2rem;
  }

  .cta-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-features {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
  }
}