
body {
    font-family: 'Poppins', sans-serif;
    background: #020617;
    color: #fff;
}

/* =========================
MODERN SERVICES SECTION
========================= */

.services {
    position: relative;
    overflow: hidden;

    padding: 40px 8%;

    background:
        radial-gradient(circle at top left,
        rgba(30,167,255,0.08),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(59,130,246,0.08),
        transparent 30%),

        #020b24;
}

/* =========================
BACKGROUND GLOWS
========================= */

.services-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.glow-left {
    width: 280px;
    height: 280px;
    background: rgba(30,167,255,0.12);
    top: 0;
    left: -100px;
}

.glow-right {
    width: 350px;
    height: 350px;
    background: rgba(59,130,246,0.12);
    bottom: -100px;
    right: -100px;
}

/* =========================
CONTAINER
========================= */

.services-container {
    position: relative;
    z-index: 2;

    max-width: 1300px;
    margin: auto;
}

/* =========================
HEADER
========================= */

.services-header {
    text-align: center;
    max-width: 850px;
    margin: auto auto 80px;
}

.badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    color: #60a5fa;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}

.services-header h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.services-header h1 span {
    display: block;
    color: #1ea7ff;
}

.services-header p {
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
    font-size: 17px;
}

/* =========================
GRID
========================= */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* CARD WIDTH */
.service-card {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 20px);
}

/* TABLET */
@media (max-width: 1100px) {

    .service-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 15px);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
/* =========================
CARD
========================= */

.service-card {
    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(16px);

    overflow: hidden;

    transition: 0.45s ease;

    text-decoration: none;

    display: flex;

    flex-direction: column;

    cursor: pointer;

    
}
.service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(30,167,255,0.08),
            transparent 40%
        );

    opacity: 0;

    transition: 0.45s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);

    border-color: rgba(30,167,255,0.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.35),
        0 0 40px rgba(30,167,255,0.08);
}

/* ACTIVE CARD */

.active-card {
    border-color: rgba(30,167,255,0.3);

    background:
        linear-gradient(
            180deg,
            rgba(30,167,255,0.08),
            rgba(255,255,255,0.03)
        );
}

/* =========================
TOP AREA
========================= */

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.service-icon {
    width: 72px;
    height: 72px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(30,167,255,0.18),
            rgba(37,99,235,0.12)
        );

    border: 1px solid rgba(255,255,255,0.08);

    font-size: 28px;

    color: #1ea7ff;

    transition: 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-number {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
}

/* =========================
TEXT
========================= */

.service-card h3 {
    font-size: 26px;

    color: #fff;

   

    line-height: 1.3;

    min-height: 70px;
}

.service-card p {
    color: rgba(255,255,255,0.68);

    line-height: 1.8;

    margin-bottom: 35px;

    font-size: 15px;
}
/* =========================
LINK
========================= */

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #1ea7ff;

    font-weight: 600;

    transition: 0.3s ease;

    pointer-events: none;
}

