
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
    body {
      font-family: 'Open Sans', sans-serif;
      color: #333333;
      background: #f8f9fa;
    }



    /* Header */
    .header {
      font-family: 'Open Sans', sans-serif;
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    .header .logo h1 {
      font-size: 28px;
      font-weight: 800;
      color: #0a6de5;
      margin: 0;
      letter-spacing: 1px;
    }
    .header .navmenu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .header .navmenu ul li {
      display: inline-block;
      margin: 0 15px;
    }
    .header .navmenu ul li a {
      color: #0a6de5;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.2s ease;
    }
    .header .navmenu ul li a:hover, .header .navmenu ul li a.active {
      color: #0171e3;
      transform: scale(1.05);
    }
    .btn-primary {
      background: #0a6de5;
      border: none;
      padding: 8px 20px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      background: #6e3cf3;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #0171e3, #7c35f7);
      color: #ffffff;
      padding: 100px 0;
      min-height: 80vh;
      display: flex;
      align-items: center;
      text-align: center;
    }
    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 600;
      margin-bottom: 40px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      padding-left: 15px;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 15px;
    }
    .hero .hero-img img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Clients Section */
    .clients {
      padding: 60px 0;
      background: #ffffff;
    }
    .clients .carousel-item img {
      max-width: 140px;
      height: auto;
      margin: 0 15px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0.8;
    }
    .clients .carousel-item img:hover {
      opacity: 1;
      transform: scale(1.1);
    }
  .carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: #1a3c87; /* Dark blue background */
  border-radius: 50%; /* Circular shape */
  width: 40px; /* Larger size */
  height: 40px; /* Larger size */
  background-size: 50%; /* Adjust icon size within the circle */
  background-position: center; /* Center the icon */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
  filter: none; /* Remove Bootstrap's default invert filter */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E"); /* Custom white arrow */
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Custom white arrow for next */
}

.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
  background-color: #7c35f7; /* Coral background on hover */
  transform: scale(1.1); /* Slight scale-up effect */
}

.carousel-control-prev, .carousel-control-next {
  width: 5%; /* Maintain existing width */
  border-radius: 50%; /* Keep circular shape */
  transition: background 0.3s ease; /* Smooth background transition */
}

