   /* General Styles */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
  
    /* Header */
    header {
      background-color: navy;
      color: black;
      padding: 5px;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo {
      text-align: left;
    }

    .header-logo img {
      height: 70px;
      display: inline-block;
    }

    .desktop-nav ul li {
      margin-right: 15px;
    }

    .desktop-nav ul {
      list-style-type: none;
      display: flex;
    }

    .desktop-nav ul li {
      margin-right: 15px;
    }

    .desktop-nav ul li:last-child {
      margin-right: 0;
    }

    .desktop-nav a {
      text-decoration: none;
      color: white;
    }

    .desktop-button {
      padding: 05px 12px;
      background-color: orange;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .desktop-button:hover {
      background-color: navy;
    }

    .mobile-toggle {
      display: none;
      cursor: pointer;
      padding: 10px;
    }

    .mobile-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
      margin-bottom: 5px;
      transition: background-color 0.3s ease;
    }

    .mobile-toggle.active span:first-child {
      transform: rotate(45deg) translate(2px, 2px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:last-child {
      transform: rotate(-45deg) translate(1px, -1px);
    }

    /* Your existing CSS code */
    .sidebar.open {
      left: 0;
    }

    .sidebar {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100vh;
      background-color: navy;
      color: #fff;
      transition: left 0.3s ease-in-out;
      z-index: 999;
      overflow-y: auto;
      padding-top: 150px;
    }

    .sidebar-logo img {
      height: auto; /* Adjust the value to customize the logo height */
      width:       150px;
    }

    .sidebar-logo {
      text-align: center;
    }

    .sidebar a:hover .icon {
      background-color: darkorange;
      color: #fff;
    }

    .sidebar-button {
      display: inline-block;
      padding: 10px 100px;
      background-color: black;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      align-items: center;
      justify-content: center;
    }

    .sidebar-button:hover {
      background-color: navy;
    }

    .sidebar {
      font-size: 25px; /* Custom font size */
      /* Rest of the CSS code */
    }

    /* Mobile Navigation Styles */
    .mobile-nav ul {
      list-style-type: none;
      padding: 20px;
    }

    .mobile-nav ul li {
      margin-bottom: 10px;
    }

    .mobile-nav a {
      text-decoration: none;
      color: #fff;
    }

    /* Media Queries */
    @media (max-width: 768px) {
      .desktop-nav {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }
    }
/* Your existing CSS code */

/* Add the following styles for the social media icons */
.social-icons {
  text-align: center;
}

.social-icon {
  display: inline-block;
  font-size: 30px;
  color: #fff;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #0056b3; /* Change to the desired hover color */
}

/* Rest of the CSS code */

   /* CSS styles for the hero section */
        .hero-section {
            background-color: white;
            padding: 50px;
            display: flex;
            align-items: center;
            flex-wrap: wrap-reverse;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }
        
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-section .color-utp-dark {
  color: red/* Specify your dark color */;
}

.hero-section .color-utp-light {
  color: lightblue/* Specify your light color */;
}
        
        .hero-content {
            flex: 1 1 50%;
            text-align: center;
            color: black;
             font-size: 22px;
              font-weight: bold;
        }
        
        .hero-title {
            margin-bottom: 20px;
             font-weight: bold;
              font-size: 160px;
        }
    
        .hero-description {
            font-size: 18px;
            margin-bottom: 40px;
             margin-top: 30px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .hero-button {
            padding: 12px 20px;
            font-size: 16px;
            text-decoration: none;
            color: #fff;
            background-color: black;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        

        .hero-button:hover {
            background-color: black;
        }
        
        .hero-image {
            flex: 1 1 50%;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto; /* Centering the image horizontally */
        }
        
        /* Responsive media query for smaller screens */
        @media (max-width: 768px) {
            .hero-content,
            .hero-image {
                flex-basis: 100%;
            }
        }
 
  /* General styles for .service-section */
.service-section {
    display: flex;
    background-color: midnightblue;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
}

/* Styles for .service-item */
.service-item {
    text-align: center;
    color: white;
    margin: 20px;
    flex-basis: 45%;
    position: relative;
}

.service-item img {
    width: 50px; /* Adjust the width as needed */
    height: 50px; /* Adjust the height as needed */
    background-color: white;
    border: 2px solid midnightblue;
    padding: 5px;
    border-radius: 50%;
    margin-bottom: 5px;
    display: inline-block;
}


.service-item h2 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: white;
}

.service-image {
    text-align: center;
    margin-top: 20px;
}

.service-image i {
    font-size: 4em; /* Adjust the icon size as needed */
    color: white;
    background-color: midnightblue; /* Background color for the logo */
    padding: 20px; /* Adjust the padding as needed */
    border-radius: auto; /* Make it round */
}
/* Responsive styles for PNG images */
img {
    max-width: 100%; /* Ensures images don't exceed their parent container */
    height: auto; /* Maintains the aspect ratio of the image */
}
/* Responsive styles for PNG images with a specific class */
.img-responsive {
    max-width: 100%;
    height: auto;
}


/* Responsive styles */
@media only screen and (max-width: 767px) {
    .service-section {
        flex-direction: column;
        padding: 10px;
    }

    .service-item {
        flex-basis: 50%;
        margin:  1%;
    }

    .service-item i {
        font-size: 1.5em;
    }
}

/* Styles for .service-section h2 */
.service-section h2 {
    width: 100%;
    text-align: center;
    margin: 0;
    color: white;
    padding-bottom: 5px;
    font-size: 22px;
}

/* Responsive styles */
@media only screen and (max-width: 767px) {
    .service-section {
        flex-direction: column;
        padding: 10px;
    }

    .service-item {
        flex-basis: 48%; /* Two items in a row */
        margin: 1%; /* Adjust margin for spacing */
    }

    .service-item i {
        font-size: 1.5em;
    }
}

/* Desktop styles */
@media only screen and (min-width: 768px) {
    .service-item {
        flex-basis: 15%; /* Four items in a row */
        margin: 1%; /* Adjust margin for spacing */
    }
}


.features-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.features-section h2 {
  width: 100%;
  text-align: center;
  padding-bottom: 5px;
  font-size: 42px;
}

.features-section h2 span.color-utp-dark {
  color: blue;
}

.features-section h2 span.color-utp-light {
  color: red;
}

.feature-item {
  text-align: center;
  flex-basis: calc(15% - 20px); /* 25% for each card with 20px margin on each side */
  margin: 10px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.feature-item img {
    width: 65px; /* Adjust the width as needed */
    height: 65px; /* Adjust the height as needed */
    background-color: white;
    border: 2px solid midnightblue;
    padding: 5px;
    border-radius: 50%;
    margin-bottom: 5px;
    display: inline-block;
}
.feature-item i {
  font-size: 2em;
  color: #3498db;
  margin-bottom: 10px;
}

.feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.feature-item p {
  color: #777;
}

/* Responsive styles for smaller screens */
@media only screen and (max-width: 767px) {
  .features-section {
    padding: 05px;
  }

    .feature-item {
   flex-basis: 30%; /* Four items in a row */
        margin: 1%; /* Adjust margin for spacing */
    }

}
/* Desktop styles */
@media only screen and (min-width: 768px) {
    .feature-item {
        flex-basis: 15%; /* Four items in a row */
        margin: 1%; /* Adjust margin for spacing */
    }
}

    .testimonials {
        max-width: 1200px;
        margin: 50px auto;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        text-align: center;
    }

    .testimonials-title {
        font-size: 28px;
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
    }

    .slider-container {
        overflow: hidden;
    }

    .slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonial {
        flex: 0 0 90%;
        padding: 20px;
        text-align: left;
        box-sizing: border-box;
        border: 1px solid #ddd; /* Add border to testimonial cards */
        border-radius: 10px;
        margin: 0 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .testimonial img {
        border-radius: 50%;
        max-width: 80px;
        margin-bottom: 10px;
    }

    .testimonial-rating {
        font-size: 24px;
        color: #f8d800;
        margin-bottom: 5px;
    }

    .testimonial-title {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .testimonial-description {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        text-align: justify;
        margin-bottom: 15px;
    }

    .customer-logo {
        max-width: 100px;
        margin-top: 10px;
    }
.customer-name {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px; /* Add margin for spacing */
}

.address-name {
    color: #777;
    font-size: 14px; /* Adjust font size if needed */
}

    /* Styling for navigation buttons */
    .slider-btn {
        cursor: pointer;
        background-color: #333;
        color: #fff;
        border: none;
        padding: 10px;
        margin: 0 5px;
        border-radius: 5px;
    }
.slider-btn {
    cursor: pointer;
    background: none;
    border: none;
}

.slider-btn img {
    max-width: 100%; /* Ensure the image does not exceed the button size */
}

    /* Responsive styles */
    @media only screen and (min-width: 601px) {
        .testimonial {
            flex: 0 0 calc(33.3333% - 20px); /* Adjust for margin */
            margin: 0 10px; /* Adjust for margin */
        }
    }


                .partners-section {
            text-align: center;
            padding: 40px;
            background-color: #fff;
        }

        .partner-slider {
            display: flex;
            overflow: hidden;
            max-width: 80%;
            margin: auto;
            justify-content: space-between;
        }

        .partner-slide {
            flex: 0 0 40%;
            transition: transform 1s ease-in-out;
        }

        @keyframes partnerSlide {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-100%); }
            45% { transform: translateX(-100%); }
            50% { transform: translateX(-200%); }
            65% { transform: translateX(-250%); }
            70% { transform: translateX(-200%); }
            75% { transform: translateX(-300%); }
            85% { transform: translateX(-330%); }
            95% { transform: translateX(-300%);}
            100% { transform: translateX(0); }
        }

        .partner-logo {
            max-width: 100%;
            height: auto;
        }

        @media only screen and (max-width: 767px) {
            .partner-slider {
                max-width: 100%;
            }
        }
        
        


/* Footer styles */
    /* Footer styles */
footer {
  background-color: white;
  padding: 50px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-column-logo {
  width: 20%;
}

.footer-column-logo img {
  max-width: 100%;
  height: auto;
}

.footer-column-about,
.footer-column-Services,
.footer-column-social {
  width: 25%;
}

.footer-column h3 {
  color: midnightblue;;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column p {
  color: black;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column li a {
  color: black;
  text-decoration: none;
}

.bottom-footer {
  background-color: #ddd;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

.bottom-footer p {
  color: black;
  font-size: 14px;
  margin: 0;
}

/* Resetting some default margin/padding for consistency */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Footer styles */
.footer_bottom {
  background-color: white; /* Set your desired background color */
  color: black; /* Set your desired text color */
  padding: 5px; /* Adjust padding as needed */
  text-align: center;
  font-size: 14px; /* Adjust font size as needed */
}

/* Styling the footer links */
.footer_bottom a {
  color: black; /* Set your desired link color */
  text-decoration: none;
  margin: 5 5px; /* Adjust margin between links */
}

.footer_bottom a:hover {
  text-decoration: underline;
}



  /* CSS styles for the app section */
    .app-section {
           background: linear-gradient(to bottom, white 25%,midnightblue 25%, midnightblue 50%);
        padding: 50px;
        display: flex;
        align-items: center;
        flex-wrap: wrap-reverse;
        opacity: 0;
        animation: fadeIn 1s ease forwards;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .app-section .color-utp-dark {
        color: red; /* Specify your dark color */
    }

    .app-section .color-utp-light {
        color: lightblue; /* Specify your light color */
    }

    .app-content {
        flex: 1 1 50%;
        text-align: center;
        color: white;
    }

.app-title {
    font-size: 32px;
    margin-bottom: 20px;
}
.app-section .app-content h2.pb-3.pt-2 {
    font-size: 24px; /* Adjust the font size as needed */
    margin-bottom: 20px;
    color: white; /* Set the text color to white */
}

.app-section .app-content .color-utp-light {
    color: lightblue; /* Set the color for the "Useto Pay" span */
}



    .app-description {
        font-size: 18px;
        margin-bottom: 40px;
        color: white;
    }

    .app-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .app-button {
        padding: 12px 20px;
        font-size: 16px;
        text-decoration: none;
        color: #fff;
        background-color: Black;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .app-button:hover {
        background-color: black;
    }

    .app-image {
        flex: 1 1 50%;
        text-align: center;
        order: -1;
    }

    .app-image img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* Centering the image horizontally */
    }

    /* Responsive media query for smaller screens */
    @media (max-width: 768px) {
        .app-content,
        .app-image {
            flex-basis: 100%;
            order: initial; /* Reset the order to its default value */
        }
    }

