:root {
    --primary: #036b2e;
    --primary-dark: #3565f2;
    --secondary: #3d5afe;
    --secondary-dark: #0026ca;
    --accent: #ff3d00;
    --accent-secondary: #ff9100;
    --purple: #7c4dff;
    --pink: #f50057;
    --teal: #00bcd4;
    --white: #ffffff;
    --offwhite: #f8f8f8;
    --offwhite-darker: #f0f0f0;
    --gray-light: #e0e0e0;
    --gray: #9e9e9e;
    --gray-dark: #616161;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
    color: var(--text-dark);
    background-color: var(--white);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6, 
.nav-links a,
.btn,
.hero-subtitle,
.section-header h2,
.logo-text,
.stat-value,
.contact-btn {
    font-family: var(--font-primary);
    font-weight: 600;
}

/* Specific font weights */
h1, .section-header h2 {
  font-weight: 700;
}

p, .hero-content p, .service-content p, .feature-description {
  font-family: var(--font-secondary);
  font-weight: 400;
}

/* Light weight elements */
.hero-subtitle, .stat-label, .service-benefits h4 {
  font-weight: 500;
}

/* Add slight letter spacing to headings for elegance */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* Button text */
.btn {
  letter-spacing: 0.5px;
}

/* Enhanced Typography */
/* Line heights */
h1 { line-height: 1.2; }
h2 { line-height: 1.3; }
h3 { line-height: 1.4; }
p { line-height: 1.6; }

.platform-item:hover .platform-icon {
  background: #4267B2; /* Lighter Facebook blue */
}

.platform-item:nth-child(1):hover .platform-icon {
  background: #4267B2; /* Google/Facebook lighter blue */
}

.platform-item:nth-child(2):hover .platform-icon {
  background: #56CBF9; /* Lighter Twitter blue */
}

.platform-item:nth-child(3):hover .platform-icon {
  background: linear-gradient(45deg, #f6a25d 0%, #ea5d94 25%, #e23672 50%, #c62e99 75%, #9625a0 100%); /* Slightly lighter Instagram gradient */
}

.platform-item:nth-child(4):hover .platform-icon {
  background: #2E9FD0; /* Lighter LinkedIn blue */
}

.platform-item:nth-child(5):hover .platform-icon {
  background: #EF7F2F; /* Lighter Shopify orange-red */
}

.platform-item:nth-child(6):hover .platform-icon {
  background: #4A9AD9; /* Lighter WordPress blue */
}

/* Font smoothing for modern browsers */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Adjust font sizes for better hierarchy */
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }


/* Responsive font sizes */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.1rem; }
  body { font-size: 0.95rem; }
}

main {
    flex: 1 0 auto;
}

section {
    padding: 60px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    box-shadow: 0 8px 25px rgba(61, 90, 254, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 5;
  background: transparent; /* Remove any background */
  border-radius: 50%;
  padding: 0; /* Remove padding */
  box-shadow: none; /* Remove shadow */
}

/* If logo is an img element */
.logo img,
.logo-image {
  height: 80px;
  width: auto;
  margin-right: 0;
  display: block;
  background: transparent; /* Ensure no background */
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2)); /* Add shadow to the logo itself */
}

.logo-text {
    display: none;
}

.logo-image-failed .logo-text {
    display: inline-block;
}

.logo-image-failed .logo-image {
    display: none;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.05);
    top: -20px;
    left: 0;
    z-index: -1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #131722; /* Dark blue-black color matching your dark sections */
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

header.scrolled {
  padding: 5px 0;
  background-color: #131722; /* Keep consistent when scrolling */
}

/* Updated Header & Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

/* Left Navigation */
.left-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* Logo in center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 5;
}

