
/* ======= 3-COLUMN SERVICES SECTION STYLING ======= */
.three-column-services-section {
  padding: 100px 60px 80px;
  background: radial-gradient(circle at center, rgba(0, 30, 60, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.three-column-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

/* Columns */
.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.center-column {
  gap: 40px;
  margin-top: 60px;
}

/* Column Cards */
.column-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px 30px 60px 30px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.center-card {
  min-height: 420px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #00f0ff, #007bff, #ff00ff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.column-card:hover::before {
  opacity: 1;
}

.column-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,255,255,0.2), 0 0 40px rgba(0,255,255,0.15);
}

/* Service Arrow - Side Columns */
.service-arrow {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00f0ff, #007bff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
  z-index: 3;
}

/* Service Arrow - Center Column */
.center-arrow {
  position: static;
  align-self: center;
  margin-top: 25px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background: linear-gradient(135deg, #101149ff, #007bff);
  box-shadow: 0 6px 20px rgba(18, 6, 79, 0.4);
}

.service-arrow:hover {
  background: linear-gradient(135deg, #ff00ff, #007bff);
  transform: translateX(5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4);
}

.center-arrow:hover {
  transform: translateX(5px) scale(1.15);
  box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
}

.service-arrow i {
  transition: transform 0.3s ease;
}

.service-arrow:hover i {
  transform: translateX(3px);
}

/* Left Column Cards - Float Left */
.left-column .column-card {
  transform: rotate(-2deg) translateX(-5px);
  animation: floatLeft 8s ease-in-out infinite;
}

.left-column .column-card:nth-child(2) {
  animation-delay: 1s;
}

.left-column .column-card:nth-child(3) {
  animation-delay: 2s;
}

.left-column .column-card:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.02) translateX(0) !important;
}

/* Center Column Cards - Float Up/Down */
.center-column .column-card {
  transform: translateY(0);
  animation: floatCenter 7s ease-in-out infinite;
}

.center-column .column-card:nth-child(2) {
  animation-delay: 1.5s;
}

.center-column .column-card:hover {
  transform: translateY(-15px) scale(1.03) !important;
}

/* Right Column Cards - Float Right */
.right-column .column-card {
  transform: rotate(2deg) translateX(5px);
  animation: floatRight 8s ease-in-out infinite;
}

.right-column .column-card:nth-child(2) {
  animation-delay: 1s;
}

.right-column .column-card:nth-child(3) {
  animation-delay: 2s;
}

.right-column .column-card:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.02) translateX(0) !important;
}

/* Floating Animations */
@keyframes floatLeft {
  0%, 100% {
    transform: rotate(-2deg) translateX(-5px) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateX(-8px) translateY(-8px);
  }
}

@keyframes floatCenter {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatRight {
  0%, 100% {
    transform: rotate(2deg) translateX(5px) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateX(8px) translateY(-8px);
  }
}

/* Card Content */
.column-icon {
  font-size: 48px;
  color: #00f0ff;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
}

.column-card:hover .column-icon {
  transform: scale(1.2) rotate(10deg);
  color: #ff00ff;
}

.column-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #00f0ff, #00ff99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.center-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.column-features {
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.column-features p {
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

.center-card .column-features p {
  font-size: 16px;
  margin-bottom: 25px;
}

.column-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-features li {
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
  color: #d0d0d0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.center-card .column-features li {
  font-size: 15px;
  margin-bottom: 14px;
}

.column-features li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #00ff99;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.column-card:hover .column-features li {
  color: #ffffff;
  transform: translateX(3px);
}

.column-card:hover .column-features li:before {
  color: #00f0ff;
  transform: scale(1.1);
}

.feature-text {
  display: inline-block;
  transition: all 0.3s ease;
}

.column-card:hover .feature-text {
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

/* Background Effects */
.three-column-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 153, 0.06) 0%, transparent 60%);
  animation: columnBackground 15s ease-in-out infinite;
  z-index: 1;
}
/* ======= UNIQUE ICON COLORS ======= */
/* Software Development - Blue */
.icon-software {
  color: #00f0ff !important;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* Mobile Development - Cyan */
.icon-mobile {
  color: #00ffcc !important;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
}

/* Web Development - Green */
.icon-web {
  color: #00ff99 !important;
  text-shadow: 0 0 20px rgba(0, 255, 153, 0.6);
}

/* Performance Marketing - Orange */
.icon-performance {
  color: #ff9900 !important;
  text-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
}

/* Digital Marketing - Red */
.icon-digital {
  color: #ff3366 !important;
  text-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
}

/* Social Media Marketing - Purple */
.icon-social {
  color: #cc33ff !important;
  text-shadow: 0 0 20px rgba(204, 51, 255, 0.6);
}

/* Graphic Designing - Pink */
.icon-graphic {
  color: #ff66cc !important;
  text-shadow: 0 0 20px rgba(255, 102, 204, 0.6);
}

/* SEO Optimization - Yellow */
.icon-seo {
  color: #ffff00 !important;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
}

/* Hover effects for icons */
.column-card:hover .icon-software {
  color: #00ffff !important;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.column-card:hover .icon-mobile {
  color: #66ffcc !important;
  text-shadow: 0 0 30px rgba(102, 255, 204, 0.8);
}

.column-card:hover .icon-web {
  color: #66ff99 !important;
  text-shadow: 0 0 30px rgba(102, 255, 153, 0.8);
}

.column-card:hover .icon-performance {
  color: #ffcc00 !important;
  text-shadow: 0 0 30px rgba(255, 204, 0, 0.8);
}

.column-card:hover .icon-digital {
  color: #ff6699 !important;
  text-shadow: 0 0 30px rgba(255, 102, 153, 0.8);
}

.column-card:hover .icon-social {
  color: #dd77ff !important;
  text-shadow: 0 0 30px rgba(221, 119, 255, 0.8);
}

.column-card:hover .icon-graphic {
  color: #ff99dd !important;
  text-shadow: 0 0 30px rgba(255, 153, 221, 0.8);
}

.column-card:hover .icon-seo {
  color: #ffff66 !important;
  text-shadow: 0 0 30px rgba(255, 255, 102, 0.8);
}
@keyframes columnBackground {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.02) rotate(2deg);
  }
}

