/* ================= SERVICES SECTION ==================== */
.services-hero {
  position: relative;
  height: 90vh;
  background: url("/images/services.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.content,
.services-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.services-hero .hero-content {
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1.5s ease forwards;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: #00aaff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0077cc;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Services Slider */
.services-slider {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-slider h2 {
  font-size: 2.5rem;
  color: #0073e6;
  margin-bottom: 15px;
}

.services-slider p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Slider Container */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  background: #f5f8fd;
  border-radius: 12px;
  padding: 20px;
  margin: 0 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.slide h3 {
  color: #0073e6;
  margin-bottom: 10px;
}

.slide p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.slide .price {
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
  display: block;
}

.slide .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #0073e6;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.slide .btn-primary:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

.slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,115,230,0.8);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background: #005bb5;
}

.prev { 
  left: 10px; 
}

.next { 
  right: 10px; 
}

/* Dots */
.slider-dots {
  margin-top: 20px;
}

.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dots .dot.active {
  background-color: #0073e6;
}

/* ================Article ================ */
.service-article {
  background: #f0f4f8;
  padding: 20px 25px;
  margin: 20px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-article img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 15px;
}

.service-article h3 {
  color: #0073e6;
  margin-bottom: 10px;
}

.service-article p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
/* =============Coution ============= */

/* Gallery */
.gallery {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin: 15px 0;
  scroll-behavior: smooth;
}

.gallery img {
  max-height: 200px;
  border-radius: 10px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Collapsible */
.collapsible {
  background-color: #0073e6;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  width: 100%;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 1rem;
  transition: background 0.3s;

}

.collapsible:hover {
  background-color: #005bb5;
}

.content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f0f4f8;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}

.content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.content p {
  margin: 10px 0;
}

.services-process {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}

.services-process h2 {
  color: #0073e6;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.workflow-cards, .client-cards, .tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card, .client-card {
  background: #f0f4f8;
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card i, .client-card i {
  font-size: 2rem;
  color: #0073e6;
  margin-bottom: 10px;
}

.tech-stack {
  margin-top: 50px;
}

.tech-stack h3 {
  color: #0073e6;
  margin-bottom: 20px;
}

.tech-icons img {
  max-height: 80px;
  margin: 0 10px;
  transition: transform 0.3s;
}

.tech-icons img:hover {
  transform: scale(1.1);
}
/* ========== Last Section ============ */

.differentiators {
  text-align: center;
  padding: 60px 20px;
  background: #f9fbfd;
}

.differentiators h2 {
  color: #0073e6;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.differentiators p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Why Us Cards */
.why-us-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.why-us-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.why-us-card i {
  font-size: 2rem;
  color: #0073e6;
  margin-bottom: 10px;
}

.why-us-card h3 {
  margin-bottom: 8px;
}

.why-us-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Statistics */
.statistics {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2.2rem;
  color: #0073e6;
}

.stat p {
  font-size: 1rem;
  color: #555;
}

/* Graphs Placeholder */
.graphs {
  margin-bottom: 50px;
}

.graph-placeholder {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.graph-placeholder p {
  background: #e0e7ff;
  padding: 40px 60px;
  border-radius: 12px;
  color: #0073e6;
  font-weight: bold;
}

/* CTA */
.cta a.btn-primary {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta a.btn-primary:hover {
  background: #005bb5;
}

@media (max-width:480px) {
  .services-hero{
    height: 85vh;
  }
 

}

#collapsible{
  width: 20p;
  text-align: center;
  
}

@media (max-width: 480px) {
  .hero-content{
    height: vh;
  }
  .services-hero{
    display: non;
    height: 80vh;
    width: auto;
    margin-bottom: 30px;
  }
  
}

#informative-websites-info img{
  
  margin-bottom: 20px;
}

#business-websites-info img{
  
  margin-bottom: 20px;
}

#ecommerce-info img{

  margin-bottom: 20px;
}

.service-article{
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}

.service-article-list{
  text-align: left;   
}

.service-article-list li{
  margin-top: 20px;
}

.service-article-list strong{
  color: #00aaff;
}

