/* Projects Section */
.projects {
  padding: 100px 0;
  background-color: white;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.project-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.project-image {
  height: 200px;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.1);
}
.project-content {
  padding: 30px;
}
.project-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.project-content p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.project-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}
.project-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.project-link:hover {
  color: var(--primary-dark);
}
.project-link:hover i {
  transform: translateX(5px);
}
/* Technologies Section */
.technologies {
  padding: 80px 0;
  background-color: #f8fafc;
}
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.technology-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.technology-card:hover {
  transform: translateY(-10px);
}
.technology-card img {
  height: 60px;
  margin-bottom: 20px;
}
/* Process Section */
.process {
  padding: 100px 0;
  background-color: white;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.process-card {
  text-align: center;
  padding: 30px;
}
.process-card img {
  height: 80px;
  margin-bottom: 20px;
}
/* Industries Section */
.industries {
  padding: 80px 0;
  background-color: #f8fafc;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.industry-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-10px);
}
.industry-card img {
  height: 60px;
  margin-bottom: 20px;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .projects-grid,
  .technologies-grid,
  .process-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    grid-template-columns: repeat(auto-fit, minmax(153px, 1fr));
  }
}


.section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2d3a4b;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards 0.2s;
}

.section-subheading {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #6c757d;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards 0.4s;
}

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

.process-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  padding: 35px 25px;
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s forwards;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.process-card:nth-child(1) {
  animation-delay: 0.3s;
}
.process-card:nth-child(2) {
  animation-delay: 0.4s;
}
.process-card:nth-child(3) {
  animation-delay: 0.5s;
}
.process-card:nth-child(4) {
  animation-delay: 0.6s;
}
.process-card:nth-child(5) {
  animation-delay: 0.7s;
}
.process-card:nth-child(6) {
  animation-delay: 0.8s;
}
.process-card:nth-child(7) {
  animation-delay: 0.9s;
}
.process-card:nth-child(8) {
  animation-delay: 1s;
}

.icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4e89ae, #43658b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.process-card:hover .icon-container {
  transform: scale(1.1);
  background: linear-gradient(135deg, #43658b, #2d3a4b);
}

.process-icon {
  width: 40px;
  height: 40px;
  color: white;
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2d3a4b;
}

.process-card p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
}

.process-card:nth-child(1) .icon-container {
  background: linear-gradient(135deg, #4e89ae, #43658b);
}
.process-card:nth-child(2) .icon-container {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}
.process-card:nth-child(3) .icon-container {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
}
.process-card:nth-child(4) .icon-container {
  background: linear-gradient(135deg, #f09819, #edde5d);
}
.process-card:nth-child(5) .icon-container {
  background: linear-gradient(135deg, #b24592, #f15f79);
}
.process-card:nth-child(6) .icon-container {
  background: linear-gradient(135deg, #654ea3, #da98b4);
}
.process-card:nth-child(7) .icon-container {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f);
}
.process-card:nth-child(8) .icon-container {
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-heading {
    font-size: 2rem;
  }
}

/* <!-- Industries Section --> */

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e1133;
  margin-bottom: 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-subheading {
  font-size: 1.1rem;
  color: #53545b;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

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

.industry-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
}

.industry-card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.industry-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}
.industry-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}
.industry-card:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}
.industry-card:nth-child(5) {
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 108, 247, 0.15);
}

.industry-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  font-size: 34px;
  color: white;
  transition: all 0.3s ease;
}

.retail .industry-icon {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}
.education .industry-icon {
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}
.healthcare .industry-icon {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}
.finance .industry-icon {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}
.manufacturing .industry-icon {
  background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0e1133;
  margin-bottom: 15px;
}

.industry-card p {
  font-size: 0.95rem;
  color: #53545b;
  line-height: 1.6;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .industries-grid {
    gap: 20px;
  }

  .industry-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 1.8rem;
  }
}



.section-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #4a6cf7, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subheading {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.project-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 0;
  width: fit-content;
}

.project-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.project-link:hover {
  color: #6c5ce7;
}

.project-link:hover i {
  transform: translateX(5px);
}

.code-note {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.5;
}

.code-note h3 {
  color: #4ec9b0;
  margin-bottom: 15px;
}

.code-note pre {
  background: #2d2d2d;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
}

.code-comment {
  color: #6a9955;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }

  .section-subheading {
    font-size: 16px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--dark);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }
}


.testimonials {
        padding: 80px 0;
        background-color: #f9f9f9;
      }
      .testimonials .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .testimonials .section-title {
        font-size: 32px;
        color: #314259;
        margin-bottom: 10px;
        font-weight: 700;
      }
      .testimonials .section-heading {
        font-size: 36px;
        color: #333;
        text-align: center;
        margin-bottom: 40px;
      }
      .testimonials .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }
      .testimonials .testimonial-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
      }
      .testimonials .testimonial-card img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px;
      }
      .testimonials .testimonial-card h3 {
        font-size: 20px;
        color: #333;
        margin-bottom: 5px;
      }
      .testimonials .testimonial-card p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
      }
     
      .blog-news {
        padding: 80px 0;
        background-color: #f9f9f9;
      }
      .blog-news .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .blog-news .section-title {
        font-size: 32px;
        color: #314259;
        margin-bottom: 10px;
        font-weight: 700;
      }
      .blog-news .section-heading {
        font-size: 36px;
        color: #333;
        text-align: center;
        margin-bottom: 40px;
      }
      .blog-news .blog-news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }
      .blog-news .blog-news-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }
      .blog-news .blog-news-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      .blog-news .blog-news-content {
        padding: 20px;
      }
      .blog-news .blog-news-content h3 {
        font-size: 20px;
        color: #333;
        margin-bottom: 10px;
      }
      .blog-news .blog-news-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
      }
      .blog-news .blog-news-link {
        display: inline-block;
        font-size: 16px;
        color: #4a6cf7;
        text-decoration: none;
        font-weight: 600;
      }

      .blog-news .blog-news-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* Enable vertical stacking */
  height: 100%; /* Ensure consistent height */
}

.blog-news .blog-news-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1; /* Allow content to grow */
}

.blog-news .blog-news-link {
  margin-top: auto; /* Push the link to the bottom */
  display: inline-block;
  font-size: 16px;
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
}