.carousel-control-prev:hover, .carousel-control-next:hover {
}

    /* Section Title */
    .section-title {
      text-align: center;
      padding-bottom: 30px;
    }
    .section-title h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 34px;
      font-weight: 800;
      color: #1a3c87;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      padding-left: 15px;
    }
    .section-title h2::after {
      content: '';
      width: 300px;
      height: 4px;
      background: #0066cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    .section-title p {
      font-size: 16px;
      color: #555555;
      padding-left: 15px;
    }

    /* About Section */
    .about {
      padding: 60px 0;
      background: #f8f9fa;
    }
    .about .content p {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 20px;
      color: #444444;
      padding-left: 15px;
    }
    .about .content ul {
      list-style: none;
      padding: 0;
    }
    .about .content ul li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 16px;
      color: #333333;
      padding-left: 15px;
    }
    .about .content ul li i {
      color: #7c35f7;
      font-size: 22px;
      margin-right: 10px;
    }
    .about .readmore {
      color: #7c35f7;
      font-weight: 600;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s ease;
      padding-left: 15px;
    }
    .about .readmore i {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }
    .about .readmore:hover {
      color: #0c6ce5;
    }
    .about .readmore:hover i {
      transform: translateX(5px);
    }

    /* Why Us Section */
    .why-us {
      padding: 60px 0;
      background: #ffffff;
    }
    .why-us .content h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 30px;
      font-weight: 800;
      color: #1a3c87;
      margin-bottom: 15px;
      padding-left: 15px;
    }
    .why-us .content h3 strong {
      color: #0a6de5;
    }
    .why-us .content p {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 20px;
      color: #444444;
      padding-left: 15px;
    }
    .why-us .accordion-button {
      font-size: 18px;
      font-weight: 600;
      color: #1a3c87;
      padding: 15px 0;
      background: none;
      border: none;
    }
    .why-us .accordion-button span {
      color: #7c35f7;
      margin-right: 10px;
    }
    .why-us .accordion-body {
      font-size: 16px;
      line-height: 1.7;
      padding: 0 0 15px 25px;
      color: #444444;
    }
    .why-us .why-us-img img {
      max-width: 100%;
      height: 500px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Services Section */
    .services {
      padding: 60px 0;
      background: #f8f9fa;
    }
    .services .service-item {
      background: #ffffff;
      padding: 30px 15px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .services .service-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .services .service-item .icon i {
      font-size: 36px;
      color: #7c35f7;
      margin-bottom: 20px;
    }
    .services .service-item h4 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      padding-left: 15px;
    }
    .services .service-item h4 a {
      color: #1a3c87;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .services .service-item h4 a:hover {
      color: #7c35f7;
    }
    .services .service-item p {
      font-size: 14px;
      color: #555555;
      line-height: 1.6;
      padding-left: 15px;
    }
    .services .tech-resources {
      margin-top: 40px;
    }
    .services .tech-resources h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #1a3c87;
      margin-bottom: 20px;
      text-align: center;
      padding-left: 15px;
    }
    .services .tech-resources ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .services .tech-resources ul li {
      background: #ffffff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      font-size: 16px;
      color: #333333;
      transition: transform 0.3s ease;
      padding-left: 15px;
    }
    .services .tech-resources ul li:hover {
      transform: translateY(-5px);
      background: #7c35f7;
      color: #ffffff;
    }

    /* Work Process Section */
    .work-process {
      padding: 60px 0;
      background: #ffffff;
    }
    .work-process .steps-item {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      height: 100%;
      transition: transform 0.3s ease;
    }
    .work-process .steps-item:hover {
      transform: translateY(-8px);
    }
    .work-process .steps-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .work-process .steps-content {
      padding: 20px;
    }
    .work-process .steps-content .steps-number {
      font-size: 24px;
      font-weight: 800;
      color: #7c35f7;
      margin-bottom: 10px;
      padding-left: 15px;
    }
    .work-process .steps-content h3 {
      font-size: 20px;
      font-weight: 700;
      color: #1a3c87;
      margin-bottom: 10px;
      padding-left: 15px;
    }
    .work-process .steps-content p {
      font-size: 14px;
      color: #555555;
      margin-bottom: 15px;
      line-height: 1.6;
      padding-left: 15px;
    }
    .work-process .steps-features .feature-item {
      display: flex;
      align-items: center;
      font-size: 14px;
      margin-bottom: 10px;
      color: #333333;
      padding-left: 15px;
    }
    .work-process .steps-features .feature-item i {
      color: #7c35f7;
      margin-right: 10px;
      font-size: 16px;
    }

    /* Testimonials Section */
    .testimonials {
      padding: 60px 0;
      background: #f8f9fa;
    }
    .testimonials .carousel-item {
      text-align: center;
      padding: 15px;
    }
    .testimonials .testimonial-item {
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      margin: 0 auto;
      transition: transform 0.3s ease;
    }
    .testimonials .testimonial-item:hover {
      transform: translateY(-5px);
    }
    .testimonials .testimonial-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
      object-fit: cover;
      border: 3px solid #7c35f7;
    }
    .testimonials .testimonial-item h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1a3c87;
      margin-bottom: 5px;
      padding-left: 15px;
    }
    .testimonials .testimonial-item h4 {
      font-size: 14px;
      color: #555555;
      margin-bottom: 10px;
      padding-left: 15px;
    }
    .testimonials .stars i {
      color: #ffc107;
      font-size: 16px;
      margin-right: 5px;
    }
    .testimonials .testimonial-item p {
      font-size: 14px;
      color: #444444;
      line-height: 1.7;
      font-style: italic;
      position: relative;
      padding: 0 25px;
      padding-left: 40px;
    }
    .testimonials .testimonial-item p .quote-icon-left,
    .testimonials .testimonial-item p .quote-icon-right {
      font-size: 24px;
      color: #7c35f7;
      position: absolute;
    }
    .testimonials .testimonial-item p .quote-icon-left {
      left: 15px;
      top: -5px;
    }
    .testimonials .testimonial-item p .quote-icon-right {
      right: 0;
      bottom: -5px;
    }

    /* Contact Section */
    .contact {
      padding: 60px 0;
      background: #ffffff;
    }
    .contact .info-wrap {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .contact .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .contact .info-item i {
      font-size: 24px;
      color: #7c35f7;
      margin-right: 12px;
    }
    .contact .info-item h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1a3c87;
      margin-bottom: 5px;
      padding-left: 15px;
    }
    .contact .info-item p {
      font-size: 14px;
      color: #555555;
      margin: 0;
      padding-left: 15px;
    }
    .contact .php-email-form {
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .contact .php-email-form label {
      font-size: 14px;
      font-weight: 600;
      color: #1a3c87;
      margin-bottom: 5px;
      padding-left: 15px;
    }
    .contact .php-email-form .form-control {
      border-radius: 5px;
      font-size: 14px;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ced4da;
      transition: border-color 0.3s ease;
    }
    .contact .php-email-form .form-control:focus {
      border-color: #7c35f7;
      box-shadow: 0 0 5px rgba(255, 111, 97, 0.5);
    }
    .contact .php-email-form button {
      background: #0c6ce5;
      border: none;
      padding: 10px 30px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 50px;
      color: #ffffff;
      transition: all 0.3s ease;
    }
    .contact .php-email-form button:hover {
      background: #7c35f7;
      transform: translateY(-2px);
    }
    .contact .php-email-form .loading,
    .contact .php-email-form .error-message,
    .contact .php-email-form .sent-message {
      display: none;
      font-size: 14px;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 15px;
      text-align: center;
    }
    .contact .php-email-form .loading {
      background: #e0e0e0;
      color: #333333;
    }
    .contact .php-email-form .error-message {
      background: #f8d7da;
      color: #721c24;
    }
    .contact .php-email-form .sent-message {
      background: #d4edda;
      color: #155724;
    }

    /* Footer */
    .footer {
      background: #1a3c87;
      padding: 60px 0 20px;
      font-size: 14px;
      color: #ffffff;
    }
    .footer .footer-newsletter {
      background: #ffffff;
      padding: 40px 0;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
    }
    .footer .footer-newsletter h4 {
      font-size: 24px;
      font-weight: 700;
      color: #1a3c87;
      margin-bottom: 15px;
      padding-left: 15px;
    }
    .footer .footer-newsletter p {
      font-size: 16px;
      color: #555555;
      margin-bottom: 20px;
      padding-left: 15px;
    }
    .footer .footer-newsletter .newsletter-form {
      display: flex;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .footer .footer-newsletter .newsletter-form input[type="email"] {
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      flex: 1;
      border-radius: 50px 0 0 50px;
    }
    .footer .footer-newsletter .newsletter-form input[type="submit"] {
      background: #7c35f7;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      border-radius: 0 50px 50px 0;
      transition: background 0.3s ease;
    }
    .footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
      background: #0c6ce5;
    }
    .footer .footer-about .sitename {
      font-family: "Quicksand", sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: #ffffff;
      text-decoration: none;
    }
    .footer .footer-contact p {
      margin-bottom: 5px;
      font-size: 14px;
      padding-left: 15px;
    }
    .footer .footer-links h4 {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 15px;
      padding-left: 15px;
    }
    .footer .footer-links ul {
      list-style: none;
      padding: 0;
    }
    .footer .footer-links ul li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      padding-left: 15px;
    }
    .footer .footer-links ul li i {
      color: #7c35f7;
      font-size: 16px;
      margin-right: 10px;
    }
    .footer .footer-links ul li a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .footer .footer-links ul li a:hover {
      color: #7c35f7;
    }
    .footer .social-links a {
      font-size: 18px;
      color: #ffffff;
      margin-right: 15px;
      transition: color 0.3s ease;
    }
    .footer .social-links a:hover {
      color: #7c35f7;
    }

    /* Scroll Top */
    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #7c35f7;
      color: #ffffff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      text-decoration: none;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 1000;
    }
    .scroll-top.active {
      opacity: 1;
    }
    .scroll-top:hover {
      background: #0c6ce5;
      transform: scale(1.1);
    }

    /* Responsive */
    @media (max-width: 991px) {
      .header .navmenu ul {
        display: none;
      }
      .header .btn-primary {
        margin-left: auto;
      }
      .hero {
        padding: 60px 0;
      }
      .hero h1 {
        font-size: 36px;
      }
      .hero .hero-img {
        margin-top: 20px;
      }
      .clients .carousel-item img {
        max-width: 100px;
        margin: 0 10px;
      }
      .services .tech-resources ul {
        flex-direction: column;
        align-items: center;
      }
    }