

/* -------------------------------------------------------------------------- */
/*                           HOME SWIPER PAGINATION FIX                       */
/* -------------------------------------------------------------------------- */

.home-swiper .swiper-pagination .home-swiper-pagination {
    position: absolute;
    bottom: 1.5rem !important;
    left: 0;
}

/* Pagination bullets */
.home-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 1;
    width: 1rem;
    height: 1rem;
    transition: 0.3s ease-in-out;
}

/* Active bullet */
.home-swiper .swiper-pagination-bullet-active {
    background: var(--background);
    opacity: 1;
}

/* -------------------------------------------------------------------------- */
/*                              2. SOLUTION SECTION                            */
/* -------------------------------------------------------------------------- */

.solution-container {
    display: grid;
  /*  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));*/
      grid-template-columns: repeat(3, 1fr); /* ✅ 3 per row */

    gap: 2em;
    padding: 2em;
    width: 100%;
    background: white;
  }

/* Card */
.solution-card {
    perspective: 1000px;
    border-radius: 3rem;
    background: linear-gradient(135deg, #A5FECB, #51afdc);
    transition: all 0.5s ease-in-out;
    transform-style: preserve-3d;
    box-shadow: rgba(5,71,17,0) 2rem 3rem 1rem;
    position: relative;
    aspect-ratio: 4 / 3;
    height: auto;
   
   /* min-height: 250px;*/
}

.solution-card:hover {
    transform: rotate3d(1, 1, 0, 20deg);
}

/* Glass layer */
.glass {
    transform-style: preserve-3d;
    position: absolute;
    inset: 0.4rem;
    border-radius: 3rem;
    border-top-right-radius: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 250, 0.5), white);
    transform: translate3d(0, 0, 1.5rem);
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    transition: all 0.5s ease-in-out;
}

/* Card text content */
.content {
    padding: 6rem 4rem 4rem 2rem;
    transform: translate3d(0, 0, 2rem);
   
}

.content h4 {
    color: var(--blue);
}

/* Card bottom links */
.bottom {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    justify-content: flex-end;
    align-items: center;
    transform: translate3d(0, 0, 3rem);
}

.bottom .view-more {
    font-size: 0.8rem;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.bottom .view-more:hover {
    transform: translate3d(0, 0, 2rem);
}

.bottom .view-more .view-more-button {
    text-decoration: none;
    background: none;
    border: none;
    color: var(--blue);
}

.bottom .view-more .svg {
    fill: none;
    stroke: #51afdc;
    stroke-width: 0.22em;
    max-height: 1em;
}

/* Decorative shapes */
.shapecard {
    position: absolute;
    right: 0;
    padding: 0.4rem;
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #a5fecb, #20bdff);
    transform-style: preserve-3d;
    transition: all 1s ease-in-out;
    transform: translate3d(0, 0, 3rem);
     display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    background: linear-gradient(#ffffff27, #ffffff28);
    position: absolute;
    border-radius: inherit;
    box-shadow: -0.5rem 0.5rem 1rem #64646f33;
    transition: all 1s ease-in-out;
     display: flex;
    align-items: center;
    justify-content: center;
}

.shape:nth-child(1) { inset: 0.7em; transition-delay: 0.1s; }
.shape:nth-child(2) { inset: 1.4em; transition-delay: 0.2s; }
.shape:nth-child(3) { inset: 2em; transition-delay: 0.3s; }

.solution-card:hover .shapecard {
    transform: rotate3d(1, 1, 0, 30deg);
}

.solution-card:hover .shape:nth-child(1) { transform: translate3d(0, 0, 1rem); }
.solution-card:hover .shape:nth-child(2) { transform: translate3d(0, 0, 2rem); }
.solution-card:hover .shape:nth-child(3) { transform: translate3d(0, 0, 3rem); }

/* Icons */
.card_icon {
    font-size:clamp(1.2rem, 1.5vw, 1.5rem); 
    color: #51afdc;
   
}

/* -------------------------------------------------------------------------- */
/*                               3. TESTIMONIALS                              */
/* -------------------------------------------------------------------------- */

.testimonials-swiper {
    padding: 0;
    overflow: hidden; /* important */
   
}


.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
   padding: var(--padding-inline-section);
}

/* Message box */
.testimonial-client-msg {
    
    text-align: left;
    position: relative;
   
}

.testimonial-client-msg .quote {
    justify-content: flex-start;
}
.testimonial-client-msg  p{
    padding: 1rem;
}
.testimonial-client-msg .quote i {
    font-size: 1rem;
    color:var(--blue);
    margin-right: 1rem;
}

.testimonial-client-msg .quote h4 {
    color: #51afdc;
}
.testimonials-swiper .swiper-slide {
    box-sizing: border-box;
}
.testimonial-client-msg::after {
    content: "\f10e";
    position: absolute;
    bottom: 0rem;
    right: 1rem;
    color: var(--blue);
    font-size: 1rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Client profile */
.testimonial-client-profile {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 2rem;
}

.profile-desc {
     display: flex;
    flex-direction: column;
    gap: 0.25rem; /* space between name & title */
    text-align: center;

}

.profile-desc span:first-child {
    font-weight: 600;
    
}

.profile-desc span:last-child {
    font-size: 0.9rem;
    color: var(--blue);
}

/* -------------------------------------------------------------------------- */
/*                           4. COMPANY PROFILE SECTION                        */
/* -------------------------------------------------------------------------- */

.company-container {
    padding: var(--padding-inline-section);
}

.company-details {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    align-items: center;
    background: repeating-linear-gradient(120deg, white 0px, white 20%, #51afdc 15%, #8df39b);
}

/* Company description */
.company-desc {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.company-desc p {
    color: var(--white);
}

/* Company image styling */
.img_div {
    margin-top: auto;
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    border-radius: 50%;
    border: 1.5em solid white;
    background: white;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.2) 1rem 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_div .image {
   
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Company stats boxes */
.box-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.box {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.box .fa-solid {
    font-size: 2rem;
    color: #51afdc;
}

/* -------------------------------------------------------------------------- */
/*                            5. PARTNERS & CLIENTS                            */
/* -------------------------------------------------------------------------- */

.patner-swiper,
.client-swiper {
    background-color:var(--white);
    position: relative;
}

/* Overlay gradients */
.patner-swiper::before,
.patner-swiper::after,
.client-swiper::before,
.client-swiper::after {
    position: absolute;
    top: 0;
    width: 5rem;
    height: 100%;
    content: "";
}
/*
.patner-swiper::before,
.client-swiper::before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), #51afdc);
}

.patner-swiper::after,
.client-swiper::after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), #51afdc);
}*/

/* Slides */
.patner-swiper .swiper-slide,
.client-swiper .swiper-slide {
     display: flex;
    align-items: center;
    justify-content: center;
}

.patner-swiper .swiper-slide img,
.client-swiper .swiper-slide img {
    max-width: 100%;
    height: 8rem;
    width: 12rem;
    object-fit: contain;
  /*  height: 8rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;*/
    margin: 1rem;
    transition: all 0.3s ease;
 /*   transition: transform 0.3s ease, filter 0.3s ease;*/
}

