/* @import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

@font-face{
    font-family: 'Signika SemiBold';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Signika-SemiBold.woff') format('woff');
}

@font-face{
    font-family: 'Signika';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Signika-Light.woff') format('woff');
}

@font-face{
    font-family: 'Signika';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Signika-Medium.woff') format('woff');
}


@font-face{
    font-family: 'Inter';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Inter.woff')format('woff');
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    width: 100%;
    /* scroll-behavior: smooth; */
}

/* ///////Navbar//////// */
.custom-navbar {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    min-height: 80px;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* .navbar-nav{
   padding-left: 130px;
} */

.navbar-nav .nav-link {
    font-family: 'Signika', sans-serif;
    font-size: 18px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.navbar-nav .nav-link.active {
    color: #ffffff;
    background-color: #3D98DA;
}

.navbar-nav .nav-link:hover {
    color:  #ffffff;
    background-color: #3D98DA;
    /* clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); */
}

.social-icons{
    display: flex;
}

.social-icons a {
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.social-icons img {
  height: 30px;
  width: 30px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.social-icons a:hover {
  transform:scale(1.1);
}
    
/* ///////Banner//////// */
.banner-section {
    height: 100vh;
    width: 100%;
    /* background-image: url('../img/office-background.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.overlay {
    position: absolute;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.banner-section h1 {
    font-family: 'Signika', sans-serif;
}

.banner-section p {
    font-family: 'Inter', sans-serif;
}

/*Vertical Sliding*/
.slidingVertical{
    display: inline;
}

.slidingVertical span{
   animation: topToBottom 12.5s linear infinite 0s;
   -ms-animation: topToBottom 12.5s linear infinite 0s;
   -webkit-animation: topToBottom 12.5s linear infinite 0s;
   color: #ffffff;
   opacity: 0;
   overflow: hidden;
   position: absolute;
   background-color: #3D98DA;
   text-align: center;
   /* font-size: 20px; */
}

.slidingVertical span:nth-child(2){
   animation-delay: 2.5s;
   -ms-animation-delay: 2.5s;
   -webkit-animation-delay: 2.5s;
}

.slidingVertical span:nth-child(3){
   animation-delay: 5s;
   -ms-animation-delay: 5s;
   -webkit-animation-delay: 5s;
}

.slidingVertical span:nth-child(4){
   animation-delay: 7.5s;
   -ms-animation-delay: 7.5s;
   -webkit-animation-delay: 7.5s;
}

.slidingVertical span:nth-child(5){
   animation-delay: 10s;
   -ms-animation-delay: 10s;
   -webkit-animation-delay: 10s;
}

/*topToBottom Animation*/
@-moz-keyframes topToBottom{
   0% { opacity: 0; }
   5% { opacity: 0; -moz-transform: translateY(-50px); }
   10% { opacity: 1; -moz-transform: translateY(0px); }
   25% { opacity: 1; -moz-transform: translateY(0px); }
   30% { opacity: 0; -moz-transform: translateY(50px); }
   80% { opacity: 0; }
   100% { opacity: 0; }
}
@-webkit-keyframes topToBottom{
   0% { opacity: 0; }
   5% { opacity: 0; -webkit-transform: translateY(-50px); }
   10% { opacity: 1; -webkit-transform: translateY(0px); }
   25% { opacity: 1; -webkit-transform: translateY(0px); }
   30% { opacity: 0; -webkit-transform: translateY(50px); }
   80% { opacity: 0; }
   100% { opacity: 0; }
}
@-ms-keyframes topToBottom{
   0% { opacity: 0; }
   5% { opacity: 0; -ms-transform: translateY(-50px); }
   10% { opacity: 1; -ms-transform: translateY(0px); }
   25% { opacity: 1; -ms-transform: translateY(0px); }
   30% { opacity: 0; -ms-transform: translateY(50px); }
   80% { opacity: 0; }
   100% { opacity: 0; }
}

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

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

/* ////////BannerRS//////// */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-container img {
    margin-top: 60px;
    width: 100%;
    height: 100%;
}

.carousel-shadow-left,
.carousel-shadow-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 1;
    pointer-events: none;
}

.carousel-shadow-left {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.carousel-shadow-right {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #007bff;
}  

.banner .carousel-control-prev {
    color: rgb(255, 255, 255);
    width: 15%;
    background-color: transparent;
}

.banner .carousel-control-next {
    color: rgb(255, 255, 255);
    width: 15%;
    background-color: transparent;
}

.carousel-caption {
    position: absolute;
    top: 300px;
    align-items: center;
    color: #fff;
}

.carousel-caption h3 {
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.carousel-caption p {
    font-size: 1rem;
    color: black;
}

/* ///////Product//////// */
.product {
    scroll-margin-top: 50px;
    font-family: "Signika", sans-serif;
    padding-top: 50px; 
    background-color: #B1D8FC;
    background-position: -100px 90px;
}

.product-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px; 
}

.product .section-title {
    text-align: center; 
    margin: 0 auto 40px auto;
    max-width: 800px; 
    /* color: white; */
    padding-bottom: 10px;
    font-size: 2.5rem;
}

.product-button {
    padding: 10px 20px;
    width: 40%;
    align-self: end;
    background-color: #007bff; 
    color: #fff; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #0056b3; /* Warna latar belakang saat di-hover */
}

.diagram-img {
    width: 450px;
    height: 450px;
}

.diagram-card {
    min-width: 320px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diagram-card p{
    font-family: "inter", sans-serif;
}

.diagram-item:hover .diagram-card{
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item {
    display: flex;
    align-items: stretch;
    gap: 15px; 
    margin-bottom: 30px; 
    width: calc(50% - 20px); 
}

.product-item img {
    max-width: 70px; 
    height: auto; 
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-content h3 {
    margin: 0;
    font-size: 1.2rem;  
    font-weight: 550;
    font-family: "Signika", sans-serif;
}

.product-content p {
    font-family: "Inter", sans-serif;
}

.product-card {
    background-color: white;
    min-height: 240px;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover .product-card {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item {
    margin-bottom: 20px; 
    width: calc(50% - 20px); 
}

/* .card{
    background-color: transparent;
    border-color: transparent;
} */

/* Animasi untuk teks dan gambar */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Kelas animasi */
[data-animate] {
    opacity: 0;
}

[data-animate].animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-item[data-animate] img {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.product-item[data-animate] p {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ///////articles//////// */
.articles {
    background-color: #E8E8E8;
    padding-top: 70px;
    padding-bottom: 50px; /* Adds some space at the bottom */
}

.articles .card {
    border-radius: 8px;
    overflow: hidden; /* Ensures smooth corners */
}

.articles .card-title {
    margin-left: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.articles .card-image-wrapper {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    /* background-color: #f8f9fa; */
}

.articles .card-img-top {
    width: 100%;
    max-width: 550px; /* Limit image width */
    height: auto; /* Keeps aspect ratio */
    border-radius: 8px;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
}

.articles .card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    padding: 10px   ;
}

/* ///////Projects Delivered//////// */
.bg-custom {
    background-color: #B1D8FC;
    padding-top: 35px; 
    /* background-image: url(pola3.svg); */
} 

.projects-delivered-section h5 {
    font-family: 'Signika', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
}

.projects-delivered-section h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 25px; 
    color: rgb(0, 0, 0);
    opacity: 0; 
    transition: opacity 0.5s ease-in;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ///////more solutions////////// */
.more-solutions {
    padding: 40px 0;
    background-color: #FFFAF4; /* code warna krem #fdf6e*/
}

.more-solutions h2 {
    font-family: 'Signika', sans-serif;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.more-solutions h5 {
    font-family: 'Signika', sans-serif;
}

.more-solutions p {
    font-family: 'Inter', sans-serif;
}

.more-solutions .icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    vertical-align: top;
}

.more-solutions .info {
    display: inline-block;
    vertical-align: top;
    max-width: calc(100% - 70px);
}

.more-solutions img.centered-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slideInFromLeft {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

/* /////Client///////// */
.clients-section {
    scroll-margin-top: 100px;
    font-family: 'Signika', sans-serif;
    background-color: #FFEBA6;
    background-image: url(../img/trapesium.svg);
    background-repeat: no-repeat;
    background-position: 75% 0px;
    margin-top: -1px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
}

.clients-section h2 {
    /* margin-bottom: 80px; */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    font-size: 2.5rem;
    /* padding-bottom: 50px; */
}

.clients-section.is-visible h2 {
    opacity: 1;
    transform: translateY(0);
}

/* .clients-section img {
    width: 100%;
    height: 130px;
    max-width: 220px; 
    display: block;
    margin: 0 auto; 
} */

.scroll-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    width: 250px;
    margin: 0px 15px 0px 15px;
    background-color: white; 
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    position: relative;
    z-index: 1;
    transform-origin: bottom;
}

/* .background-card {
    position: absolute;
    top: -110px;
    left: 22%;
    transform: translateX(-50%);
    height: 140px; 
    width: 450px; 
    background-color: #B1D8FC;
    border-radius: 20px;
    box-shadow: 0 10px 40px #00499D;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
} */

/* Styling untuk gambar rounded */
.background-card img {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    object-fit: cover; /* Supaya gambar tidak terdistorsi */
}

.clients-scrolling-content {
    display: flex;
    animation: marquee-right 15s linear infinite;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 90px;
    display: flex;
    justify-content: center; 
    padding-bottom: 140px;
    overflow: visible;
}

.carousel-background {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 70px; 
    background: url('../img/sand.png') repeat-x bottom; 
    background-size: contain;
}

.scrolling-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px 10px 0px;
    overflow: hidden;
}

.background-svg {
    position: absolute;
    right: -300px;
    top: 0;
    z-index: 10; 
    width: 50vw; 
    height: auto;
    pointer-events: none;
}

@keyframes marquee-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

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

.clients-section.is-visible h2 {
    animation: fadeInUp 1s ease-in-out forwards;
}

/* CSS untuk animasi testimonial */
.testimonial {
    scroll-margin-top: 100px;
    padding: 10px 0px 40px 0px;
    margin-top: -1px;
    text-align: center;
    position: relative;
    background-color: #C3B0F8;
}

.testimonial.is-visible {
    opacity: 1;
    visibility: visible;
}

.rotatesvg{
    -webkit-transform: rotate(180deg);
    margin-left: 90px;
}

.testimonial h3 {
    font-family: 'Signika', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    animation: fadeInUp 1s ease-out forwards;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: auto;
    width: 75%;
    position: relative;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-content img {
    width: 150px;
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
}

.testimonial-text {
    text-align: left;
}

.testimonial .carousel-control-prev, .testimonial .carousel-control-next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.testimonial .carousel-control-prev {
    left: -75px; 
}

.testimonial .carousel-control-next {
    right: -75px; 
}



/* Keyframes for Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ////////Why Us?//////// */
.why-us {
    background-color: #E6F2FF;
    margin-top: -50px;
    margin-bottom: -50px;
    height: auto;
    width: auto;
    padding-bottom: 30px;
}

.why-us h2{
    font-family: "Signika", sans-serif;
    font-size: 2.5rem;
    padding-bottom: 10px;
}

.why-us button{
    font-family: "Signika", sans-serif;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.accordion-header{
    margin-bottom: -10px;
    border-radius: 5px;
}

.why-us .accordion-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.why-us .accordion-button:not(.collapsed) {
    background-color: #2384EE;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
}

.why-us .accordion-item {
    margin-bottom: 20px;
}

.why-us .accordion-body {
    font-size: 16px;
    font-family: "inter", sans-serif;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    z-index: 1;
    border-radius: 5px;
}

.accordion-collapse.show {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out;
}

/* ////////////Contact//////////////// */
#captchaCanvasContact {
    width: 130px !important;
    height: 60px !important;
}

.contact-section {
    scroll-margin-top: 100px;
    padding-top: 50px;
    font-family: 'Signika', sans-serif;
    padding-bottom: 50px;
    margin-top: -1px;
    margin-bottom: -1px;
    text-align: center;
    color: #000;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg1.svg);
    background-size: cover;
    background-position: center;
    transform: rotate(180deg);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section h2 {
    font-family: 'Signika', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.contact-card {
    position: relative;
    z-index: 1;
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
    background: #B1D8FC;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.form-group label {
    font-family: 'Signika', sans-serif;
    font-size: 1rem;
    margin-bottom: 5px; 
    color: #000;
}

#captchaCanvas {
    width: 100px;
    display: block; 
    margin-bottom: 10px; 
}


.form-group input,
.form-group select {
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

#generated-captcha {
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    align-self: flex-end;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-section.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.contact-section.visible .form-group,
.contact-section.visible button {
    opacity: 1;
    transform: translateX(0);
}

.constraint {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #EAEAEA;
    background: url(../img/pola8.svg);
    background-position: center;
}

/* /////////Footer///////// */
.footer a {
    text-decoration: none;
    /* color: #ffffff; */
    color: #AAA;
}
.footer a:hover {
    color: #ffffff;
}

.contact-item {
    color: #AAA;
}

.footer h6 {
    /* color: #F7B103; */
    color: #FFFFFF;
    font-size: 18px;
}

/* All Smartphones in landscape */
@media only screen 
and (min-width : 321px) {
    .navbar-nav .nav-link {
        color: #1b1b1b;
        src: url('../fonts/Signika.woff')format('woff');
        /* font-family: 'signika', sans-serif; */
        font-size: 18px;
        margin: 0px 15px 0px 15px;
    }
    
    .navbar-nav .nav-link:hover {
        color:  #ffffff;
        background-color: #3D98DA;
    }

    .navbar-nav .nav-link.active {
        color: #ffffff;
        background-color: #3D98DA;
    }

    .navbar-nav .nav-link {
        color: #1b1b1b;
        src: url('../fonts/Signika.woff')format('woff');
        /* font-family: 'signika', sans-serif; */
        font-size: 18px;
        /* text-transform: uppercase; */
        margin: 0px 15px 0px 15px;
        border-radius: 7px;
        clip-path: none; 
    }
    
    .navbar-nav .nav-link:hover {
        color:  #ffffff;
        background-color: #3D98DA;
        border-radius: 7px;
    }

    /* ////Banner//// */
    .fade-in-left-text {
        position: absolute;
        top: 28px;
        left:230px;
    }
    .banner-section {
        background-attachment: scroll;
        background-position: center;
        padding-top: 100px;
    }

    /* ////BannerRS//// */
    .carousel-caption {
        position: absolute;
        top: 50%;
        align-items: center;
        color: #fff;
    }
    
    .carousel-caption h3 {
        font-size: 2rem;
        font-weight: bold;
        color: black;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        color: black;
    }
    
    /* ////More Solution//// */
    .more-solutions .order-2 {
        order: 3;
    }

    .more-solutions .order-1 {
        order: 2;
    }

    .more-solutions .centered-image {
        margin-bottom: 30px;
    }

    /* ////Client//// */
    .clients-section {
        scroll-margin-top: 120px;
        font-family: 'Signika', sans-serif;
        padding: 20px 0px 20px 0px;
        background-color: #FFEBA6;
        background-image: url(../img/trapesium.svg);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: 150px 90px;
        margin-top: -1px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;       
    }

    .clients-section img {
        width: 100%;
        height: 130px;
        max-width: 220px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .scroll-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 150px;
        margin: 0px 15px 0px 15px;
        background-color: white; 
        border-radius: 10px; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
        transform-origin: bottom;
    }

    .carousel-wrapper {
        width: 100%;
        position: relative;
    }

    .carousel-background {
        position: absolute;
        bottom: 50px;
        left: 0;
        right: 0;
        height: 70px; 
        background: url('../img/sand.png') repeat-x bottom; 
        background-size: contain;
    }

    .background-card {
        position: absolute;
        top: -130px;
        left: 50%;
        transform: translateX(-50%);
        height: 100px; 
        width: 300px; 
        background-color: #B1D8FC;
        border-radius: 20px;
        box-shadow: 0 10px 40px #00499D;
        z-index: 0;
        display: flex;
        /* justify-content: space-around; */
        align-items: center;
        padding: 10px;
    }

    .background-card td {
        padding: 5px;
    }
    
    .background-card img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        object-fit: cover; 
        border-style: solid;
        border-width: 5px;
    } 
}

/* All Smartphones in portrait (max-width: 479px) */
@media only screen and (max-width: 479px) {
    .navbar-toggler {
        margin-right: 10px;
    }

    .navbar-brand {
        margin-left: 10px;
    }

    .navbar h3{
        font-size: 1.1rem;
    }

    .navbar .logo{
        width: 40px;
        height: 40px;
        margin-left: -10px;
    }

    .collapse.show {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding-left: 0px;
        margin-top: 15px;
    }

    .navbar-nav .nav-item {
        text-align: left;
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: #1b1b1b;
        src: url('../fonts/Signika.woff')format('woff');
        /* font-family: 'signika', sans-serif; */
        font-size: 18px;
        margin: 0px 15px;
        border-radius: 7px;
        clip-path: none; 
    }
    
    .navbar-nav .nav-link:hover {
        color:  #ffffff;
        background-color: #3D98DA;
        border-radius: 7px;
        clip-path: none; 
    }

    .navbar-nav .nav-link.active {
        color: #ffffff;
        background-color: #3D98DA;
    }

    .social-icons img {
        height: 27px;
        width: 27px;
        filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
        margin-top: 15px;
        margin-bottom: 10px;
    }

    /* ////Banner//// */
    .fade-in-left-text {
        position: absolute;
        top: 28px;
        left:56px;
    }
    .banner-section {
        background-attachment: scroll;
        background-position: center;
    }

    /* ////BannerRS//// */
    .carousel-caption {
        position: absolute;
        top: 50%;
        align-items: center;
        color: #fff;
    }
    
    .carousel-caption h3 {
        font-size: 2rem;
        font-weight: bold;
        color: black;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        color: black;
    }
    
    /* ////Product//// */
    .custom-center {
        display: block;
        margin: 0 auto;
    }

    .ps-lg-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    
    .custom-center {
        margin-top: 20px; 
    }    

    /* ////Client//// */
    .clients-section {
        scroll-margin-top: 120px;
        font-family: 'Signika', sans-serif;
        padding: 20px 0px 20px 0px;
        background-color: #FFEBA6;
        background-image: url(../img/trapesium.svg);
        background-size: 75%;
        background-repeat: no-repeat;
        background-position: 35px 135px;
        margin-top: -1px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;       
    }

    .clients-section img {
        width: 100%;
        height: 130px;
        max-width: 220px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .scroll-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 150px;
        margin: 0px 15px 0px 15px;
        background-color: white; 
        border-radius: 10px; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
        transform-origin: bottom;
    }

    .carousel-wrapper {
        width: 100%;
        position: relative;
    }

    .background-card {
        position: absolute;
        top: -130px;
        left: 50%;
        transform: translateX(-50%);
        height: 100px; 
        width: 300px; 
        background-color: #B1D8FC;
        border-radius: 20px;
        box-shadow: 0 10px 40px #00499D;
        z-index: 0;
        display: flex;
        /* justify-content: space-around; */
        align-items: center;
        padding: 10px;
    }

    .background-card td {
        padding: 5px;
    }
    
    .background-card img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        object-fit: cover; 
        border-style: solid;
        border-width: 5px;
    } 

    /* ////Testimonial//// */
    .testimonial-content {
        display: grid;  
        grid-template-columns: 100%; 
        grid-template-rows: 200px auto; 
        justify-content: center;
        align-items: center;
        text-align: center; 
    }
    
    .testimonial-card {
        min-height: 550px;
    }

    .testimonial-content img{
        position: static;
        margin: 0 auto;
    }

   .testimonial-text {
        text-align: center;
        justify-content: center;
    }

    .testimonial h3 {
        position: relative;
        text-align: center; 
    }

    .rotatesvg {
        -webkit-transform: rotate(180deg);
        margin-left: 75px;
        z-index: 1;
    }

    .testimonial h5 {
        text-align: center; 
    }
}

/* Desktops and laptops (min-width: 1224px) */
@media only screen and (min-width: 1224px) {
    .navbar-collapse {
        justify-content: center;
    }

    .social-icons {
        margin-left: auto;
        display: flex;
        align-items: center;
        margin-right: 1rem;
    }


    .navbar-nav .nav-link {
        color: #1b1b1b;
        src: url('../fonts/Signika.woff')format('woff');
        /* font-family: 'signika', sans-serif; */
        font-size: 18px;
        margin: 0px 15px;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        border-radius: 0px;
    }
    
    .navbar-nav .nav-link:hover {
        color:  #ffffff;
        background-color: #3D98DA;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        border-radius: 0px;
    }

    .navbar-nav .nav-link.active {
        color: #ffffff;
        background-color: #3D98DA;
    }

    .navbar-nav .nav-link:hover {
        color:  #ffffff;
        background-color: #3D98DA;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    }

    /* ////Banner//// */
    .fade-in-left-text {
        position: absolute;
        top: 27px;
        left:213px;
    }

    .banner-section {
        background-attachment: fixed;
        background-position: center;
    }

    /* ////BannerRS//// */
    .carousel-caption {
        position: absolute;
        top: 300px;
        align-items: center;
        color: #fff;
    }
    
    .carousel-caption h3 {
        font-size: 2rem;
        font-weight: bold;
        color: black;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        color: black;
    }

    /* ////Client//// */
    .clients-section {
        scroll-margin-top: 120px;
        font-family: 'Signika', sans-serif;
        background-color: #FFEBA6;
        background-image: url(../img/trapesium.svg);
        background-size: 30%;
        background-repeat: no-repeat;
        background-position: 75% -10px;
        margin-top: -1px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: visible;
        z-index: 1;    
    }

    .clients-section img {
        width: 100%;
        height: 130px;
        max-width: 220px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
   
    .scroll-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 140px;
        width: 250px;
        margin: 0px 15px 0px 15px;
        background-color: white; 
        border-radius: 10px; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
        position: relative;
        z-index: 1;
        transform-origin: bottom;
    }

    .carousel-wrapper {
        position: relative;
        width: 100%;
        margin-top: 90px;
        display: flex;
        justify-content: center; 
        padding-bottom: 140px;
    }

    .background-card {
        position: absolute;
        top: -110px;
        left: 25%;
        transform: translateX(-50%);
        height: 140px; 
        width: 450px; 
        background-color: #B1D8FC;
        border-radius: 20px;
        box-shadow: 0 10px 40px #00499D;
        display: flex;
        /* justify-content: space-around; */
        align-items: center;
        margin: 0px 0px 0px 0px;
    }
    
    .background-card img {
        height: 75px;
        width: 75px;
        border-radius: 50%;
        /* object-fit: cover;  */
        border-style: solid;
        border-width: 5px;
    } 

    .custom-navbar .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .product-flex {
        flex-direction: column; 
    }

    .product-card {
        flex-direction: column; 
        text-align: center; 
    }

    .product-item {
        width: 100%; 
    }

    .diagram-img {
        width: 250px;
        height: 250px;
        margin-bottom: 15px;
    }

    .product-button {
        width: 60%;
        align-self: center;
    }

    .order-mobile-1 h2{
        text-align: center;
        font-weight: 600;
    }

    .order-mobile-1 { order: 2; }
    .order-mobile-2 { order: 1; }
  

    .product-flex {
        display: grid;
        grid-template-columns: 1fr; 
        grid-template-rows: repeat(8, auto); 
        row-gap: 30px; 
    }

    .product-item img {
        max-width: 50px; 
        height: auto; 
    }

    .product-item:nth-child(5),
    .product-item:nth-child(6),
    .product-item:nth-child(7),
    .product-item:nth-child(8) {
        order: 2;
    }

    .product-item:nth-child(1)
    .product-item:nth-child(2)
    .product-item:nth-child(3)
    .product-item:nth-child(4) {
        order: 1;
    }

    /* ////Projects Delivered//// */
    .projects-delivered-section .col-md-4 {
        margin-bottom: 20px;
    }

    .projects-delivered-section h5 {
        padding: 4% 0; 
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .navbar-brand {
        flex-grow: 1;
        margin-right: 0;
    }
}