.feature-section,
.feature-section1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-section1 {
  margin: 130px auto;
}
.section-title,
.section-title1 {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2,
.section-title1 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.section-title p,
.section-title1 p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.feature-card,
.feature-card1 {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card {
  height: 320px;
}
.feature-card1 {
  height: 140px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(245, 188, 83, 0.64);
}
.feature-card:hover,
.feature-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-card h3,
.feature-card1 h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  transition: color 0.3s ease;
}
.feature-card p,
.feature-card1 p {
  color: #666;
  line-height: 1.5;
  font-size: 1.02rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.feature-card1:hover h3,
.feature-card1:hover p {
  color: orange;
}
.highlight-orange {
  color: #fd7e14;
  font-weight: 700;
}
.service-number {
  font-weight: 750;
  font-size: 1.8rem;
  color: #2c3e50;
}
.service-title {
  font-weight: 750;
  font-size: 1.5rem;
  color: #2c3e50;
}
.service-text {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.4;
}
.btn-orange-outline {
  border-color: #fd7e14;
  color: #fd7e14;
  border-radius: 20px;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.875rem;
}
.btn-orange-outline:hover {
  background-color: #fd7e14;
  color: #fff;
}
.service-col:hover .service-number,
.service-col:hover .service-title {
  color: #fd7e14;
  cursor: default;
}
.choice-col {
  background-color: white;
  color: black;
  transition: all 0.3s ease;
}
.choice-col h4 {
  border-bottom: 3px solid orange;
  width: 75%;
  padding-bottom: 5px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.choice-col p {
  color: #6c757d;
  transition: color 0.3s ease;
}
.choice-col:hover {
  background-color: orange;
  color: white;
}
.choice-col:hover h4 {
  border-bottom-color: white;
  color: white;
}
.choice-col:hover p {
  color: white !important;
}

/* Tech Stack Section */
.tech-stack-section {
  background-color: #f8f9fa;
}
.nav-pills .nav-link {
  color: #2faf2f;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}
.nav-pills .nav-link:hover {
  background-color: #f1f1f1;
}
.nav-pills .nav-link.active {
  background-color: orange;
  color: white;
  box-shadow: 0 6px 6px #2faf2f9d;
}
.tech-card {
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(13, 110, 253, 0.2);
}
.tech-icon {
  transition: transform 0.3s ease;
}
.tech-card:hover .tech-icon {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .feature-section,
  .feature-section1 {
    padding: 30px 5px 10px;
    margin: 40px auto;
  }
  .section-title h2,
  .section-title1 h2 {
    font-size: 2rem;
  }
  .feature-card,
  .feature-card1 {
    height: auto;
    padding: 15px;
  }
  .about-img img {
    width: 100%;
    height: auto;
    max-width: 350px;
    max-height: 350px;
    padding: 0;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-pills .nav-link {
    padding: 8px 12px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tech-card {
    padding: 15px;
  }
  .tech-icon img {
    width: 50px;
    height: 50px;
  }
  .section-title,
  .section-title1 {
    margin-bottom: 30px;
  }
  .section-title h2,
  .section-title1 h2 {
    font-size: 1.5rem;
  }
  .feature-section,
  .feature-section1 {
    box-shadow: none;
    padding: 15px 0 10px;
    margin: 20px auto;
  }
  .feature-card,
  .feature-card1 {
    margin-bottom: 15px;
    padding: 10px;
    height: auto;
  }
  .feature-card h3,
  .feature-card1 h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .feature-card p,
  .feature-card1 p {
    font-size: 0.95rem;
  }
  .about-img img {
    max-width: 250px;
    max-height: 250px;
    padding: 0;
    margin: 0 auto;
  }
  .about-section .row {
    flex-direction: column;
  }
  .about-section .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }
  .gallary-top,
  .gallary-right {
    text-align: center;
    padding: 0;
  }
  .pricing-item {
    margin-bottom: 20px;
  }

  .carousel .py-4 span {
    font-size: 1.5rem !important;
  }
  .row > [class^="col-"],
  .row > [class*=" col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  #techStackTabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #techStackTabs .nav-item {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0;
    text-align: center;
  }
  #techStackTabs .nav-link {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
    padding: 10px 0;
  }
  .feature-section,
  .feature-section1,
  .container,
  .bg-grey,
  .about-section,
  .gallary-section,
  .pricing-section,
  .request-section {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .section-title h2,
  .section-title1 h2 {
    font-size: 1.1rem;
  }
  .feature-card,
  .feature-card1 {
    padding: 8px;
    font-size: 0.9rem;
  }
  .about-img img {
    max-width: 180px;
    max-height: 180px;
  }
  .service-number,
  .service-title {
    font-size: 1.1rem;
  }
  .service-text {
    font-size: 0.95rem;
  }
  .btn-orange-outline,
  .pb-primary-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .carousel .py-4 img {
    width: 60px;
    height: 70px;
  }
  .carousel .py-4 span {
    font-size: 1.1rem !important;
  }

  .form-group.row > .col-md-6,
  .form-group.row > .col-md-12 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  #languages .row > div,
  #frameworks .row > div,
  #cloud .row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }
  .p-5,
  .py-5,
  .px-5,
  .m-5,
  .my-5,
  .mx-5 {
    padding: 10px !important;
    margin: 0 !important;
  }

  .container h2.text-center.mb-5 {
    padding-top: 70px;
    font-size: 1.8rem !important;
    line-height: 1.4 !important;
  }

  .service-col {
    border-right: none !important;
    border-top: none !important;
    border-bottom: 4px solid #fd7e14 !important;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .row.mt-4 .service-col:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .row.mt-4.border-top.border-4 {
    border-top: none !important;
    border-width: 0 !important;
  }
  .bg-grey .section-heading.heading-3 {
    padding: 24px 12px 18px 12px !important;
    border-radius: 12px;
  }
  .feature-section1 .section-title1 .col-6:first-child {
    padding-top: 24px !important;
  }
  .feature-section1 .section-title1 .col-6:first-child h2 {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
  }
  .about-img {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .about-img img {
    max-width: 380px !important;
    max-height: 380px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    padding-right: 60px;
    display: block !important;
  }
  .counter-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .counter-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px;
    width: 100%;
    min-height: 80px;

    padding: 12px 0 !important;
  }
  .counter-icon {
    min-width: 48px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .counter-content {
    flex: 1 1 0%;
    display: block !important;
    text-align: left !important;
    margin: 0 !important;
  }
  .counter-content h3,
  .counter-content p {
    margin-bottom: 0.2em;
    line-height: 1.2;
    text-align: center;
  }
}

@media (max-width: 350px) {
  #languages .tech-card,
  #frameworks .tech-card,
  #cloud .tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #languages .tech-icon img,
  #frameworks .tech-icon img,
  #cloud .tech-icon img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
  }
}

@media (max-width: 450px) {
  #carouselExampleSlidesOnly .py-4 span {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
  }
  #carouselExampleSlidesOnly .py-4 {
    padding-bottom: 0.5rem !important;
  }
  #carouselExampleSlidesOnly h3 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }
  #carouselExampleSlidesOnly .carousel-controls {
    margin-top: 18px !important;
    position: static !important;
    display: flex;
    justify-content: center;
  }
  .feature-section .section-title h2 {
    font-size: 1.4rem;
    padding-top: 50px;
  }
}

img,
.img-fluid {
  max-width: 100%;
  height: auto;
}
