/* Brand Logo Scroller Styles */
.brand-scroller-section {
  padding: 60px 0;
  background: #f8f9fa;
  overflow: hidden;
  position: relative;
}

.brand-scroller {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  animation: scroll 30s linear infinite;
  width: max-content;
  white-space: nowrap;
  margin: 0 auto;
}

.brand-item {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 6 - 40px * 6)); /* Adjust based on number of items and gap */
  }
}

/* Pause animation on hover */
.brand-scroller:hover {
  animation-play-state: paused;
}

/* Simplified Steps Section */
.simple-steps-section {
  padding: 100px 0;
  background: var(--primary-light);
  text-align: center;
}

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

.simple-steps-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.simple-steps-content p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 40px;
}

.btn-container {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.modern-btn {
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* display: flex; */
  align-items: center;
  gap: 10px;
}

.modern-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

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

/* Content Rich Section */
.content-rich-section {
  padding: 100px 0;
  background: #000;
  color: white;
}

.rich-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.rich-content-wrapper h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.black-content-btm p {
  font-size: 15px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: -50px;
  color: white;
}

.p-center {
  font-size: 18px;
  text-align: center;
  margin-top: -50px;
  margin-bottom: 50px;
  color: white;
}


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

.content-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.content-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.content-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-light);
}

.content-card p {
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-steps-section {
    padding: 70px 0;
  }
  
  .simple-steps-content h2 {
    font-size: 30px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
}




/* Services Page Specific Styles */
.services-hero {
  background: linear-gradient(rgba(42, 127, 186, 0.8), rgba(42, 127, 186, 0.8)), 
              url('images/3-desktop-hero.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.services-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
  padding: 80px 0;
  background: #f9f9f9;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 40px;
  color: #2a7fba;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.service-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 8px;
  color: #555;
}

/* Modern Process Steps */
/* .service-process {
  padding: 25px 0;
  background: #f9fbfd;
} */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 50px 0 70px 0;
  color: #2a3f5f;
  position: relative;
  padding-top: 30px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #2a7fba;
  margin: 20px auto 0;
  border-radius: 2px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.step-visual {
  position: relative;
  margin-bottom: 25px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2a7fba, #3fa9f5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(42, 127, 186, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.step:hover .step-number {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(42, 127, 186, 0.4);
}

.step-line {
  position: absolute;
  height: 3px;
  background: #e0e6ed;
  top: 50%;
  left: 50%;
  right: -50%;
  transform: translateY(-50%);
  z-index: 1;
}

.step:last-child .step-line {
  display: none;
}

.step-content {
  text-align: center;
  padding: 0 15px;
}

.step-content h3 {
  font-size: 1.4rem;
  color: #2a3f5f;
  margin-bottom: 15px;
}

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

/* Animation for step numbers */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.step-number {
  animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
  }
  
  .step {
    flex: 0 0 50%;
    margin-bottom: 40px;
    align-items: center;
  }
  
  .step-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .step {
    flex: 0 0 100%;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Technology Showcase */
.technology-showcase {
  padding: 80px 0;
  background: #f9f9f9;
}

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

.tech-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tech-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tech-item h3 {
  padding: 20px 20px 10px;
  color: #2a7fba;
}

.tech-item p {
  padding: 0 20px 20px;
  color: #666;
}

/* CTA Section */
.service-cta {
  padding: 80px 0;
  background: #2a7fba;
  color: white;
  text-align: center;
}

.service-cta h2 {
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.modern-btn.secondary {
  background: white;
  color: #2a7fba;
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: #f9fbfd;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.city-btn {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #2a3f5f;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.city-btn:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

.city-btn.active,
.city.active {
  background: #2a7fba;
  color: white;
  border-color: #2a7fba;
}

.city {
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 4px;
  margin: 5px 0;
}

.city:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

#map {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 1px solid #e0e6ed;
  z-index: 1;
}

/* Leaflet specific styles */
.leaflet-container {
  background: #f8f9fa;
  font-family: inherit;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
  margin: 10px 14px;
  line-height: 1.4;
}

.leaflet-popup-content b {
  color: #2a7fba;
}

.leaflet-popup-tip {
  box-shadow: none;
}

.leaflet-marker-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cities-list {
    gap: 8px;
    padding: 0 10px;
  }
  
  .city-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  #map {
    height: 400px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-hero {
    padding: 80px 0;
  }
  
  .services-hero h1 {
    font-size: 32px;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .modern-btn {
    width: 100%;
    max-width: 250px;
  }
}