.service-link i {
    transition: 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {

    .services {
        padding: 100px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h1 {
        font-size: 36px;
    }

    .services-header p {
        font-size: 15px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 22px;
    }
}
.process {
    
    padding: 10px 8%;
    padding-top: 50px;
    text-align: center;
}

.process h1 {
    font-size: 42px;
}

.process h1 span {
    color: #3b82f6;
}

.process p {
    color: #94a3b8;
    margin-top: 10px;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* Step Card */
.step {
    position: relative;
    padding: 30px 20px;
    border: 1px solid #0f172a;
    border-radius: 15px;
    background: #020617;
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-6px);
    border-color: #1e40af;
}

/* Number */
.number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #020617;
    border: 1px solid #1e40af;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    color: #3b82f6;
}

/* Icon */
.step .icon {
    width: 70px;
    height: 70px;
    background: #0f172a;
    margin: 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step .icon i {
    color: #3b82f6;
    font-size: 26px;
}

/* Bottom Box */
.support-box {
    margin-top: 50px;
    padding: 25px;
    border: 1px solid #0f172a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #020617;
}

/* LEFT SIDE */
.support-left {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
}

.support-left h3 {
    font-size: 18px;
}

/* RIGHT SIDE */
.support-right {
    border-left: 1px solid #1e293b;
    padding-left: 25px;
    color: #94a3b8;
}

/* ICON */
.support-box .icon {
      width: 97px;
    height: 76px;
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-box i {
    color: #3b82f6;
    font-size: 20px;
}
@media(max-width: 600px){
    .support-box {
        flex-direction: column;
        text-align: center;
    }

    .support-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #1e293b;
        padding-top: 15px;
    }

    .support-left {
        justify-content: center;
    }
}


/* dotted line */
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: -5px;
    width: 60px;
    border-top: 2px dashed #3b82f6;
}

/* arrow head */
.step:not(:last-child)::before {
    content: "➜";
    position: absolute;
    top: 20.7%;
    right: -22px;
    color: #3b82f6;
    font-size: 18px;
    font-weight: 100;
}
@media(max-width: 1100px){
    .step::after,
    .step::before {
        display: none;
    }
}


/* Responsive */
@media(max-width: 1100px){
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 700px){
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px){
    .process-grid {
        grid-template-columns: 1fr;
    }

    .support-box {
        flex-direction: column;
        text-align: center;
    }
}


/* TECHNOLOGY SECTION */
.tech-section{
    padding:100px 0;
    background:#050b17;
    color:#fff;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.tech-header h1 {
    font-size: 48px;
    margin: 15px 0;
}

.tech-header h1 span {
    color: #1ea7ff;
}

.tech-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
background: none;
    border: none;
border-radius: 0;
    color: #1ea7ff;
    font-size: 13px;
    font-weight: 600;
}
/* CAROUSEL CONTAINER */
.tech-carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 60px auto 40px;
    padding: 40px 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.tech-track {
    display: flex;
    gap: 40px;
    will-change: transform;
    animation: scroll 40s linear infinite;
}

.tech-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 110px;
}

.tech-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    transition: 0.4s ease;
}

.tech-card:hover .tech-icon-box {
    border-color: #1ea7ff;
    transform: translateY(-8px) rotate(-5deg);
    background: rgba(30, 167, 255, 0.1);
    box-shadow: 0 15px 30px rgba(30, 167, 255, 0.2);
}

.ex-text {
    font-weight: 800;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.tech-card span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* BOTTOM FEATURE GRID */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 80px auto 50px;
    text-align: left;
}

.t-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.t-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(30, 167, 255, 0.2);
}

.t-icon {
    min-width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(30, 167, 255, 0.15), rgba(37, 99, 235, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ea7ff;
    font-size: 22px;
}

.t-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.t-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}
/* CTA BUTTON */
.tech-cta .btn-build {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid #1ea7ff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    background: rgba(30, 167, 255, 0.05);
}

.tech-cta .btn-build:hover {
    background: #1ea7ff;
    box-shadow: 0 0 20px rgba(30, 167, 255, 0.4);
}