.logo-image {
    height: 75px;
    width: auto;
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.phone-number i {
    color: var(--primary);
    font-size: 16px;
}

.phone-number:hover {
    color: var(--primary);
}

.whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Enhanced Contact Button */
.contact-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn::before {
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 4px;
}

.contact-btn:hover {
    box-shadow: 0 8px 25px rgba(61, 90, 254, 0.4);
    transform: translateY(-3px);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
/* Hero Section - Fixed Positioning */
.hero-section {
    background: #1E2433; /* Slightly lighter than the original #141824 */
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Left Content Styling */
.hero-left {
  flex: 1;
  position: relative;
  max-width: 600px;
}

.rocket-icon {
  width: 100px;
  height: 100px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.rocket-icon i {
  font-size: 40px;
  color: white;
}

.gear-icon {
  width: 80px;
  height: 80px;
  background: #FF5722;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.gear-icon i {
  font-size: 32px;
  color: white;
}

.hero-text .subtitle {
  display: inline-block;
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.2;
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-green {
  color: #4CAF50;
}

.highlight-blue {
  color: #4DB6AC;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Right Content - Platforms Box */
.hero-right {
  flex: 0 0 auto;
  width: 400px;
}

.platforms-box {
    background: rgba(255, 255, 255, 0.08); /* Very light, almost transparent white */
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.platforms-box:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.platforms-box h3 {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.platform-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-item:hover .platform-icon::before {
    opacity: 1;
}

.platform-icon i {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.platform-item:hover .platform-icon i {
    transform: scale(1.1);
}

.platform-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.platform-item:hover span {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero-content-wrapper {
      gap: 20px;
  }
  
  .hero-right {
      width: 380px;
  }
}

@media (max-width: 992px) {
  .hero-content-wrapper {
      flex-direction: column;
  }
  
  .hero-left {
      text-align: center;
      max-width: 100%;
  }
  
  .rocket-icon {
      margin: 0 auto 30px;
  }
  
  .gear-icon {
      position: relative;
      margin: 30px auto 0;
      right: auto;
      bottom: auto;
  }
  
  .hero-right {
      width: 100%;
      max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero-section {
      padding: 60px 0;
  }
  
  .hero-text h1 {
      font-size: 36px;
  }
  
  .platform-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
  }
  
  .platform-icon {
      width: 60px;
      height: 60px;
  }
  
  .platform-icon i {
      font-size: 24px;
  }
}

@media (max-width: 576px) {
  .hero-section {
      padding: 50px 0;
  }
  
  .hero-text h1 {
      font-size: 28px;
  }
  
  .platform-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .rocket-icon {
      width: 80px;
      height: 80px;
  }
  
  .rocket-icon i {
      font-size: 32px;
  }
  
  .gear-icon {
      width: 60px;
      height: 60px;
  }
  
  .gear-icon i {
      font-size: 24px;
  }
}

/* Updated Hero Background Image Styles with higher visibility */
.hero-section {
  position: relative;
  background: #1E2433; /* Keep your existing background as fallback */
  overflow: hidden;
}

/* New background image overlay - with increased visibility */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1; /* Increased from 0.3 to 0.6 for more prominence */
  z-index: 0;
}

/* Gradient overlay with reduced opacity for better image visibility */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(20, 24, 36, 0.75) 100%);
  z-index: 1;
}

/* Ensure particles layer stays above the background image */
.particles-js {
  z-index: 2;
}

/* Ensure hero content stays on top */
.hero-section .container {
  position: relative;
  z-index: 3;
}

/* Text shadow for better readability over the more visible background */
.hero-text h1,
.hero-text p,
.platforms-box h3,
.platform-item span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slightly darker box background for better contrast with the background image */
.platforms-box {
  background: rgba(15, 20, 35, 0.6); 
  backdrop-filter: blur(10px);
}

/* Optional: Add a subtle animation to the background */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hero-background {
  animation: slowZoom 30s infinite ease-in-out;
}



/* Service Icons Section */
.service-icons-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    z-index: 2;
    width: 45%;
    max-width: 500px;
}

.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-icon-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
}

.service-icon-card:hover .icon-box::before {
    transform: translateY(0);
}

.icon-box i {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-icon-card:hover .icon-box i {
    transform: scale(1.15);
}

.icon-title {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    text-align: center;
    transition: all 0.3s ease;
}

/* Icon background colors and hover effects */
.service-icon-card[data-service="web"] .icon-box {
    background: #00c853;
}
.service-icon-card[data-service="web"]:hover .icon-box {
    background: linear-gradient(135deg, #00c853 0%, #69f0ae 100%);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
}
.service-icon-card[data-service="web"]:hover .icon-title {
    color: #00c853;
}

.service-icon-card[data-service="marketing"] .icon-box {
    background: #ff3d00;
}
.service-icon-card[data-service="marketing"]:hover .icon-box {
    background: linear-gradient(135deg, #ff3d00 0%, #ff9e80 100%);
    box-shadow: 0 10px 25px rgba(255, 61, 0, 0.3);
}
.service-icon-card[data-service="marketing"]:hover .icon-title {
    color: #ff3d00;
}

.service-icon-card[data-service="mobile"] .icon-box {
    background: #7c4dff;
}
.service-icon-card[data-service="mobile"]:hover .icon-box {
    background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
    box-shadow: 0 10px 25px rgba(124, 77, 255, 0.3);
}
.service-icon-card[data-service="mobile"]:hover .icon-title {
    color: #7c4dff;
}

.service-icon-card[data-service="ecommerce"] .icon-box {
    background: #00bcd4;
}
.service-icon-card[data-service="ecommerce"]:hover .icon-box {
    background: linear-gradient(135deg, #00bcd4 0%, #80deea 100%);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}
.service-icon-card[data-service="ecommerce"]:hover .icon-title {
    color: #00bcd4;
}

.service-icon-card[data-service="seo"] .icon-box {
    background: #3d5afe;
}
.service-icon-card[data-service="seo"]:hover .icon-box {
    background: linear-gradient(135deg, #3d5afe 0%, #8c9eff 100%);
    box-shadow: 0 10px 25px rgba(61, 90, 254, 0.3);
}
.service-icon-card[data-service="seo"]:hover .icon-title {
    color: #3d5afe;
}

.service-icon-card[data-service="design"] .icon-box {
    background: #f50057;
}
.service-icon-card[data-service="design"]:hover .icon-box {
    background: linear-gradient(135deg, #f50057 0%, #ff80ab 100%);
    box-shadow: 0 10px 25px rgba(245, 0, 87, 0.3);
}
.service-icon-card[data-service="design"]:hover .icon-title {
    color: #f50057;
}

/* Services */
.services {
    background: linear-gradient(135deg, rgba(248,248,248,0.7) 0%, rgba(255,255,255,0.7) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

/* Service Cards - More specific selectors */
.services-grid .service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Add a subtle background gradient effect on hover */
.services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
    border-radius: var(--border-radius-lg);
}

.services-grid .service-card:nth-child(4n+1)::before {
    background: linear-gradient(135deg, rgba(0,200,83,0.03) 0%, rgba(61,90,254,0.07) 100%);
}

.services-grid .service-card:nth-child(4n+2)::before {
    background: linear-gradient(135deg, rgba(255,61,0,0.03) 0%, rgba(245,0,87,0.07) 100%);
}

.services-grid .service-card:nth-child(4n+3)::before {
    background: linear-gradient(135deg, rgba(124,77,255,0.03) 0%, rgba(61,90,254,0.07) 100%);
}

.services-grid .service-card:nth-child(4n+4)::before {
    background: linear-gradient(135deg, rgba(0,188,212,0.03) 0%, rgba(0,200,83,0.07) 100%);
}

.services-grid .service-card:hover::before {
    opacity: 1;
}

.services-grid .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.services-grid .service-card:nth-child(4n+1):hover {
    border-color: var(--primary);
    background-color: rgba(0, 200, 83, 0.02);
}

.services-grid .service-card:nth-child(4n+2):hover {
    border-color: var(--accent);
    background-color: rgba(255, 61, 0, 0.02);
}

.services-grid .service-card:nth-child(4n+3):hover {
    border-color: var(--purple);
    background-color: rgba(124, 77, 255, 0.02);
}

.services-grid .service-card:nth-child(4n+4):hover {
    border-color: var(--teal);
    background-color: rgba(0, 188, 212, 0.02);
}

.service-icon {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240,240,240,0.5) 0%, rgba(248,248,248,0.5) 100%);
}

.service-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-benefits {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.service-benefits h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    color: var(--text-light);
}

.benefits-list li i {
    margin-right: 10px;
    font-size: 14px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    margin-top: auto;
    padding-top: 20px;
}

.read-more:hover {
    gap: 10px;
}

/* Services Section - Mobile Slider and Desktop Grid */

/* Mobile Services Slider */
.services-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    display: none; /* Hidden on desktop by default */
}

.services-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0;
    margin: 0 -15px;
    padding: 20px 15px;
}

/* Hide scrollbar */
.services-slider::-webkit-scrollbar {
    display: none;
}

.services-slider {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.service-card-mobile {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Slider Dots Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Hidden services */
.hidden-service {
    display: none;
}


/* About Section */
.about-section {
    background: linear-gradient(135deg, #131722 0%, #1e2433 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .section-header h2 {
    color: #fff;
    font-size: 42px;
    letter-spacing: -0.5px;
}

.about-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.about-section .section-header h2:after {
    background: var(--gradient-primary);
    height: 4px;
    width: 60px;
}

/* Luxurious layout */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    position: relative;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 300;
}

.about-intro h2 strong {
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-intro p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

/* Feature grid with elegant cards */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.luxury-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.luxury-feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.luxury-feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.luxury-feature-box:nth-child(1) .feature-icon {
    color: var(--primary);
}

.luxury-feature-box:nth-child(2) .feature-icon {
    color: var(--accent);
}

.luxury-feature-box:nth-child(3) .feature-icon {
    color: var(--purple);
}

.luxury-feature-box:nth-child(4) .feature-icon {
    color: var(--teal);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
    flex-grow: 1;
}

.stats-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
}



/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader::before, .loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 2s linear infinite;
}

.loader::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--secondary);
    border-bottom-color: var(--primary);
    animation-duration: 2s;
}

.loader::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    animation-duration: 1s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Form elements */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--offwhite);
    border: 1px solid var(--gray-light);
    color: var(--text-dark);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.submit-btn:hover {
    box-shadow: 0 8px 25px rgba(61, 90, 254, 0.4);
    transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .service-icons-container {
        width: 40%;
        gap: 20px;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
    }
    
    .icon-box i {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .left-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 100px 0 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        align-items: flex-start;
        border-left: 1px solid var(--gray-light);
    }
    
    .left-nav.active {
        right: 0;
    }
    
    .left-nav a {
        display: block;
        width: 100%;
        padding: 15px 30px;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .logo {
        position: relative;
        left: 0;
        transform: none;
    }
    
    .logo-image {
        height: 55px;
    }
    
    /* Improved Mobile Navigation Styles */
@media (max-width: 992px) {
  /* Header adjustments */
  .navbar {
    padding: 12px 0;
  }
  
  /* Hamburger menu improvements */
  .hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    margin-left: 15px;
  }
  
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  
  .hamburger.active {
    background: var(--primary);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile menu improvements */
  .left-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #1a1f2f; /* Darker background for better readability */
    flex-direction: column;
    gap: 0;
    padding: 80px 0 30px;
    transition: all 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    align-items: center;
    overflow-y: auto;
  }
  
  .left-nav.active {
    right: 0;
  }
  
  .left-nav a {
    display: block;
    width: 100%;
    padding: 16px 25px;
    font-size: 16px;
    color: white;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    text-align: left;
  }
  
  .left-nav a:hover, 
  .left-nav a.active {
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary);
    padding-left: 30px;
  }
  
  /* Add a menu title */
  .left-nav::before {
    content: 'Navigation';
    display: block;
    position: absolute;
    top: 30px;
    left: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  /* Backdrop overlay when menu is open */
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Center the logo */
  .logo {
    position: relative;
    left: 0;
    transform: none;
    margin-left: 15px;
  }
  
  .logo-image {
    height: 50px;
  }
  
  /* Fix the header layout */
  .navbar {
    justify-content: space-between;
  }
  
  /* Adjust contact info and button */
  .nav-actions {
    margin-left: auto;
  }
  
  .phone-number span {
    display: none; /* Hide the phone number text on mobile */
  }
  
  .phone-number {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  /* Further adjustments for extra small screens */
  .contact-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .phone-number,
  .hamburger {
    width: 35px;
    height: 35px;
  }
  
  .logo-image {
    height: 45px;
  }
}
    
    .hero {
        padding-top: 150px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .service-icons-container {
        position: relative;
        width: 100%;
        max-width: 600px;
        right: auto;
        top: auto;
        transform: none;
        margin: 60px auto 0;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-slide {
        width: 100%;
        right: -100%;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-icons-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .icon-box i {
        font-size: 28px;
    }
    
    .icon-title {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-slide {
        padding: 30px 20px;
    }
}

/* Full-width Tabbed Tech Stack Styles */
.fullwidth-tech-stack {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .fullwidth-tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
      rgba(0, 200, 83, 0.05) 0%, 
      rgba(0, 0, 0, 0) 50%, 
      rgba(61, 90, 254, 0.05) 100%);
    z-index: 0;
  }
  
  .fullwidth-tech-stack .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212121;
  }
  
  .section-header p {
    font-size: 18px;
    color: #757575;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Tabs Navigation */
  .tech-tab-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .tech-tabs {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  
  .tech-tab-btn {
    flex: 1;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #757575;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
  }
  
  .tech-tab-btn i {
    font-size: 18px;
  }
  
  .tech-tab-btn:hover {
    color: #212121;
    background-color: rgba(0, 0, 0, 0.015);
  }
  
  .tech-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease;
  }
  
  .tech-tab-btn.active {
    color: #212121;
  }
  
  .tech-tab-btn.active::after {
    width: 100%;
  }
  
  /* Tab button colors */
  .tech-tab-btn[data-tab="design"]::after { background: #f50057; }
  .tech-tab-btn[data-tab="frontend"]::after { background: #3d5afe; }
  .tech-tab-btn[data-tab="backend"]::after { background: #00c853; }
  .tech-tab-btn[data-tab="cms"]::after { background: #ff3d00; }
  .tech-tab-btn[data-tab="mobile"]::after { background: #7c4dff; }
  
  /* Tab content */
  .tech-content-wrapper {
    width: 100%;
    min-height: 300px;
    position: relative;
  }
  
  .tech-content {
    display: none;
    padding: 40px 30px;
    width: 100%;
  }
  
  .tech-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Tech grid */
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 25px;
    width: 100%;
  }
  
  .tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 140px;
  }
  
  .tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .tech-item img,
  .tech-item i {
    height: 60px;
    width: 60px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    object-fit: contain;
  }
  
  .tech-item i {
    font-size: 40px;
    color: #757575;
  }
  
  .tech-item span {
    font-size: 14px;
    font-weight: 500;
    color: #757575;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .tech-item:hover span {
    color: #212121;
  }
  
  .tech-item:hover img,
  .tech-item:hover i {
    transform: scale(1.1);
  }
  
  /* Tab-specific item styling */
  #design .tech-item:hover {
    border: 1px solid rgba(245, 0, 87, 0.2);
    background: linear-gradient(135deg, rgba(245, 0, 87, 0.02) 0%, rgba(245, 0, 87, 0.05) 100%);
  }
  
  #frontend .tech-item:hover {
    border: 1px solid rgba(61, 90, 254, 0.2);
    background: linear-gradient(135deg, rgba(61, 90, 254, 0.02) 0%, rgba(61, 90, 254, 0.05) 100%);
  }
  
  #backend .tech-item:hover {
    border: 1px solid rgba(0, 200, 83, 0.2);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.02) 0%, rgba(0, 200, 83, 0.05) 100%);
  }
  
  #cms .tech-item:hover {
    border: 1px solid rgba(255, 61, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.02) 0%, rgba(255, 61, 0, 0.05) 100%);
  }
  
  #mobile .tech-item:hover {
    border: 1px solid rgba(124, 77, 255, 0.2);
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.02) 0%, rgba(124, 77, 255, 0.05) 100%);
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .tech-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 20px;
    }
    
    .tech-item {
      padding: 15px;
      height: 120px;
    }
    
    .tech-item img,
    .tech-item i {
      height: 50px;
      width: 50px;
    }
    
    .tech-item i {
      font-size: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .tech-tabs {
      flex-wrap: wrap;
    }
    
    .tech-tab-btn {
      flex: 1 0 calc(33.333% - 10px);
      padding: 12px 15px;
      font-size: 14px;
    }
    
    .tech-grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 15px;
    }
    
    .tech-item {
      height: 110px;
      padding: 12px;
    }
    
    .tech-item img,
    .tech-item i {
      height: 40px;
      width: 40px;
      margin-bottom: 8px;
    }
    
    .tech-item i {
      font-size: 28px;
    }
    
    .tech-item span {
      font-size: 12px;
    }
  }
  
  @media (max-width: 576px) {
    .section-header h2 {
      font-size: 28px;
    }
    
    .section-header p {
      font-size: 16px;
    }
    
    .tech-tab-btn {
      flex: 1 0 50%;
      font-size: 13px;
    }
    
    .tech-grid {
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
      gap: 12px;
    }
    
    .tech-content {
      padding: 25px 15px;
    }
  }
  /* Client Logos Section Styles */
.client-showcase {
    padding: 50px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .client-showcase::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
  }
  
  .client-showcase::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61,90,254,0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
  }
  
  .client-showcase .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212121;
  }
  
  .section-header p {
    font-size: 18px;
    color: #757575;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Logo Marquee Styles */
  .logo-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    margin-bottom: 25px;
  }
  
  .logo-marquee {
    display: flex;
    width: fit-content;
    animation: scroll 35s linear infinite;
  }
  
  .logo-marquee-container.reverse .logo-marquee {
    animation: scroll-reverse 40s linear infinite;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  
  .marquee-content {
    display: flex;
    align-items: center;
  }
  
  .client-logo {
    min-width: 180px;
    height: 100px;
    margin: 0 25px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 1;
  }
  
  .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .client-logo:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .client-logo img {
    max-width: 100%;
    max-height: 60px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    z-index: 2;
  }
  
  .client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }
  
  /* Hover effect - show view button */
  .client-logo::after {
    content: 'View Project';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    background: linear-gradient(135deg, var(--primary, #00c853) 0%, var(--secondary, #3d5afe) 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
  }
  
  .client-logo:hover::after {
    transform: translateY(0);
  }
  
  
  
  /* Projects Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Project Card Styling */
.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary, linear-gradient(135deg, #00c853 0%, #3d5afe 100%));
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.project-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #212121;
  transition: all 0.3s ease;
}

.project-card:hover h3 {
  color: var(--primary, #00c853);
}

.project-content p {
  color: #616161;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-tag {
  background: #f0f0f0;
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 12px;
  color: #616161;
  font-weight: 500;
}

.view-project {
  color: var(--primary, #00c853);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.view-project:after {
  content: '→';
  transition: transform 0.3s ease;
}

.view-project:hover {
  color: var(--secondary, #3d5afe);
}

.view-project:hover:after {
  transform: translateX(5px);
}

/* Project Modal Styling */
.project-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.project-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.project-modal {
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.project-modal-overlay.active .project-modal {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f44336;
  color: white;
  transform: rotate(90deg);
}

.project-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.project-header {
  position: relative;
}

.project-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.project-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  padding: 25px 30px 15px;
  color: #212121;
  border-bottom: 3px solid var(--primary, #00c853);
  display: inline-block;
}

.project-meta {
  display: flex;
  gap: 30px;
  padding: 0 30px 20px;
  margin-top: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #616161;
  font-size: 16px;
}

.meta-item i {
  color: var(--primary, #00c853);
}

.meta-item a {
  color: var(--secondary, #3d5afe);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.meta-item a:hover {
  color: var(--primary, #00c853);
  text-decoration: underline;
}

.project-body {
  padding: 10px 30px 40px;
}

.project-highlights-section,
.project-description-section,
.project-stack-section {
  margin-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-highlights-section h3,
.project-description-section h3,
.project-stack-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #424242;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid var(--primary, #00c853);
}

.highlights-list {
  list-style: none;
  padding-left: 5px;
  margin-bottom: 25px;
}

.highlights-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #616161;
  line-height: 1.5;
}

.highlights-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary, #00c853);
}

#projectDescription {
  line-height: 1.7;
  color: #616161;
  margin-bottom: 25px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags .tech-tag {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  color: #616161;
  transition: all 0.3s ease;
}

.tech-tags .tech-tag:hover {
  background: var(--primary, #00c853);
  color: white;
  border-color: var(--primary, #00c853);
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0, 200, 83, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .project-banner {
    height: 200px;
  }
  
  .project-header h2 {
    font-size: 26px;
    padding: 20px 20px 10px;
  }
  
  .project-meta {
    padding: 0 20px 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  .project-body {
    padding: 10px 20px 30px;
  }
}

@media (max-width: 480px) {
  .project-banner {
    height: 180px;
  }
  
  .project-header h2 {
    font-size: 22px;
    padding: 15px 15px 10px;
  }
  
  .project-body {
    padding: 5px 15px 20px;
  }
  
  .tech-tags .tech-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}
  
  /* Revised Contact & Testimonial Section Styles */
/* Contact Testimonial Section Layout Fix */
.contact-testimonial-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4e54c8 0%, #3f51b5 50%, #2196f3 100%);
    color: #fff;
}

.contact-testimonial-wrapper {
    display: flex;
    align-items: stretch; /* Stretch columns to equal height */
    gap: 50px;
    padding: 80px 0;
    width: 100%;
}

.testimonial-column {
    flex: 2; /* Larger proportion for testimonials */
    position: relative;
    display: flex;
    align-items: center;
}

.contact-column {
    flex: 1; /* Smaller proportion for contact form */
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-carousel {
    width: 100%;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    width: 50%;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-testimonial-wrapper {
        flex-direction: column;
        padding: 60px 0;
        gap: 30px;
    }
    
    .testimonial-column,
    .contact-column {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        flex: none; /* Reset flex for mobile */
    }
}

@media (max-width: 768px) {
    .contact-testimonial-wrapper {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-testimonial-wrapper {
        padding: 30px 0;
    }
    
    .contact-form {
        padding: 20px;
    }
}
  /* Testimonial Carousel Styles */
  .testimonial-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .testimonial-slides {
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }
  
  .testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .testimonial-slide.active {
    opacity: 1;
    position: relative;
    transform: translateY(0);
  }
  
  .quote-icon {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #fff;
  }
  
  .author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }
  
  /* Carousel Navigation */
  .carousel-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .carousel-dots {
    display: flex;
    gap: 10px;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
  }
  
  /* Contact Form Styles */
  .contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .send-message-btn {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .send-message-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
  
  .send-message-btn i {
    transition: transform 0.3s ease;
  }
  
  .send-message-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Contact Info Section Styles - Aligned as in screenshot */
  .contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .contact-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #fff;
  }
  
  .contact-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .contact-testimonial-wrapper {
      flex-direction: column;
      padding: 60px 0;
    }
    
    .testimonial-column,
    .contact-column {
      width: 100%;
    }
    
    .testimonial-carousel {
      margin-bottom: 50px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-slide {
      padding: 25px;
    }
    
    .testimonial-text {
      font-size: 15px;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
    }
    
    .contact-form {
      padding: 25px;
    }
    
    .contact-info-item {
      gap: 15px;
    }
    
    .contact-icon {
      width: 45px;
      height: 45px;
      font-size: 18px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-testimonial-wrapper {
      padding: 40px 0;
    }
    
    .testimonial-author {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .testimonial-slide {
      min-height: 450px;
    }
    
    .contact-form {
      padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
      padding: 12px;
    }
  }
  /* Improved Contact & Social Section Styles */
.contact-social-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #512DA8 0%, #1976D2 100%);
  color: #fff;
}

.contact-social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NzUiIHZpZXdCb3g9IjAgMCAxNDQwIDc3NSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC4wNSI+CjxwYXRoIGQ9Ik0tMjIxLjUgNTgyLjVDLTExOC4zIDQ2NS4zIDExMiA0NDIuNSAyNTMgNTYxQzM5NCA2NzkuNSA1MTIuNSA2NzkuNSA2MTYuNSA1ODEuNUM3MjAuNSA0ODMuNSA5MjggNDA3LjUgMTEyMSA1MDkuNUMxMzE0IDYxMS41IDE0MzYgNTM0LjUgMTU2MyA0MTEuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIi8+CjxwYXRoIGQ9Ik0tMzQ1LjUgNjcwLjVDLTI0Mi4zIDU1My4zIC0xMiA1MzAuNSAxMjkgNjQ5QzI3MCA3NjcuNSAzODguNSA3NjcuNSA0OTIuNSA2NjkuNUM1OTYuNSA1NzEuNSA4MDQgNDk1LjUgOTk3IDU5Ny41QzExOTAgNjk5LjUgMTMxMiA2MjIuNSAxNDM5IDQ5OS41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiLz4KPHBhdGggZD0iTS0xMTUuNSA0ODcuNUMtMTIuMyAzNzAuMyAyMTggMzQ3LjUgMzU5IDQ2NkM1MDAgNTg0LjUgNjE4LjUgNTg0LjUgNzIyLjUgNDg2LjVDODI2LjUgMzg4LjUgMTAzNCAzMTIuNSAxMjI3IDQxNC41QzE0MjAgNTE2LjUgMTU0MiA0MzkuNSAxNjY5IDMxNi41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiLz4KPC9nPgo8L3N2Zz4K') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.contact-social-wrapper {
  display: flex;
  gap: 50px;
}

.social-column,
.contact-column {
  flex: 1;
  position: relative;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fff;
}

.section-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

/* Social Icons Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-card span {
  font-size: 14px;
  font-weight: 500;
}

/* Social card specific colors */
.facebook .social-icon {
  background: #1877F2;
}

.instagram .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin .social-icon {
  background: #0077B5;
}

.google .social-icon {
  background: #DB4437;
}

.twitter .social-icon {
  background: #1DA1F2;
}

.youtube .social-icon {
  background: #FF0000;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.author-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.input-wrapper i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  min-width: 20px;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
  width: 100%;
  background: transparent;
  border: none;
  padding: 15px 10px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.phone-group {
  display: flex;
}

.country-select {
  position: relative;
  min-width: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px 0 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
}

.country-select select {
  appearance: none;
  width: 100%;
  padding: 15px 25px 15px 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.country-select i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.phone-wrapper {
  flex: 1;
  border-radius: 0 8px 8px 0;
}

.textarea-wrapper {
  align-items: flex-start;
}

.textarea-wrapper i {
  margin-top: 15px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #00c853 0%, #3d5afe 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
  margin-top: 15px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 124, 255, 0.4);
}

.submit-btn i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  font-size: 18px;
  margin: 0 0 5px;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-social-wrapper {
    flex-direction: column;
  }
  
  .social-column,
  .contact-column {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-social-section {
    padding: 70px 0;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .phone-group {
    flex-direction: column;
  }
  
  .country-select {
    width: 100%;
    border-radius: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
  }
  
  .phone-wrapper {
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form {
    padding: 20px;
  }
}

/* Industries We Serve Section Styles */
.industries-we-serve {
  background: linear-gradient(135deg, #131722 0%, #1a1f35 50%, #20273f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.industries-we-serve .section-header h2 {
  color: #fff;
}

.industries-we-serve .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.industries-we-serve .section-header h2:after {
  background: var(--gradient-primary);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.industry-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.industry-icon i {
  font-size: 32px;
  color: #fff;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon i {
  transform: scale(1.2);
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.industry-card h3::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.industry-card:hover h3::after {
  width: 80%;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* Color variations by position */
.industry-card:nth-child(4n+1) .industry-icon {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
}

.industry-card:nth-child(4n+2) .industry-icon {
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.2) 0%, rgba(61, 90, 254, 0.1) 100%);
}

.industry-card:nth-child(4n+3) .industry-icon {
  background: linear-gradient(135deg, rgba(255, 61, 0, 0.2) 0%, rgba(255, 61, 0, 0.1) 100%);
}

.industry-card:nth-child(4n+4) .industry-icon {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.2) 0%, rgba(124, 77, 255, 0.1) 100%);
}

/* Animated background elements */
.industries-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(50px);
  z-index: 1;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -100px;
  right: -50px;
  animation: float 15s ease-in-out infinite alternate;
}

.shape2 {
  width: 250px;
  height: 250px;
  background: var(--secondary);
  bottom: -100px;
  left: -50px;
  animation: float 18s ease-in-out infinite alternate-reverse;
}

.shape3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 40%;
  left: 20%;
  animation: float 12s ease-in-out infinite alternate;
}

.shape4 {
  width: 150px;
  height: 150px;
  background: var(--purple);
  top: 30%;
  right: 10%;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

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

.floating-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.dot1 {
  top: 20%;
  left: 10%;
  animation: pulse 4s ease-in-out infinite;
}

.dot2 {
  top: 70%;
  left: 30%;
  animation: pulse 6s ease-in-out infinite;
}

.dot3 {
  top: 30%;
  right: 15%;
  animation: pulse 5s ease-in-out infinite;
}

.dot4 {
  top: 60%;
  right: 25%;
  animation: pulse 7s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-card {
    padding: 25px 20px;
  }
  
  .industry-icon {
    width: 70px;
    height: 70px;
  }
  
  .industry-icon i {
    font-size: 28px;
  }
  
  .industries-we-serve {
    padding: 70px 0;
  }
}

/* Creative Blogs Section Styles */
.blogs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Blobs */
.blogs-decorator {
  position: absolute;
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  z-index: 0;
  filter: blur(60px);
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 200, 83, 0.05);
  top: -50px;
  left: -100px;
  animation: blob-move 20s ease-in-out infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(61, 90, 254, 0.05);
  bottom: -100px;
  right: -150px;
  animation: blob-move 25s ease-in-out infinite alternate-reverse;
}

@keyframes blob-move {
  0% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    transform: translate(0, 0);
  }
  50% {
    border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    transform: translate(20px, 20px);
  }
  100% {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    transform: translate(40px, -10px);
  }
}

.blogs-section .container {
  position: relative;
  z-index: 1;
}

/* Filter Buttons */
.blogs-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background: #f0f0f0;
  border: none;
  border-radius: 30px;
  color: #424242;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #e0e0e0;
  color: #212121;
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 200, 83, 0.2);
}

/* Blogs Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Blog Card Styles */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

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

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: #757575;
  font-size: 13px;
  margin-bottom: 15px;
}

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

.blog-meta i {
  color: var(--primary);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #212121;
  transition: all 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card p {
  color: #616161;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  flex-grow: 1;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--secondary);
}

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

/* Blog CTA */
.blogs-cta {
  text-align: center;
  margin-top: 20px;
}

.blogs-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.blogs-cta .btn i {
  transition: transform 0.3s ease;
}

.blogs-cta .btn:hover i {
  transform: translateX(5px);
}

/* Category color variations */
.blog-card[data-category="technology"] .blog-category {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.blog-card[data-category="design"] .blog-category {
  background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
}

.blog-card[data-category="business"] .blog-category {
  background: linear-gradient(135deg, #3d5afe 0%, #8c9eff 100%);
}

.blog-card[data-category="marketing"] .blog-category {
  background: linear-gradient(135deg, #ff3d00 0%, #ff8a65 100%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .blogs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blogs-filter {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .blogs-section {
    padding: 70px 0;
  }
  
  .blog-image {
    height: 200px;
  }
}

/* Enhanced FAQ Section Styles */
.faq-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.faq-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.faq-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.03) 0%, rgba(61, 90, 254, 0.03) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 15s linear infinite alternate;
  opacity: 0.6;
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.faq-dots {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(rgba(124, 77, 255, 0.2) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.faq-wrapper {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

/* Left Column - Categories */
.faq-categories {
  width: 30%;
  padding-right: 20px;
}

.faq-categories h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #212121;
  position: relative;
  padding-bottom: 10px;
}

.faq-categories h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
}

.category-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.category-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #f8f9fa;
  font-weight: 500;
}

.category-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.category-item.active {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(61, 90, 254, 0.1) 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.category-item i {
  margin-right: 15px;
  font-size: 8px;
  transition: all 0.3s ease;
}

.category-item.active i {
  color: var(--primary);
}

.category-item span {
  font-size: 15px;
}

/* CTA Box */
.faq-cta {
  background: linear-gradient(135deg, #3d5afe 0%, #7c4dff 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(61, 90, 254, 0.3);
}

.faq-cta h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-cta p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.faq-cta .btn {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 25px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-cta .btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Right Column - FAQ Content */
.faq-content {
  width: 70%;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: rgba(0, 200, 83, 0.03);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #212121;
  transition: all 0.3s ease;
  padding-right: 20px;
}

.faq-item.active .faq-question h4 {
  color: var(--primary);
}

.toggle-icon {
  min-width: 24px;
  height: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-icon i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #757575;
}

.toggle-icon .plus {
  opacity: 1;
  transform: rotate(0deg);
}

.toggle-icon .minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-item.active .toggle-icon .plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .toggle-icon .minus {
  opacity: 1;
  transform: rotate(0deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-answer p {
  margin: 0;
  color: #616161;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .faq-categories,
  .faq-content {
    width: 100%;
    padding: 0;
  }
  
  .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .category-item {
    flex: 1 0 auto;
    padding: 10px 15px;
    margin-bottom: 0;
    min-width: 150px;
    text-align: center;
    justify-content: center;
  }
  
  .category-item i {
    margin-right: 8px;
  }
  
  .faq-cta {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }
  
  .category-item {
    min-width: auto;
    flex: 1 0 45%;
  }
  
  .faq-question h4 {
    font-size: 15px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 576px) {
  .category-item {
    flex: 1 0 100%;
  }
  
  .category-item i {
    font-size: 10px;
  }
}

/* Enhanced Creative Footer Styles */
.creative-footer {
  background: linear-gradient(135deg, #131722 0%, #1e2433 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

/* Animated Background Elements */
.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Text Elements */
.text-element {
  position: absolute;
  font-size: 70px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  opacity: 0.4;
  z-index: 0;
  white-space: nowrap;
  transform-origin: center;
  animation: float-rotate 25s infinite linear alternate;
}

.text-element[data-text="Web"] {
  top: 10%;
  left: 5%;
  animation-delay: -2s;
  animation-duration: 20s;
}

.text-element[data-text="Apps"] {
  bottom: 20%;
  left: 15%;
  animation-delay: -5s;
  animation-duration: 22s;
}

.text-element[data-text="SEO"] {
  top: 25%;
  right: 10%;
  animation-delay: -8s;
  animation-duration: 18s;
}

.text-element[data-text="Design"] {
  bottom: 15%;
  right: 5%;
  animation-delay: -3s;
  animation-duration: 23s;
}

.text-element[data-text="Marketing"] {
  top: 50%;
  left: 30%;
  animation-delay: -12s;
  animation-duration: 25s;
}

.text-element[data-text="E-commerce"] {
  top: 70%;
  right: 25%;
  animation-delay: -7s;
  animation-duration: 24s;
}

@keyframes float-rotate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(30px) rotate(2deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20px) rotate(-1deg);
    opacity: 0.3;
  }
}

/* Shape Elements */
.shape-element {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid rgba(0, 200, 83, 0.5);
  top: 20%;
  left: 20%;
  animation: pulse 8s infinite ease-in-out;
}

.square {
  width: 100px;
  height: 100px;
  border: 3px solid rgba(61, 90, 254, 0.5);
  bottom: 15%;
  right: 15%;
  animation: rotate 20s infinite linear;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid rgba(255, 61, 0, 0.5);
  top: 60%;
  left: 40%;
  animation: float-rotate 15s infinite ease-in-out alternate;
}

.plus {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 30%;
  background: transparent;
  position: absolute;
}

.plus:before,
.plus:after {
  content: "";
  position: absolute;
  background: rgba(124, 77, 255, 0.5);
}

.plus:before {
  width: 100%;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.plus:after {
  width: 15px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.zigzag {
  width: 100px;
  height: 50px;
  bottom: 30%;
  left: 10%;
  background: 
    linear-gradient(135deg, transparent 25%, rgba(0, 188, 212, 0.5) 25%) 0 50%,
    linear-gradient(225deg, rgba(0, 188, 212, 0.5) 25%, transparent 25%) 0 50%;
  background-size: 20px 40px;
  animation: move 30s infinite linear;
}

.wave {
  top: 15%;
  right: 15%;
  width: 150px;
  height: 30px;
  background: transparent;
  position: relative;
}

.wave:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(245, 0, 87, 0.5);
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  animation: wave 5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes move {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(30px) translateY(-20px);
  }
  50% {
    transform: translateX(10px) translateY(20px);
  }
  75% {
    transform: translateX(-20px) translateY(-10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes wave {
  0%, 100% {
    border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  }
  50% {
    border-radius: 0 0 100% 100% / 0 0 100% 100%;
  }
}

/* Footer Content Styling */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

/* Left Section: Logo and Tagline */
.footer-branding {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: white;
  margin-left: 15px;
}

.logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-tagline p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
  max-width: 400px;
}

.footer-tagline p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
}

/* Right Section: Contact Info */
.footer-contact-wrapper {
  flex: 1.5;
}

.contact-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 200, 83, 0.2);
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-details p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
}

.social-icon:hover {
  color: white;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover:before {
  opacity: 1;
}

/* Copyright section */
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  z-index: 99;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 50px;
  }
  
  .footer-branding {
    align-items: center;
    text-align: center;
  }
  
  .footer-tagline p {
    text-align: center;
    padding-left: 0;
    padding-top: 20px;
    margin: 0 auto;
  }
  
  .footer-tagline p:before {
    left: 50%;
    top: 0;
    width: 50px;
    height: 3px;
    transform: translateX(-50%);
  }
  
  .contact-heading {
    display: block;
    text-align: center;
  }
  
  .contact-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .creative-footer {
    padding: 60px 0 30px;
  }
  
  .footer-logo-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo-img {
    margin-bottom: 15px;
  }
  
  .logo-text {
    margin-left: 0;
  }
  
  .text-element {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    gap: 40px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-details {
    text-align: center;
  }
  
  .text-element {
    font-size: 40px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 20px;
    left: 20px;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}


/* Quote Popup Styles */
.quote-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quote-popup .input-wrapper input,
.quote-popup .input-wrapper textarea,
.quote-popup .input-wrapper select {
  color: var(--text-dark); /* or #212121 */
}

.quote-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-popup {
  width: 90%;
  max-width: 600px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s ease;
}

.quote-popup-overlay.active .quote-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.quote-popup-header {
  background: var(--gradient-primary);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.quote-popup-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.quote-popup-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}

.quote-popup-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.quote-popup-body {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

#quoteRequestForm .form-group {
  margin-bottom: 20px;
}

#quoteRequestForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
}

#quoteRequestForm .form-control {
  width: 100%;
  padding: 12px 15px;
  background: var(--offwhite);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--text-dark); /* or #212121 */
}

#quoteRequestForm .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
  outline: none;
}

#quoteRequestForm .submit-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 14px 25px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

#quoteRequestForm .submit-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.2);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .quote-popup-body {
    padding: 20px;
  }
  
  .quote-popup-header {
    padding: 15px 20px;
  }
  
  .quote-popup-header h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* Hide the contact button in the navigation for mobile devices */
  .nav-actions .contact-btn {
    display: none;
  }
}

/* Create a clone of the contact button for the mobile menu */
  .left-nav::after {
    content: "";
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 1px;
    background-color: var(--gray-light);
  }
  
  /* Style for the contact button when placed inside the mobile menu */
  .left-nav .contact-btn {
    display: block;
    margin: 20px auto;
    width: 80%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  /* Add the contact button to the mobile menu */
  .left-nav .mobile-contact-btn {
    display: block;
    margin: 20px auto;
    width: 80%;
    text-align: center;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00C853;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  max-width: 350px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.notification.error {
  background: #FF5252;
}

.notification-icon {
  font-size: 20px;
}

.notification-message {
  font-size: 14px;
  flex-grow: 1;
}

.error-message {
  color: #FF5252;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}


/* reCAPTCHA Styling */
.recaptcha-container {
  margin-bottom: 20px;
}

/* Center reCAPTCHA on forms with dark backgrounds */
.contact-testimonial-section .recaptcha-container,
.contact-slide .recaptcha-container {
  display: flex;
  justify-content: center;
}

/* Add a light background to reCAPTCHA on dark background forms for better visibility */
.contact-testimonial-section .g-recaptcha {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
}

/* Error message styling */
.error-message {
  color: #FF5252;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* On small screens, ensure reCAPTCHA is properly sized */
@media (max-width: 350px) {
  .g-recaptcha {
    transform-origin: 0 0;
    transform: scale(0.85);
  }
  
  .contact-testimonial-section .g-recaptcha,
  .contact-slide .g-recaptcha {
    transform-origin: center 0;
  }
}

/* reCAPTCHA loading indication */
.recaptcha-container::before {
  content: "Loading captcha...";
  color: #757575;
  font-size: 14px;
  display: block;
  text-align: center;
  padding: 15px;
}

/* Hide loading text when reCAPTCHA is loaded */
.recaptcha-container .g-recaptcha::before {
  display: none;
}

/* Make sure error messages don't overlap with reCAPTCHA */
.recaptcha-container .error-message {
  margin-top: 10px;
  text-align: center;
}

/* Style improvements for better reCAPTCHA visibility in quote popup form */
.quote-popup-body .recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}

/* Light border around reCAPTCHA for better definition */
.g-recaptcha {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  display: inline-block;
}


.contact-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.view-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.view-map-btn i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.view-map-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.view-map-btn:hover i {
  transform: scale(1.2) rotate(10deg);
}

@media (max-width: 768px) {
  .contact-heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .view-map-btn {
    align-self: flex-start;
  }
}
/* Quality Icons Strip Styles */
.quality-icons-strip {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: 15px;
}

.icons-strip-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.quality-icon-item {
  display: flex;
  align-items: center;
  padding: 15px;
  flex: 1;
  min-width: 220px;
  position: relative;
  transition: transform 0.3s ease;
}

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

.quality-icon-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.quality-icon-item:last-child::after {
  display: none;
}

.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0062cc 0%, #258cfb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
  animation: pulse 2s infinite;
}

.icon-container i {
  color: white;
  font-size: 24px;
}

.icon-text h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.icon-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 98, 204, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 98, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 98, 204, 0);
  }
}

/* Each icon has a different animation delay */
.quality-icon-item:nth-child(1) .icon-container {
  animation-delay: 0s;
  background: linear-gradient(135deg, #0062cc 0%, #258cfb 100%);
}

.quality-icon-item:nth-child(2) .icon-container {
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #ff9d00 0%, #ffbd59 100%);
}

.quality-icon-item:nth-child(3) .icon-container {
  animation-delay: 0.8s;
  background: linear-gradient(135deg, #43a047 0%, #76d275 100%);
}

.quality-icon-item:nth-child(4) .icon-container {
  animation-delay: 1.2s;
  background: linear-gradient(135deg, #6200ea 0%, #b388ff 100%);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .icons-strip-wrapper {
    justify-content: center;
  }
  
  .quality-icon-item {
    min-width: 180px;
    margin: 10px;
  }
  
  .quality-icon-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .quality-icons-strip {
    margin-top: -20px;
    padding: 25px 0;
  }
  
  .quality-icon-item {
    min-width: 160px;
    padding: 10px;
  }
  
  .icon-container {
    width: 50px;
    height: 50px;
  }
  
  .icon-container i {
    font-size: 20px;
  }
  
  .icon-text h4 {
    font-size: 14px;
  }
  
  .icon-text p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .icons-strip-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quality-icon-item {
    width: 100%;
    margin: 5px 0;
  }
}

/* Mobile Services Slider CSS */
.services-slider-container {
  display: none; /* Hidden by default on desktop */
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.services-slider {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scroll-behavior: smooth; /* Smooth scrolling when using JavaScript to scroll */
  scroll-snap-type: x mandatory; /* Snap to card boundaries */
  padding-bottom: 15px; /* Space for scrollbar */
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.services-slider::-webkit-scrollbar {
  display: none;
}

.service-card-mobile {
  flex: 0 0 85%; /* Each card takes 85% of container width */
  scroll-snap-align: center; /* Center cards when scrolling */
  margin-right: 15px; /* Space between cards */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  padding: 25px;
  min-width: 280px; /* Minimum width for cards */
  max-width: 350px; /* Maximum width for cards */
}

/* Slider navigation dots */
.slider-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 12px;
  height: 12px;
  background-color: #0062cc;
}

/* Media Queries */
@media (max-width: 991px) {
  .services-grid {
    display: none; /* Hide the desktop grid on mobile */
  }
  
  .services-slider-container {
    display: block; /* Show the slider on mobile */
  }
}

/* Additional mobile service card styling */
.service-card-mobile .service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0062cc, #258cfb);
  color: white;
  font-size: 24px;
}

.service-card-mobile h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.service-card-mobile p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.service-card-mobile .service-benefits {
  margin-top: 15px;
}

.service-card-mobile .service-benefits h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.service-card-mobile .benefits-list {
  list-style: none;
  padding: 0;
}

.service-card-mobile .benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 13px;
  color: #666;
}

.service-card-mobile .benefits-list li i {
  color: #0062cc;
  margin-right: 8px;
  font-size: 14px;
}

/* Image Banner Styles - Text-free version */
.image-banner {
  width: 100%;
  margin: 0px 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.banner-img-container {
  width: 100%;
  height: 100%; /* Adjust the height as needed */
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.image-banner:hover .banner-img {
  transform: scale(1.02); /* Subtle zoom effect on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-img-container {
    height: 100%; /* Smaller height on mobile */
    padding: 0;
  }
}

@media (max-width: 576px) {
  .banner-img-container {
    height: 100%; /* Even smaller on very small screens */
  }
  
  .image-banner {
    margin: 0px 0; /* Smaller margin on mobile */
    padding: 0;
  }
}