   .service-header {
            padding: 80px 0;
            /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
            overflow: hidden;
        }
        
        .header-content-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding-right: 30px;
        }
        
        .header-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            color: #111;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1.1;
            position: relative;
        }
        
        .header-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 80px;
            height: 6px;
            background: linear-gradient(90deg, #0072ff, #00c6ff);
            border-radius: 10px;
        }
        
        .header-content {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            line-height: 1.6;
            color: #333;
            margin: 2.5rem 0 0 0;
            max-width: 100%;
        }
        
        .header-image-container {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .header-image-container img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }
        
        .header-image-container:hover img {
            transform: translateY(-5px);
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .service-header {
                padding: 60px 0;
            }
            
            .header-content-container {
                padding-right: 0;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .header-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .header-content {
                text-align: center;
                margin: 2rem auto 0;
                max-width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .service-header {
                padding: 50px 0;
            }
            
            .header-title {
                font-size: clamp(2rem, 7vw, 3rem);
                margin-bottom: 1.2rem;
            }
            
            .header-content {
                font-size: 1.2rem;
                line-height: 1.6;
                margin: 1.8rem auto 0;
                max-width: 95%;
            }
            
            .header-image-container img {
                border-radius: 8px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }
        }
        
        @media (max-width: 576px) {
            .service-header {
                padding: 40px 0;
            }
            
            .header-title {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .header-title:after {
                width: 60px;
                height: 4px;
                bottom: -10px;
            }
            
            .header-content {
                font-size: 1.1rem;
                line-height: 1.6;
                margin: 1.5rem auto 0;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 400px) {
            .header-title {
                font-size: 1.6rem;
            }
            
            .header-content {
                font-size: 1rem;
            }
        }

.header-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
}

.header-content {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.8;
  color: #000;
  max-width: 500px;
  margin: 2rem 0 0 0;
  text-align: left;
}

.services-section {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  position: relative;
  overflow: hidden;
}

.service-item {
  margin-bottom: 100px;
}

.service-content {
  padding-right: 30px;
}

.services-section h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.services-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 70px;
  height: 5px;
  border-radius: 10px;
}

.web-dev h3:after {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
}

.digital-marketing h3:after {
  background: linear-gradient(90deg, #f556ff, #fd746c);
}

.ui-ux h3:after {
  background: linear-gradient(90deg, #ff8c00, #ffd700);
}

.services-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.services-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-section li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  color: #444;
}

.services-section li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

.web-dev li:before {
  color: #0072ff;
}

.digital-marketing li:before {
  color: #fd746c;
}

.ui-ux li:before {
  color: #ff8c00;
}

.floating-elements {
  position: relative;
  height: 400px;
  width: 100%;
}

.floating-element {
  position: absolute;
  border-radius: 12px;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Web Development Floating Elements */
.web-dev .floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #0072ff, #0056b3);
}

.web-dev .floating-element:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 20%;
  animation-delay: 1s;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.web-dev .floating-element:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.web-dev .floating-element:nth-child(4) {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.web-dev .floating-element:nth-child(5) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

/* Digital Marketing Floating Elements */
.digital-marketing .floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #fd746c, #f556ff);
}

.digital-marketing .floating-element:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 20%;
  animation-delay: 1s;
  background: linear-gradient(135deg, #ff9068, #fd746c);
}

.digital-marketing .floating-element:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  background: linear-gradient(135deg, #654ea3, #eaafc8);
}

.digital-marketing .floating-element:nth-child(4) {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
  background: linear-gradient(135deg, #ee0979, #ff6a00);
}

.digital-marketing .floating-element:nth-child(5) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
  background: linear-gradient(135deg, #834d9b, #d04ed6);
}

/* UI/UX Design Floating Elements */
.ui-ux .floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
}

.ui-ux .floating-element:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 20%;
  animation-delay: 1s;
  background: linear-gradient(135deg, #ff9a00, #ff6a00);
}

.ui-ux .floating-element:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  background: linear-gradient(135deg, #ff0080, #ff8c00);
}

.ui-ux .floating-element:nth-child(4) {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
}

.ui-ux .floating-element:nth-child(5) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.floating-element i {
  font-size: 2rem;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }

  .service-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .floating-elements {
    height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-section h3 {
    font-size: 2rem;
  }

  .services-section p {
    font-size: 1.1rem;
  }

  .floating-elements {
    height: 250px;
  }

  .floating-element {
    width: 60px !important;
    height: 60px !important;
  }

  .floating-element i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 50px 0;
  }

  .services-section h3 {
    font-size: 1.8rem;
  }

  .services-section p {
    font-size: 1rem;
  }

  .services-section li {
    font-size: 1rem;
  }

  .floating-elements {
    height: 200px;
  }

  .floating-element {
    width: 50px !important;
    height: 50px !important;
  }

  .floating-element i {
    font-size: 1.2rem;
  }
}


/* ===== Footer Section ===== */
.footer-section {
    background: #f8f9fa;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-float-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 198, 255, 0.1);
    animation: float 15s ease-in-out infinite;
}

.element-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    animation-delay: 3s;
}

.element-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, 20px) rotate(5deg); }
    50% { transform: translate(0, 40px) rotate(0deg); }
    75% { transform: translate(-20px, 15px) rotate(-5deg); }
}

