
.hero {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  background: url('/assets/images/image\ 45.jpg') no-repeat bottom center;
  background-size: cover;
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  margin-top: -40px;
}
.hero .logo {
  width: 300px;
  margin: 0 auto 20px;
  align-items: center;
}

/* container for the floating stacks */
.floating-images {
position: absolute;
top: 50%;
transform: translateY(-50%);
pointer-events: none;        /* so they don’t block clicks */
}

/* left‑side stack */
.floating-images.left {
left: 0;
}

/* Left stack */
.floating-images.left img:nth-child(1) {
width: 300px;
margin-bottom: -220px;
margin-left: -10px;
animation: float 8s ease-in-out infinite;
}
.floating-images.left img:nth-child(2) {
width: 300px;
margin-bottom: -250px;
margin-left: -80px;
animation: float 10s ease-in-out infinite;
}
.floating-images.left img:nth-child(3) {
width: 220px;
margin-bottom: -90px;
margin-left: 10px;
animation: float 9s ease-in-out infinite;
}
.floating-images.left img:nth-child(4) {
width: 120px;
margin-bottom: -60px;
margin-left: 20px;
animation: float 7.7s ease-in-out infinite;
}

/* right‑side stack */
.floating-images.right {
right: 0;
}

/* right stack */
.floating-images.right img:nth-child(1) {
width: 300px;
margin-bottom: -20px;
margin-right: -60px;
animation: float 10.5s ease-in-out infinite;
}
.floating-images.right img:nth-child(2) {
width: 290px;
margin-bottom: -250px;
margin-right: -80px;
padding-bottom: 100px;
padding-left: 90px;
animation: float 8.5s ease-in-out infinite;
}
.floating-images.right img:nth-child(3) {
width: 135px;
margin-bottom: -90px;
margin-left: 10px;
animation: float 11s ease-in-out infinite;
}
.floating-images.right img:nth-child(4) {
width: 220px;
margin-bottom: -60px;
margin-right: -190px;
animation: float 6.7s ease-in-out infinite;
}

/* all images share a float animation */
.floating-images img {
display: block;
width: 160px;
margin-bottom: -60px;    /* ↑ more negative → more overlap */
animation: float 3s ease-in-out infinite;
}

/* stagger the motion so they don’t all move in sync */
.floating-images img:nth-child(1) { animation-delay: 0s; }
.floating-images img:nth-child(2) { animation-delay: 1.5s; }
.floating-images img:nth-child(3) { animation-delay: 3s; }
.floating-images img:nth-child(4) { animation-delay: 4.5s; }

/* simple up-and-down keyframes */
@keyframes float {
0%, 100% { transform: translateY(0); }
50%      { transform: translateY(-20px); }
}

.reviews {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 8px;
  color:#fff
}
.reviews .stars {
  display: inline-flex;
  margin-left: 8px;
}
.reviews .stars img {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.subheading {
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 24px;
  color:#fff
}

.heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  color:#fff
}
.heading .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

