* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }
  
  body {
    line-height: 1.6;
    background: #fff;
    color: #333;
  }
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* background: rgb(210, 43, 210); */
    background-color: #752388;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    height: 70px;
    font-size: 20px;
  }
  
  .navbar .logo img {
    max-height: 50px;
    width: auto;
  }
  .nav-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-size: 20px;
  }
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

 /* Responsive styles */
 @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
      background-color: purple; 
      position: absolute;
      top: 50px;
      left: 0;
      right: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
      z-index: 999;
      align-items: center;
    }

    .nav-links.show {
      display: flex; 
    }

    .hamburger {
      display: block;
    }
  }
  .carousel-section {
    width: 100%;
    overflow: hidden;
  }
  
  .carousel {
    top: 2px;
    display: flex;
    width: 100%;
    height: 560px;
    position: relative;
  }
  
  .carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    transition: opacity 0.5s ease-in-out;
  }
  
  .carousel img.active {
    display: block;
  }

  
/* Responsive Carousel Height */
@media (max-width: 1024px) {
    .carousel {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .carousel {
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .carousel {
      height: 220px;
    }
  }
  
  .about-section {
    scroll-margin-top: 40px;
    padding: 3rem 2rem;
    background-color: #fdf0fe;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 2rem;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .about-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 18px 204px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .card i {
    font-size: 2rem;
    color: purple;
    margin-bottom: 0.5rem;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    font-size: 0.9rem;
    color: #555;
  }
  
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
  } 

  @media (max-width: 768px) {
    .about-content {
      flex-direction: column-reverse;
      align-items: center;
    }
  
    .about-cards {
      grid-template-columns: repeat(1fr); 
      width: 100%;
    }
  
    .about-section h2 {
      font-size: 2rem;
    }
  
    .card h3 {
      font-size: 20px;
    }
  
    .card p {
      font-size: 18px;
    }
  }
  
  

  .section {
    scroll-margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
  }
  
  .section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .services-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .service-image {
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .service-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
    background-color: #fff;
    /* padding: 15px; */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon:hover {
    background-color: #d1c4e9;
    color: #4a148c;
    transform: scale(1.1);
    transition: background-color 0.3s, transform 0.3s;
  }

  .service-icon {
    background-color: #e1bee7;
    color: #6a1b9a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    aspect-ratio: 1;
  }
  
  .service-text {
    text-align: left;
  }
  
  .service-text h3 {
    margin: 0;
    font-size: 19px;
    font-weight: bold;
    color: #6a1b9a;
  }
  
  .service-text p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #555;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  @media (min-width: 768px) {
    .services-content {
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
    }
  
    .service-cards {
      width: 50%;
    }
  
    .services-content img {
      width: 50%;
      height: 500px;
      object-fit: cover;
    }
  }
  
  .whyChooseUs {
    scroll-margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fdf0fe;
  }
  
  .whyChooseUs h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .why-image img {
    width: 80%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .why-cards-container {
    margin-top: 50px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .why-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    width: 280px;
    text-align: center;
    height: 240px;
  }
  
  .why-card i {
    font-size: 36px;
    color: #6a1b9a;
    margin-bottom: 15px;
  }
  
  .why-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  .why-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }
  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .why-card:hover i {
    color: #9c27b0;
    transition: color 0.3s ease;
  }
  
  
  @media (max-width: 768px) {
    .why-card-row {
      flex-direction: column;
      align-items: center;
    }
  }
  

  .process-section {
    scroll-margin-top: 40px;
    padding: 40px 20px;
    background-color: white;
    text-align: center;
  }
  
  .process-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
  }
  
  .process-image-wrapper {
    animation: slideUpFade 1s ease-out forwards;
    opacity: 0; /* Start hidden */
  }
  
  .process-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin: 0 auto;
  }
  
  /* Slide-up and fade-in keyframes */
  @keyframes slideUpFade {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Responsive height for smaller screens */
  @media (max-width: 600px) {
    .process-image {
      max-height: 600px;
    }
  }

  
  .industries-section {
    scroll-margin-top: 40px;
    padding: 40px 20px;
    background-color: #fdf0fe;
    text-align: center;
  }
  
  .industries-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 40px;
  }
  
  .industries-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin-bottom: 30px;
  }
  
  .industry-card {
    width: 280px;
    text-align: center;
  }
  
  .industry-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .industry-card img:hover {
    transform: scale(1.05);
  }
  
  .industry-card p {
    margin-top: 10px;
    font-size: 25px;
    font-weight: bold;
    color: black;
  }
  
  @media (max-width: 768px) {
    .industries-section h2 {
      font-size: 2rem;
    }
  
    .industries-row {
      gap: 40px; 
    }
  
    .industry-card {
      width: 100%; 
      max-width: 280px;
    }
  
    .industry-card img {
      width: 150px;
      height: 150px;
    }
  
    .industry-card p {
      font-size: 20px;
    }
  }
  
  
  .divider{
    color: whitesmoke;
  }


  .testimonial-section {
    scroll-margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fdf0fe;
  }
  
  .testimonial-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
  }
  
  .testimonial-swiper {
    max-width: 800px;
    height: 380px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
  }
  
  .testimonial-card h3 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  
  .role {
    font-size: 19px;
    color: gray;
    margin-bottom: 15px;
  }
  
  .feedback {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .testimonial-section h2{
        font-size: 2.4rem;
    }
    .testimonial-card {
        padding: 30px 35px;
      }
    
      .testimonial-img {
        width: 80px;
        height: 80px;
        margin-bottom: 5px;
      }
    
      .testimonial-card h3 {
        font-size: 22px;
      }
    
      .role {
        font-size: 16px;
      }
    
      .feedback {
        font-size: 16px;
        line-height: 1.3;
      }
  }
  
  .contact-section {
    scroll-margin-top: 40px;
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
  }
  
  .contact-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 350px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .input-field {
    display: flex;
    align-items: center;
    border: 1px solid #0c0c0c;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
  }
  
  .input-field i {
    color: purple;
    margin-right: 10px;
  }
  
  .input-field input,
  .input-field textarea {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
  }
  
  .contact-form button {
    background-color: purple;
    color: white;
    font-size: 18px;
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    align-self: center;
  }
  
  .contact-form button:hover {
    background-color: #6a1b9a;
  }
  

  .footer-section {
    background-color: #752388;
    color: white;
    text-align: center;
    padding: 40px 20px;
  }
  
  .footer-section h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .footer-section p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .footer-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer-section .social-icons a {
    background-color: white;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .footer-section .social-icons a:hover {
    background-color: #ffffffcc;
    transform: scale(1.1);
  }
  
  .footer-section .copyright {
    font-size: 14px;
    color: #fff;
  }
  