.three-column-container {
  z-index: 2;
  position: relative;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .three-column-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
  }
  
  .center-column {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 0;
  }
  
  .center-card {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .three-column-services-section {
    padding: 80px 30px 60px;
    min-height: auto;
  }
  
  .three-column-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .center-column {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .column-card {
    padding: 30px 25px 55px 25px;
  }
  
  .center-card {
    padding: 35px 30px;
    min-height: 350px;
  }
  
  .service-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
    bottom: 18px;
    right: 22px;
  }
  
  .center-arrow {
    width: 55px;
    height: 55px;
    font-size: 18px;
    margin-top: 20px;
  }
  
  .column-icon {
    font-size: 42px;
  }
  
  .column-card h3 {
    font-size: 20px;
  }
  
  .center-card h3 {
    font-size: 22px;
  }
  
  .column-features p {
    font-size: 14px;
  }
  
  .center-card .column-features p {
    font-size: 15px;
  }
  
  .column-features li {
    font-size: 13px;
  }
  
  .center-card .column-features li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .three-column-services-section {
    padding: 60px 20px 40px;
  }
  
  .column-card {
    padding: 25px 20px 50px 20px;
  }
  
  .center-card {
    padding: 30px 25px;
    min-height: 320px;
  }
  
  .service-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
    bottom: 15px;
    right: 18px;
  }
  
  .center-arrow {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin-top: 15px;
  }
  
  .column-icon {
    font-size: 38px;
  }
  
  .column-card h3 {
    font-size: 18px;
  }
  
  .center-card h3 {
    font-size: 20px;
  }
  
  .column-features p {
    font-size: 13px;
  }
  
  .center-card .column-features p {
    font-size: 14px;
  }
  
  .column-features li {
    font-size: 12px;
    padding-left: 20px;
  }
  
  .center-card .column-features li {
    font-size: 13px;
  }
}
/* ======= CLIENT LOGOS SLIDER SECTION ======= */
/* ======= CLIENT LOGOS SLIDER SECTION ======= */
/* ======= CLIENT LOGOS SLIDER SECTION ======= */
.logos-slider-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.logos-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}
.slider-container {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
    height: 90px; /* Increased from 120px to 180px */

  z-index: 2;
}


/* Logos Slider - Increased size */
.logos-slider {
  position: relative;
  width: 100%;
  height: 90px; /* Increased from 120px to 180px */
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.slider-track {
  display: flex;
  align-items: center;
  height: 100%;
  animation: slide 30s linear infinite;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  width: 250px; /* Increased from 200px to 250px */
  height: 120px; /* Increased from 80px to 120px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px; /* Increased padding */
  transition: all 0.3s ease;
}

.client-logo {
  max-width: 160px; /* Increased from 120px to 160px */
  max-height: 80px; /* Increased from 50px to 80px */
  width: auto;
  height: auto;
  filter: grayscale(0%) brightness(1);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.logo-item:hover .client-logo {
  filter: grayscale(0%) brightness(1) ;
  transform: scale(1.15);
}

/* Updated Slider Animation for larger items */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 5)); /* Updated for new width */
  }
}

/* Pause animation on hover */
.logos-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .logos-slider {
    height: 160px;
  }
  
  .logo-item {
    width: 220px;
    height: 110px;
    padding: 0 35px;
  }
  
  .client-logo {
    max-width: 140px;
    max-height: 70px;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-220px * 5));
    }
  }
}

@media (max-width: 992px) {
  .logos-slider {
    height: 140px;
  }
  
  .logo-item {
    width: 200px;
    height: 100px;
    padding: 0 30px;
  }
  
  .client-logo {
    max-width: 130px;
    max-height: 60px;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 5));
    }
  }
}

@media (max-width: 768px) {
  .logos-slider-section {
    padding: 60px 20px;
  }
  
  .logos-slider {
    height: 120px;
  }
  
  .logo-item {
    width: 180px;
    height: 80px;
    padding: 0 25px;
  }
  
  .client-logo {
    max-width: 110px;
    max-height: 50px;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-180px * 5));
    }
  }
}

@media (max-width: 576px) {
  .logos-slider-section {
    padding: 50px 15px;
  }
  
  .logos-slider {
    height: 100px;
  }
  
  .logo-item {
    width: 150px;
    height: 70px;
    padding: 0 20px;
  }
  
  .client-logo {
    max-width: 90px;
    max-height: 40px;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 5));
    }
  }
  
  .slider-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