.platforms {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.platform {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform img {
  max-width: 32px;
  max-height: 32px;
}

/* each stat is its own pill now */
.stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  color:#fff
}
.stats .stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 300;
  color:#fff
}
.stats .stat img {
  width: 16px;
  height: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-image: linear-gradient(#1105f3, #474483);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  margin-top: 16px;
}
.btn img {
  width: 20px;
  height: 20px;
}

/* Slider */
.logo-body {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.logo-slider {
  position: relative;
  width: 80%;
  overflow: hidden;
  padding: 80px 0;
  background: transparent;
}

.slider-track {
  display: flex;
  width: calc(200px * 14);
  animation: scroll 50s linear infinite;

  /* mask so content fades out on both sides */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 50%,
    black 50%,
    transparent 100%
  );
  mask-mode: alpha;
}

.logo-slide {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.logo-slide img {
  max-height: 60px;
  object-fit: contain;
  display: block;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Our Experrise */
.our_expertise {
background-image: url('../assets/images/bg-oe.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 0;
}
.card-case {
  width: 1200px;
  margin: 0 auto;
}
#cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 87vh);
  gap: 4vw;
  padding-left: 0;
}
.card {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * 4em);
}
.card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 19px;
  padding: 0 30px;
  margin-top: 0;
  width: 1100px;
}
.e-h2 {
  font-weight: bold; 
  font-size: 43px; 
  margin: 0;
}
.e-p {
  font-size: 33px; 
  line-height: 1.4; 
  color: #333;
}
.card-button {
  width: 90%;
  padding: 16px 30px;
  background-color: #0f0f10;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* our services */
.sarvice {
background-color: #0f0f10;
color: aliceblue;
width: 100%;
text-align: left;
}
.sarvices {
width: 1200px; 
margin: 0 auto; 
padding: 5em;
}
.h2txt {
/* min-width: 360px !important; */
font-size: 45px;
margin: 10px 0 30px;
line-height: 1.3;
}
.s-box {
position: relative; 
display: flex; 
gap: 10px;
}
.sidebar {
  width: 40%;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: start;
  justify-content: center;
  overflow: hidden;
}
.sidebar .content {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: left;
  max-width: 100%;
}
.sidebar .content.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
.sidebar .content.exiting {
  opacity: 0;
  transform: translateY(-40px);
  z-index: 1;
}
.scroll-area {
  width: 60%;
  padding-left: 100px;
}
.saction {
  height: 100vh;
  display: flex;
  align-items: start;
  justify-content: left;
}
.saction img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.saction.visible img {
  opacity: 1;
  transform: translateY(0);
}


/* Why Choose US */
.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  background: #2E2A26;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* custom css */
.big_star{
    padding-left: 60px;
}
.jordi-right-phone{
    height: 100%;
    width: auto;
}
.right_tablet{
    margin-left: 80px;
}
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ——— Mobile‑only Hero overrides —— */
@media (max-width: 768px) {
.hero {
padding: 40px 10px;
min-height: auto;
margin-top: -50px;
}
.hero .logo {
width: 180px;
margin-bottom: 12px;
margin-top: 30px;
}
.reviews {
font-size: 0.5rem;
margin-bottom: 8px;
}
.reviews .stars img {
width: 10px;
height: 10px;
}
.subheading {
font-size: 0.7rem;
margin-bottom: 12px;
}
.heading {
font-size: 1rem;
margin-bottom: 16px;
line-height: 1.2;
}
.platforms {
gap: 5px;
margin-bottom: 16px;
}
.platform {
width: 30px;
height: 30px;
}
.platform img {
max-width: 20px;
max-height: 20px;
}
.stats {
gap: 8px;
margin-bottom: 16px;
}
/* hide the 2nd pill on mobile, only show revenue stat */
.stats .stat:nth-child(2) {
display: none;
}
.stats .stat {
padding: 6px 12px;
font-size: 0.5rem;
}
.stats .stat img {
width: 14px;
height: 14px;
}
/* scale down floating‐images on sides */
.floating-images {
top: 55%;
}
.floating-images img {
width: 80px !important;
margin-bottom: -20px !important;
}
/* ——— Hero Banner: individual floating‑image classes ——— */
/* LEFT stack */
.float-left-1 {
width: 300px;
margin-left: -10px;
margin-bottom: -220px;
animation: float 8s ease-in-out infinite;
/* e.g. add: transform: translate(-20px, 10px); */
}
.float-left-2 {
width: 300px;
margin-left: -80px;
margin-bottom: -250px;
animation: float 10s ease-in-out infinite;
/* e.g. add: transform: translate(15px, -5px); */
}
.float-left-3 {
width: 220px;
margin-left: 10px;
margin-bottom: -90px;
animation: float 9s ease-in-out infinite;
/* e.g. add: transform: translate(-10px, 20px); */
}
.float-left-4 {
width: 120px;
margin-left: 20px;
margin-bottom: -60px;
animation: float 7.7s ease-in-out infinite;
/* e.g. add: transform: translate(5px, 15px); */
}

/* RIGHT stack */
.float-right-1 {
width: 300px;
margin-right: -60px;
margin-bottom: -20px;
animation: float 10.5s ease-in-out infinite;
/* e.g. add: transform: translate(10px, 5px); */
}
.float-right-2 {
width: 290px;
margin-right: -80px;
margin-bottom: -250px;
animation: float 8.5s ease-in-out infinite;
/* e.g. add: transform: translate(-15px, 10px); */
}
.float-right-3 {
width: 135px;
margin-right: 0;        /* original left margin was 10px, adjust as needed */
margin-bottom: -90px;
animation: float 11s ease-in-out infinite;
/* e.g. add: transform: translate(0, -10px); */
}
.float-right-4 {
width: 220px;
margin-right: -190px;
margin-bottom: -60px;
animation: float 6.7s ease-in-out infinite;
/* e.g. add: transform: translate(-20px, 0); */
}

/* shrink the logo‐slider icons */
.logo-slider {
padding: 40px 0;
}
.logo-slide {
flex: 0 0 120px;
margin: 0 6px;
}
.logo-slide img {
max-height: 40px;
}
}
/* — our expertise */
@media (max-width: 768px) {

/* “Our Expertise” badge */
.our_expertise .badge {
margin-bottom: 30px;   
margin-left: 20px;
}
.our_expertise > h1 {
font-size: 1.8rem;      
line-height: 1.2;
margin: 20px !important;  
max-width: 100%;        
}

/* Turn off the grid’s fixed-height rows and sticky cards */
#cards {
display: flex;
flex-direction: column;
gap: 20px;
grid-template-rows: none !important;
padding-bottom: 2rem;
margin: 20px;
}
.card {
position: static !important;
padding-top: 0 !important;
/* optional spacing between cards */
margin-bottom: 8px;
}

/* Stack each card-body vertically */
.card-body {
display: flex !important;
flex-direction: column !important;
align-items: flex-start !important;
width: 100% !important;
padding: 16px !important;
}

/* Ensure all inner pieces take full width */
.card-body > * {
width: 100% !important;
margin-bottom: 12px;
}
.e-h2 {
font-size: 33px; 
}
.e-p {
font-size: 16px; 
line-height: 1.1; 
}

/* Make images responsive */
.card-body img {
max-width: 100% !important;
height: 320px !important;
object-fit: fill;
border-radius: 12px;
}

/* Button stays full‑width or auto, per your taste */
.card-button {
width: auto;
padding: 8px 16px;
font-size: 0.9rem;
}

/* ——— Why Choose Us mobile overrides ——— */

/* center the badge row */
section.container > div:first-child {
text-align: center !important;
margin-bottom: 25px !important;
}

/* center the main heading */
section.container > h1 {
text-align: center !important;
font-size: 1.5rem !important;
line-height: 1.2 !important;
margin: 0 auto 16px !important;
max-width: 100% !important;
}

/* stack & reverse the two‑column flex into [text → image] */
section.container > h1 + div[style*="flex-wrap"] {
display: flex !important;
flex-direction: column-reverse !important;
align-items: center !important;
gap: 16px !important;
margin-top: 16px !important;
}

/* style the description block */
section.container > h1 + div[style*="flex-wrap"] > div:nth-child(2) {
width: 100% !important;
text-align: center !important;
padding: 0 12px !important;
}
section.container > h1 + div[style*="flex-wrap"] > div:nth-child(2) p {
font-size: 0.8rem !important;
line-height: 1.4 !important;
margin: 0 !important;
}
/* center the button if you want to keep it visible */
section.container > h1 + div[style*="flex-wrap"] > div:nth-child(2) .cta-button {
margin: 12px auto 0 !important;
}
/* hide the CTA button in “Why Choose Us” on mobile */
section.container .cta-button {
display: none !important;
}

/* style the image wrapper at the bottom */
section.container > h1 + div[style*="flex-wrap"] > div:nth-child(1) {
width: 90% !important;
text-align: center !important;
}
section.container > h1 + div[style*="flex-wrap"] > div:nth-child(1) img {
width: 100% !important;
height: auto !important;
border-radius: 12px !important;
}
}
/* -- service section */
@media (max-width: 768px) {
.sarvices {
width: 95%; 
margin: 0 auto; 
padding: 20px;
}
.h2txt {
/* min-width: 360px !important; */
font-size: 28px;
margin-bottom: 10px;
line-height: 1;
}
.sidebar, .scroll-area {
width: 100%;
height: auto;
padding: 2.5em 0 !important;
position: static;
display: flex;
flex-direction: column;
align-items: start;
justify-content: flex-start;
gap: 5em !important;
}
.sidebar .content {
position: relative;
opacity: 1 !important;
transform: none !important;
transition: none !important;
text-align: left;
max-width: 100%;
margin-bottom: 3em;
}

.scroll-area {
padding-left: 0;
}

.saction {
height: auto;
justify-content: center;
margin-bottom: 2em;
}

.saction img {
opacity: 1 !important;
transform: none !important;
transition: none !important;
width: 100%;
max-height: 300px;
object-fit: cover;
border-radius: 10px;
}
.content h2 {
font-size: 21px;
}
.content p {
width: 100% !important;
font-size: 10px !important;
}

.sidebar .content.active,
.sidebar .content.exiting {
opacity: 1 !important;
transform: none !important;
z-index: auto;
}

/* Hide observer logic for mobile (if needed) */
.saction.visible img {
opacity: 1;
transform: none;
}
}

/* ——— CTA Box Mobile Overrides ——— */
/* @media (max-width: 768px) {
.faq-list + div[style*="display: flex"] {
max-width: 100%   !important;
margin: 24px auto !important;
margin-bottom: -30px  !important;
padding: 20px    !important;
gap: 16px        !important;
border-radius: 30px !important;
}

.faq-list + div[style*="display: flex"] h2 {
font-size: 1.3rem   !important;
line-height: 1.3    !important;
width: auto         !important;
text-align: center  !important;
margin: 0 auto      !important;
}

.faq-list + div[style*="display: flex"] .cta-button {
padding: 10px 20px  !important;
font-size: 0.9rem   !important;
}
} */










































.testimonial-section {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
}
.testimonial-header {
  padding: 0 20px;
}
.testimonial-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 20px;
}
.testimonial-wrapper {
  width: 75%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.arrow {
  width: 50px;
  cursor: pointer;
}
.arrow img {
  width: 50px;
}
.testimonial-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: all 0.6s ease;
}
.testimonial-slide video {
  width: 250px !important;
  height: 250px !important;
}
.testimonial-content {
  text-align: left;
  max-width: 600px;
  margin: 0;
}
.testimonial-content p {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0 20px;
}
.comma {
  font-size: 56px; 
  color: #4676FF; 
  font-family: 'Playfair Display', serif;
}
.testimonial-content .meta {
  font-weight: 600;
}

.testimonial-content .meta .company {
  font-style: italic;
  color: #4676FF;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}

.testimonial-content .stars {
  color: gold;
  margin-left: 10px;
}

/* -- testimonial section */
@media (max-width: 768px) {
  .testimonial-wrapper {
    width: 100%;
    gap: 10px;
  }
  .testimonial-slider {
    min-height: 400px;
    /* border: #4676FF solid; */
    /* overflow: scroll; */
  }
  .testimonial-slide {
    width: 100%;
    flex-direction: column;
    padding: 0px;
    border-radius: 0;
  }
  .testimonial-slide video {
    height: 150px !important;
    object-fit: fill;
  }
  .testimonial-content {
    text-align: center;
    padding: 10px;
  }
  .testimonial-content p {
    font-size: 12px;
    margin: 0;
    padding: 0 10px 12px;
    /* font-weight: 600; */
    /* text-align: justify; */
  }
  .comma {
    font-size: 0;
    visibility: hidden;
  }
  .meta, .company {
    font-size: 14px;
  }  
  .stars {
    font-size: 24px;
  }
}
