*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#000;
color:white;
/* overflow:hidden; */
}

/* BACK BUTTON */
.back-btn{
position:fixed;
top:18px;
left:18px;
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;

background:#00eaff;
color:#000000;
border-radius:50%;
text-decoration:none;
z-index:1000;
transition:0.3s;
}

.back-btn:hover{
background:#00eaff;
color:#000;
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:flex-start; /* 👈 LEFT ALIGN DESKTOP */
padding:0 8%;
position:relative;
overflow:hidden;
background:#000;
}

/* GRID BACKGROUND */
.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;

background-image:
linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

background-size:40px 40px;
opacity:0.4;
}

/* GLOW EFFECT */
.hero::after{
content:"";
position:absolute;
width:500px;
height:500px;

background:radial-gradient(circle, rgba(0,234,255,0.15), transparent 70%);

top:50%;
left:70%;
transform:translate(-50%, -50%);

animation:moveGlow 10s ease-in-out infinite;
}

/* CONTENT */
.hero-content{
max-width:650px;
z-index:2;
}

/* HEADING */
.blue-text{
color:#00eaff;
font-size:clamp(30px,5vw,52px);
margin-bottom:20px;
line-height:1.2;
}

/* TEXT */
.hero-content p{
font-size:clamp(14px,1.2vw,18px);
color:#cfcfcf;
line-height:1.7;
margin-bottom:30px;
}

/* BUTTON */
.primary-btn{
padding:12px 30px;
background:#00eaff;
color:black;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.primary-btn:hover{
transform:scale(1.05);
box-shadow:0 0 15px rgba(0,234,255,0.4);
}

/* ANIMATION */
.fade-up{
opacity:0;
transform:translateY(40px);
animation:fadeUp 0.8s ease forwards;
}

.delay-1{
animation-delay:0.2s;
}

.delay-2{
animation-delay:0.4s;
}

@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}

/* GLOW ANIMATION */
@keyframes moveGlow{
0%{ transform:translate(-50%, -50%) scale(1); }
50%{ transform:translate(-55%, -45%) scale(1.1); }
100%{ transform:translate(-50%, -50%) scale(1); }
}

/* =========================
   📱 MOBILE (4:3 RATIO)
========================= */

@media(max-width:768px){

.hero{
height:auto;
aspect-ratio:3/4;     /* 👈 4:3 ratio */
padding:30px 20px;

display:flex;
align-items:center;
justify-content:flex-start; /* left align mobile too */
}

.hero-content{
max-width:100%;
}

.blue-text{
font-size:24px;
font-weight: 700;
}

.hero-content p{
font-size:16px;
}

.primary-btn{
padding:10px 22px;
font-size:14px;
}

}









/* ==========================
   PROCESS SECTION
========================== */
.process{
  padding:80px 8%;
  background:#0a0a0a;
  color:#fff;
}

.process .section-title{
  font-size:28px;
  margin-bottom: 15px;
  color:#00eaff;
  text-align:left; /* heading left aligned */
}

.process .section-subtitle{
  font-size: 16px;
  line-height: 1.3;
  color:#ccc;
  margin-bottom:50px;
  /* max-width:700px; */
  text-align:left; /* subtitle left aligned */
}

/* GRID */
.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:25px;
}

/* PROCESS STEP CARD */
.process-step{
  background: rgba(20,20,20,0.95);
  padding:20px 15px;
  border-radius:15px;
  box-shadow: 0 2px 8px rgba(0,234,255,0.15),
              0 -2px 8px rgba(0,234,255,0.15),
              2px 0 8px rgba(0,234,255,0.15),
              -2px 0 8px rgba(0,234,255,0.15);
  display:flex;
   justify-content:left;
  align-items:flex-start;
  gap:15px;
  opacity:0;
  transform:translateY(60px);
  transition:all 0.4s ease;
  margin: 10px 10px;
}