/* Left Column Styles */
.footer-contact {
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-lets-talk {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
    /* text-transform: uppercase; */
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.contact-info a {
  font-size: 1.2rem;
  color: #555;
  /* margin-bottom: 1rem; */
  /* line-height: 1.6; */
  text-decoration: none;
}

.contact-email {
    font-weight: 600;
}

.social-links {
  margin-top: 26rem;
  display: flex;
  gap: 1.5rem;
}

.social-icon {
    color: #000;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #0077b6;
}

/* Right Column Styles */
.footer-right-content {
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 1.5rem 2rem; /* Vertical and horizontal gap */
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
  width: 100%; /* Ensure full width */
  margin-left: 33px !important;
}

/* Make each item take up 1/3 of the width */
.footer-nav ul li {
    flex: 0 0 calc(50.00% - 0.5rem); /* Account for gap */
    max-width: calc(50.00% - 1.5rem);
}

.footer-nav a {
    color: #111;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #0077b6;
}

.footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 2rem;
    justify-items: center; /* center logos horizontally */
    align-items: center;   /* center logos vertically */
    margin-bottom: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px; /* all badges same height */
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.badge-item img {
    max-width: 200px; /* same size for all logos */
    max-height: 140px;
    width: auto;
    height: auto;
}


.badge-item:hover {
    transform: translateY(-3px);
}

/* Remove unnecessary margin hack */
.teech {
    margin-left: -60px !important;
}
/* Legal Section */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 90px;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #0077b6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 4rem 0 2rem;
    }

    .teech {
      margin-left: 0 !important;
    }
    
    .footer-contact, .footer-right-content {
        padding: 0 1rem;
    }
    
    .footer-badges {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }

      .footer-nav ul {
        flex-direction: column;
    }
    .footer-nav ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .badge-item{
      align-items: center;
    }

    .clutch-badge{
      margin-left: -20px !important;
    }
     .badge-designrush {
    max-width: 200px; /* adjust size as needed */
    margin: 0 auto;   /* center it */
    margin-left: -30px !important;
  }
}

.badge-item img {
    max-width: 200px; /* same size for all logos */
    max-height: 140px;
    width: auto;
    height: auto;
}


.footer-contact {
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .social-links {
    order: 2;  /* move to bottom */
    margin-top: 1.5rem; /* spacing */
  }
}

@media (max-width: 576px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 10px 20px; /* row-gap, col-gap */
    padding: 0;
    margin-top: 10px ;
    list-style: none;
  }

  .footer-nav li {
    margin: 0; /* reset margins */
  }

  .footer-nav {
    margin-top: 30px; /* adjust spacing if needed */
  }
}
/* Mobile only */
@media (max-width: 768px) {
  .footer-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px; /* space between items */
    justify-items: center;
  }

  .footer-badges .badge-item {
    text-align: center;
  }
}