 :root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4cc9f0;
            --warning: #f8961e;
            --danger: #ef233c;
            --info: #4895ef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        p {
            color: #6c757d;
        }
        
        /* Digital Marketing Section */
        .digital-marketing-section {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .digital-marketing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.03;
            z-index: 0;
        }
        
        .digital-marketing-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .digital-marketing-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .digital-marketing-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .digital-marketing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .digital-marketing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .digital-marketing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .digital-marketing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: height 0.3s ease;
            z-index: -1;
        }
        
        .digital-marketing-card:hover::before {
            height: 100%;
        }
        
        .digital-marketing-card:hover .icon-3d {
            transform: scale(1.1) rotate(10deg);
            color: white;
        }
        
        .digital-marketing-card:hover .digital-marketing-title,
        .digital-marketing-card:hover .digital-marketing-text {
            color: white;
        }
        
         /* 3D Icon Styles */
    .icon-3d {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        background: linear-gradient(135deg, #4361ee, #3a0ca3);
        border-radius: 50%;
        box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3),
                    inset 0 -3px 5px rgba(0,0,0,0.2),
                    inset 0 3px 5px rgba(255,255,255,0.2);
        transition: all 0.3s ease;
        transform-style: preserve-3d;
    }
    
    .icon-3d::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        background: linear-gradient(135deg, #4895ef, #4361ee);
        border-radius: 50%;
        z-index: -1;
        filter: blur(5px);
        opacity: 0.5;
        transition: all 0.3s ease;
    }
    
    .icon-3d i {
        text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }
    
    .digital-marketing-card:hover .icon-3d {
        transform: translateY(-5px) rotateY(20deg);
        box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4),
                    inset 0 -3px 5px rgba(0,0,0,0.2),
                    inset 0 3px 5px rgba(255,255,255,0.2);
    }
    
    .digital-marketing-card:hover .icon-3d::before {
        transform: translateZ(-10px);
        filter: blur(8px);
        opacity: 0.7;
    }
    
    .digital-marketing-card:hover .icon-3d i {
        transform: scale(1.1);
    }
    
    /* Different colors for each icon */
    .digital-marketing-card:nth-child(1) .icon-3d {
        background: linear-gradient(135deg, #4cc9f0, #4895ef);
        box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
    }
    .digital-marketing-card:nth-child(1):hover .icon-3d {
        box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4);
    }
    
    .digital-marketing-card:nth-child(2) .icon-3d {
        background: linear-gradient(135deg, #f72585, #b5179e);
        box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
    }
    .digital-marketing-card:nth-child(2):hover .icon-3d {
        box-shadow: 0 15px 30px rgba(247, 37, 133, 0.4);
    }
    
    .digital-marketing-card:nth-child(3) .icon-3d {
        background: linear-gradient(135deg, #f8961e, #f3722c);
        box-shadow: 0 10px 20px rgba(248, 150, 30, 0.3);
    }
    .digital-marketing-card:nth-child(3):hover .icon-3d {
        box-shadow: 0 15px 30px rgba(248, 150, 30, 0.4);
    }
    
    .digital-marketing-card:nth-child(4) .icon-3d {
        background: linear-gradient(135deg, #43aa8b, #577590);
        box-shadow: 0 10px 20px rgba(67, 170, 139, 0.3);
    }
    .digital-marketing-card:nth-child(4):hover .icon-3d {
        box-shadow: 0 15px 30px rgba(67, 170, 139, 0.4);
    }
    
    .digital-marketing-card:nth-child(5) .icon-3d {
        background: linear-gradient(135deg, #9d4edd, #7b2cbf);
        box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
    }
    .digital-marketing-card:nth-child(5):hover .icon-3d {
        box-shadow: 0 15px 30px rgba(157, 78, 221, 0.4);
    }
    
    .digital-marketing-card:nth-child(6) .icon-3d {
        background: linear-gradient(135deg, #ff9e00, #ff7b00);
        box-shadow: 0 10px 20px rgba(255, 158, 0, 0.3);
    }
    .digital-marketing-card:nth-child(6):hover .icon-3d {
        box-shadow: 0 15px 30px rgba(255, 158, 0, 0.4);
    }

        .digital-marketing-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        
        .digital-marketing-text {
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        /* Website Audit Section */
 /* Base Styles */
.analytics-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f8961e 100%);
  position: relative;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-intro {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Analytics Grid */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Analytics Card */
.analytics-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.analytics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  border-color: rgba(99, 102, 241, 0.2);
}

.highlight-card {
  border: 1px solid #6366f1;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #6366f1;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: 12px;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  stroke: #e2e8f0;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.icon-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #6366f1;
}

.analytics-card:hover .icon-bg {
  animation: circleFill 1s forwards;
  stroke: #6366f1;
}

@keyframes circleFill {
  to {
    stroke-dashoffset: 0;
  }
}

.card-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Card Content */
.analytics-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
}

.feature-list i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Stats Bar */
.stats-bar {
  background: #f1f5f9;
  border-radius: 8px;
  height: 8px;
  margin-top: auto;
  overflow: hidden;
}

.stat-value {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 8px;
  width: calc(var(--value) - 5%);
  position: relative;
  transition: width 1s ease;
}

.stat-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.8) 0%, 
    rgba(255,255,255,0) 50%, 
    rgba(255,255,255,0.8) 100%);
  animation: shimmer 2s infinite;
}

.stat-value span {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 0.75rem;
  color: #64748b;
  white-space: nowrap;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .analytics-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .icon-wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
  }
  
  .analytics-card {
    padding: 1.5rem;
  }
}
/* Brand Strategy Modern Styles */
.brand-strategy-modern {
  padding: 5rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.brand-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subhead {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Brand Cards Container */
.brand-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Brand Card */
.brand-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.brand-card.featured {
  border: 1px solid #6366f1;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background: #6366f1;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1.25rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 6px rgba(99, 102, 241, 0.1);
}

/* Card Graphic */
.card-graphic {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.graphic-circle {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s ease;
}

.color-swatch.purple {
  background: #6366f1;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.color-swatch.teal {
  background: #14b8a6;
  bottom: 20px;
  left: 20px;
}

.color-swatch.orange {
  background: #f97316;
  bottom: 20px;
  right: 20px;
}

.brand-card:hover .color-swatch.purple {
  transform: translateX(-50%) translateY(-10px);
}

.brand-card:hover .color-swatch.teal {
  transform: translateX(-10px) translateY(10px);
}

.brand-card:hover .color-swatch.orange {
  transform: translateX(10px) translateY(10px);
}

.target-graphic {
  position: relative;
  width: 140px;
  height: 140px;
}

.target-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.target-ring.large {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.target-ring.medium {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

.target-ring.small {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  background: #e2e8f0;
}

.brand-card:hover .target-ring {
  border-color: #6366f1;
}

.brand-card:hover .target-ring.small {
  background: #6366f1;
}

.message-graphic {
  position: relative;
  width: 140px;
  height: 100px;
}

.message-bubble {
  background: #e2e8f0;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s ease;
}

.message-bubble.large {
  width: 80px;
  height: 60px;
  top: 0;
  left: 0;
}

.message-bubble.small {
  width: 60px;
  height: 45px;
  bottom: 0;
  right: 0;
}

.message-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e2e8f0;
  transition: all 0.3s ease;
}

.brand-card:hover .message-bubble {
  background: #6366f1;
}

.brand-card:hover .message-bubble::after {
  border-top-color: #6366f1;
}

.graphic-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.graphic-icon i {
  font-size: 1.5rem;
  color: #6366f1;
}

/* Card Body */
.card-body {
  text-align: center;
}

.card-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.card-body p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #475569;
}

.feature-item i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* Hover Effects */
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.brand-card:hover .graphic-icon {
  background: #6366f1;
}

.brand-card:hover .graphic-icon i {
  color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .section-heading {
    font-size: 2.2rem;
  }
  
  .brand-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brand-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .brand-strategy-modern {
    padding: 3.5rem 0;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .section-subhead {
    font-size: 1.05rem;
  }
  
  .brand-cards-container {
    grid-template-columns: 1fr;
  }
  
  .brand-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .card-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.8rem;
  }
  
  .section-tag {
    font-size: 0.75rem;
  }
  
  .brand-card {
    padding: 1.5rem;
  }
  
  .card-graphic {
    height: 140px;
  }
}

/* Base Styles */
.creative-video-marketing {
  padding: 4rem 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-description {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Cards */
  .video-services {
    padding: 5rem 1rem;
    background-color: #6c757d4a;
    font-family: 'Inter', system-ui, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-tag {
    display: inline-block;
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
  
  .section-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .section-description {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  }
  
  .card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-features li {
    padding: 0.375rem 0;
    color: #334155;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .service-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.875rem;
    width: 0.5rem;
    height: 0.125rem;
    background: #6366f1;
  }
  
  @media (max-width: 640px) {
    .video-services {
      padding: 3rem 1rem;
    }
    
    .section-intro h2 {
      font-size: 1.5rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
/* Modern styling for the automation section */
.automation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #212529;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.feature-link:hover {
    color: #0a58ca;
}

.feature-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.feature-link:hover::after {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .automation-section {
        padding: 3rem 0;
    }
    
    .automation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}
        
 
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .video-marketing-container {
                grid-template-columns: 1fr;
            }
            
            .video-marketing-content {
                order: 2;
            }
            
            .video-container {
                order: 1;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .digital-marketing-header h2,
            .website-audit-section h2,
            .brand-strategy-section h2,
            .video-marketing-section h2,
            .marketing-automation-section h2,
            .final-cta-section h2 {
                font-size: 2rem;
            }
            
            .digital-marketing-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .digital-marketing-grid {
                grid-template-columns: 1fr;
            }
            
            .brand-strategy-container {
                grid-template-columns: 1fr;
            }
            
            .automation-grid {
                grid-template-columns: 1fr;
            }
            
            .final-cta-section h2 {
                font-size: 1.8rem;
            }
            
            .final-cta-section p {
                font-size: 1rem;
            }
        }
    