body {
    font-family: 'Lato';
    font-size: 20px;
    margin: 0;
    padding: 0;
  }

  .container2 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .header {
    width: 100%;
    padding: 0px;
    background-color: white;
  }

  .navigation a {
    color: black;
  }

  main {
    border-radius: 8px;
    background-color: transparent;
  }

  .scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background-color: #2F2B8C;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    animation: bounce 2s infinite;
  }

  .scroll-to-top-btn:hover {
    background-color: #1d1a6d;
  }

  .whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 16px;
    border-radius: 50%;
    font-size: 24px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: pop-in 1s ease-out, bounce 2s infinite;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .whatsapp-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .gradient-line2 {
    border: 0;
    border-top: 3px solid;
    border-image: linear-gradient(to right, #2F2B8C, #04BFBF) 1;
    height: 0;
    width: 90%;
    margin: 0px auto;
  }

.about-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to left, #2F2B8C, #04BFBF);
    padding: 50px 195px;
    padding-top: 10px;
}

.about-content-top {
    width: 100%;
}

.about-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.page-title {
    font-size: 2.5rem;
    background: linear-gradient(to right, #2F2B8C, #04BFBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 20px 195px;
}

.about-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 0px;
    text-align: left;
}

.about-logo img {
    max-width: 500px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px;
    }

    .about-content-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-logo img {
        max-width: 300px;
        max-height: 200px;
        margin-left: 100px;
        display: block;
        margin-top: -35px;
    }

    .page-title {
        margin: 30px 30px;
    }
}

.client-section {
    text-align: center;
    padding: 30px 195px;
    padding-right: 195px;
}

.client-title {
    font-size: 3rem;
    background: linear-gradient(to right, #2F2B8C, #04BFBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 20px 0;
    margin-bottom: 50px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}


.image-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.image-row img {
    margin: 0;
    width: calc(25% - 20px);
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.image-row:last-child {
    justify-content: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .client-section {
        padding: 30px 20px;
    }

    .client-title {
        font-size: 2rem;
        margin: 15px 0;
    }

    .client-logos {
        gap: 15px;
    }

    .image-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .image-row img {
        width: calc(50% - 15px);
        margin: 0;
    }

    .image-row:last-child {
        margin-top: 15px;
    }
}

.service-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to left, #2F2B8C, #04BFBF);
    padding: 0;
    margin: 0;
    gap: 40px;
    color: white;
}

.service-title {
    font-size: 3rem;
    background: linear-gradient(to right, #2F2B8C, #04BFBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info li {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .service-info li {
        margin-bottom: -20px;
    }
}

.service-info li:last-child {
    margin-bottom: 0;
}

.service-info li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #04BFBF;
    transition: width 0.3s ease, left 0.3s ease;
}

.service-info li:hover {
    color: #04BFBF;
}

@media (max-width: 768px) {
    .service-info li {
        margin-bottom: -20px;
        position: static;
        color: inherit;
        pointer-events: none;
    }

    .service-info li:hover,
    .service-info li:focus {
        color: inherit;
        background: none;
        pointer-events: none;
    }

    .service-info li::before {
        display: none;
    }
}

.service-info li:hover::before {
    width: 100%;
    left: 0;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .service-title {
        margin-bottom: 20px;
        font-size: 2rem;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-section:hover {
    background: linear-gradient(to right, #04BFBF, #2F2B8C);
    transition: background 0.6s ease;
}

.about-logo img {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.about-logo img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.service-info li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #04BFBF;
    transition: width 0.3s ease, left 0.3s ease;
}

.service-info li:hover {
    color: #04BFBF;
}

.service-info li:hover::before {
    width: 100%;
    left: 0;
}

.service-info {
    flex: 1;
    position: static;
    align-self: center;
    padding: 0px;
    z-index: auto;
}

@media screen and (max-width: 768px) {
    .service-info {
        flex: 1;
        position: static;
        align-self: flex-start;
        padding: 0px;
        z-index: auto;
    }

    .service-info ul {
padding: 0;
}

.service-info li {
margin-bottom: 10px; 
padding: 10px 0;
}

.service-info li:last-child {
margin-bottom: 0; 
}

}

.our-service-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(to right, #2F2B8C, #04BFBF);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.our-service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.client-logos img {
    object-fit: contain; 
}

@media (max-width: 768px) {
    .client-section {
        padding: 20px 20px; 
    }

    .client-logos {
        gap: 15px;
    }

    .client-logos img {
        width: calc(40% - 15px); 
    }
}

.image-row img {
    width: calc(20% - -20px); 
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}

@media (max-width: 768px) {

    main {
        margin-top: -23px;
    }
 

    .image-row img {
        width: calc(40% - 10px); 
    }
}