/* ICON */
.process-step .icon{
  font-size:16px;
  color:#00eaff;
  border:2px solid #00eaff;
  border-radius:50%;
  padding:10px;
  padding-left: 10px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ICON HOVER
.process-step:hover .icon{
  transform:scale(1.2);
  background: rgba(0,234,255,0.1);
} */

/* TEXT CONTAINER */
.process-step-content{
  flex:1;
  display:flex;
  flex-direction:column;
  margin-left: 0px;
  padding-left: 0px;
}

/* HEADING */
.process-step h3{
  font-size:24px;
  margin: 5px 0 12px 0;
  color:#17cfe0;
  line-height:1.2;
  display:flex;
  justify-content:left;
  font-weight: 700;

}

/* TEXT */
.process-step p{
  font-size:13px;
  color:#ccc;
  line-height:1.4;
  margin:0;
  padding-left: 0px;
  padding-bottom: 10px;
    display:flex;
  justify-content:left;
}

/* HOVER CARD */
.process-step:hover{
  transform:translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,234,255,0.2),
              0 -4px 12px rgba(0,234,255,0.2),
              4px 0 12px rgba(0,234,255,0.2),
              -4px 0 12px rgba(0,234,255,0.2);
}

/* ANIMATION CLASS */
.show{
  opacity:1 !important;
  transform:translateY(0) !important;
  transition:all 0.8s ease;
}

/* MOBILE */
@media(max-width:768px){
  .process{
    padding:60px 20px;
  }
  .process-grid{
    gap:20px;
  }
  
  .process-step{
    flex-direction:row;
    gap:16px;
    margin-bottom: 20px;
  }
  .process-step .icon{
    font-size:16px;
    padding:10px;
  }
  .process-step h3{
    font-size:18px;
    font-weight: 700;
    margin: 8px 0 12px 0;
  }
  .process-step p{
    font-size:14px;
    padding-left: 0px;
  }
  .process-step .icon{
  font-size:16px;
  color:#00eaff;
  }
} 








.footer-section {
  background: #0f0f0f;
  color: #00eaff;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Heading */
.footer-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color:#00eaff;
  font-weight: bolder;
}

/* Line under heading */
.footer-line {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Links */
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color:#00eaff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-link img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.footer-link span {
  text-decoration: underline;
  font-weight: 500;
  color:#c6c6c6;
  font-size: 14px;
}

/* Hover animations */
.footer-link:hover {
  color: #fff;
  transform: translateY(-3px);
}

.footer-link:hover img {
  transform: scale(1.2);
}

/* Footer Note */
.footer-note {
  margin-top: 30px;
  font-size: 0.7rem;
  color: #00eaff;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-heading {
    font-size: 1.5rem;
  }
  .footer-line {
    font-size: 0.9rem;
  }
  .footer-link {
    gap: 8px;
  }
  .footer-link img {
    width: 22px;
    height: 22px;
  }
}








/* testimonials Section */
.testimonials {
  background: #000;
  color: #fff;
  padding: 60px 5px;
  text-align: center;
}

.section-title-t {
  color:#00eaff;
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Container - Desktop */
.testimonial-container {
  display: flex;
  justify-content: space-evenly;  /* desktop only */
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: hidden;             /* hide horizontal scroll on desktop */
  scroll-behavior: smooth;
  padding: 0 10px;
}


/* Card */
.testimonial-card {
  flex: 0 0 300px;               /* fixed width desktop */
  max-width: 400px;
  background: #111;
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid #00eaff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin-bottom: 20px;
}


/* Active Card */
.testimonial-card.active {
  border: 1px solid #00eaff;
  box-shadow: 0 0 15px rgba(0,234,255,0.2);
  opacity: 1;
  transform: translateY(0);
}

/* Card Top */
.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.card-top div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-top h3 {
  margin: 0;
  font-size: 1rem;
}

.country {
  margin: 2px 0 0 0;
  font-size: 0.85rem;
  color: #aaa;
}

.card-top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

/* Stars */
.stars {
  color: #d8eb2a;
  font-size: 1.3rem;
  margin: 5px 0;
  text-align: left;
}

/* Review */
.review {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: left;
  margin: 5px 0 0 0;
  margin-bottom: 15px;
}

/* Dots */
.dots {
  margin-top: 15px;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  background: #555;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.dot.active {
  background: #ffffff;
}

/* Mobile Responsive */
@media (max-width:768px){
  .testimonial-container {
    justify-content: flex-start;  /* disable space-evenly on mobile */
    gap: 15px;
    padding: 0 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-container::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 95%;               /* almost full width */
    max-width: 95%;
    scroll-snap-align: start;
    min-width: auto;
    padding: 12px 15px;
  }

  .card-top img {
    width: 45px;
    height: 45px;
  }

  .card-top h3 {
    font-size: 0.95rem;
  }

  .country {
    font-size: 0.75rem;
  }

  .stars {
    font-size: 1.3rem;
  }

  .review {
    font-size: 0.85rem;
  }
}