@media (max-width: 768px) {

    .tech-section {
        overflow: hidden;
    }

    .tech-carousel-container {
        overflow: hidden;
        padding: 20px 10px;
    }

    .tech-track {
        gap: 16px;
        animation: scroll 20s linear infinite;
    }

    .tech-card {
        min-width: 70px;
    }

    .tech-icon-box {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}
@media (max-width: 768px) {

    .tech-header h1 { 
        font-size: 32px; 
    }

    .tech-carousel-container { 
        padding: 20px; 
    }

    /* ❌ REMOVE wrap */
    .tech-track {
        flex-wrap: nowrap;   /* force single line */
        gap: 20px;
        animation: scroll 20s linear infinite; /* faster for mobile */
    }

    /* Reduce card size */
    .tech-card {
        min-width: 80px;
    }

    .tech-icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* SECTION */
.why {
    padding: 10px 8%;
    text-align: center;
    padding-top: 50px;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #1e40af;
    border-radius: 30px;
    color: #3b82f6;
    margin-bottom: 15px;
    font-size: 13px;
}

/* HEADING */
.why h1 {
    font-size: 48px;
    font-weight: 700;
}

.why h1 span {
    color: #3b82f6;
}

/* SUBTEXT */
.subtitle {
    color: #94a3b8;
    max-width: 700px;
    margin: 10px auto 0;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.why-card {
    background: #020617;
    border: 1px solid #0f172a;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59,130,246,0.2);
}

/* TOP */
.why-card .top {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON */
.why-card .icon {
    width: 65px;
    height: 65px;
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-card i {
    color: #3b82f6;
    font-size: 24px;
}

.why-card h3 {
    margin: 0;
}

.why-card h3::after {
    content: "";
    width: 30px;
    height: 3px;
    background: #3b82f6;
    display: block;
    margin-top: 8px;
}

.why-card p {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 14px;
}

/* ========================= */
/* 🔥 SINGLE STATS BOX */
/* ========================= */

.stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid #0f172a;
    border-radius: 15px;
    overflow: hidden;
    background: #020617;
}

/* MISSION */
.mission {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    text-align: left;
}

.mission .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission i {
    font-size: 22px;
    color: #3b82f6;
}

/* STAT ITEM */
.stat-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
}

/* SHORT DIVIDER */
.stat-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #1e293b;
}

/* FIRST ITEM NO LINE */
.stat-box:first-of-type::before {
    display: none;
}

/* ICON LEFT */
.stat-box i {
    font-size: 40px;
    color: #3b82f6;
    min-width: 25px;
}

/* TEXT */
.stat-content h2 {
    font-size: 24px;
    margin: 0;
}

.stat-content p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-box::before {
        display: none;
    }

    .stat-box {
        border-top: 1px solid #1e293b;
    }

    .mission {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 500px){
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why h1 {
        font-size: 32px;
    }
}
/* =========================
TESTIMONIALS SECTION
========================= */

.testimonials-section {
  background: #050816;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial-subtext {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.8;
}

/* Wrapper */
.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Track — clips the cards */
.testimonial-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
/* TESTIMONIALS HEADING */

.testimonial-heading{
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-heading h1{
    font-size: 48px;
    font-weight: 700;
    margin-top: 15px;
    color: #fff;
}

.testimonial-heading h1 span{
    color: #3b82f6;
}

.testimonial-subtext{
    color: #94a3b8;
    max-width: 850px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.8;
}

@media(max-width:768px){

    .testimonial-heading h1{
        font-size: 32px;
        line-height: 1.3;
    }

    .testimonial-subtext{
        font-size: 16px;
    }
}
/* Slider — moves via transform, NOT scroll */
.testimonial-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;

}

/* Card — width set by JS */
.testimonial-card {
  flex-shrink: 0;
  background: rgba(8, 18, 45, 0.95);
  border: 1px solid rgba(30, 167, 255, 0.12);
  border-radius: 18px;
  padding: 35px 28px;
  box-sizing: border-box;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  /* transform: translateY(-6px); */
  border-color: rgba(30, 167, 255, 0.3);
}

.quote-icon {
  font-size: 34px;
  color: #1ea7ff;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  min-height: 100px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-user h4 {
  color: #ffffff;
  font-size: 17px;
  margin: 0 0 4px;
}

.testimonial-user span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
}

/* Arrows */
.testimonial-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(30, 167, 255, 0.25);
  background: rgba(8, 18, 45, 0.85);
  color: #ffffff;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* visibility toggled by JS — keeps layout stable */
  opacity: 1;
  pointer-events: auto;
}

.testimonial-btn:hover {
  background: #1ea7ff;
  transform: scale(1.07);
}

.testimonial-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.testimonial-dots button.active {
  background: #1ea7ff;
  width: 24px;
  border-radius: 4px;
}
