/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #08111F;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ----- GLASSMORPHISM & CARDS ----- */
.glass {
    background: rgba(16, 24, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7);
    border-color: rgba(138, 92, 246, 0.4);
}

.gradient-border {
    position: relative;
    background-clip: padding-box;
    border: 1px solid transparent;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ----- BUTTONS & GRADIENTS ----- */
.btn-gradient {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-gradient:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
    color: #fff;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 32px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #a855f7;
}

/* ----- NAVIGATION ----- */
.navbar {
    background: #ffffff;
    transition: background 0.4s ease, box-shadow 0.3s;
    padding: 16px 0;
}

.navbar.scrolled {
    background: #ffffff !important;
    color: #08111F;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.navbar .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #a855f7 !important;
}

.navbar-toggler {
    border: none;
    color: #fff;
}

/* ----- HERO SWIPER ----- */
.hero-swiper .swiper-slide {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 17, 31, 0.6);
    z-index: 1;
}

.hero-swiper .swiper-slide>div {
    position: relative;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shapes span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
    animation: float 15s infinite alternate;
}

/* ----- STATS ----- */
.stat-card {
    background: rgba(16, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: #a855f7;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}
/* testimonial */
.review-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 15px;
    background: #15151b;
}

.review-image img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
    object-position: center;
    transition: transform 0.4s ease;
}

.review-image:hover img {
    transform: scale(1.05);
}


/* Tablet */
@media (max-width: 991px) {
    .review-image {
        height: 320px;
    }
}


/* MOBILE
   Only 2 reviews will display
*/
@media (max-width: 575px) {

    .review-3,
    .review-4 {
        display: none;
    }

    .review-image {
        height: 260px;
    }

}

/* about */
/* ----- BREADCRUMB HERO ----- */
.breadcrumb-hero {
    padding: 160px 0 80px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80') no-repeat center center/cover;
    position: relative;
}

.breadcrumb-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    z-index: 1;
}

.breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}

/* ----- STATS, CARDS, TIMELINE ----- */
.stat-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: #a855f7;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

.value-card,
.team-card,
.process-card,
.value-item {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.value-card:hover,
.team-card:hover,
.process-card:hover,
.value-item:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.team-card img {
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.04);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid rgba(168, 85, 247, 0.3);
    padding-bottom: 40px;
}

.timeline-item:last-child {
    border-left: none;
}

.timeline-item .step {
    position: absolute;
    left: -16px;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.brand-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 4px;
    display: inline-block;
    transition: 0.3s;
}

.brand-badge:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    transform: scale(1.05);
}

/* floating shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-shapes span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent);
    animation: float 18s infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -40px) scale(1.2);
    }
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
    background: #0b0b0f;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff3f81;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-title span {
    background: linear-gradient(90deg, #ff3f81, #ff9d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    max-width: 720px;
    color: #9297a5;
    line-height: 1.8;
}

/* Industry Card */

.industry-card {
    height: 100%;
    padding: 30px 24px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.055),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.09);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow */

.industry-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ff3f81;
    filter: blur(80px);
    opacity: 0;
    top: -50px;
    right: -40px;
    transition: 0.4s ease;
}

.industry-card:hover::before {
    opacity: .25;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,63,129,.45);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

/* Icon */

.industry-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(255,63,129,.15),
        rgba(255,157,50,.12)
    );

    border: 1px solid rgba(255,255,255,.08);

    transition: all .4s ease;
}

.industry-icon i {
    font-size: 28px;
    background: linear-gradient(135deg,#ff3f81,#ff9d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Text */

.industry-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.industry-card p {
    color: #8f94a3;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile */

@media (max-width: 575px) {

    .industry-card {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .industry-card h4 {
        font-size: 16px;
    }

    .industry-card p {
        font-size: 13px;
    }

    .industry-icon {
        width: 55px;
        height: 55px;
    }

    .industry-icon i {
        font-size: 24px;
    }
}

/* contact us */
/* ----- HERO BANNER ----- */
.contact-hero {
    padding: 160px 0 80px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80') no-repeat center center/cover;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* ----- CARDS, STATS, SOCIAL ----- */
.info-card,
.feature-card,
.social-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.info-card:hover,
.feature-card:hover,
.social-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card .btn-outline-light {
    margin-top: 12px;
}

/* KPI mini cards inside case study */
.kpi-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .case-hero {
        padding: 120px 0 60px;
    }
}

/* form validation */
.was-validated .form-control:invalid {
    border-color: #f97316;
}

/* ----- HERO BANNER ----- */
.case-hero {
    padding: 160px 0 80px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80') no-repeat center center/cover;
    position: relative;
}

.case-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    z-index: 1;
}

.case-hero .container {
    position: relative;
    z-index: 2;
}

/* ----- SERVICE CARDS, STATS, INDUSTRY ----- */
/* ----- HERO BANNER ----- */
.services-hero {
    padding: 160px 0 80px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80') no-repeat center center/cover;
    position: relative;
}

.services-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.service-card,
.stat-card,
.industry-card,
.case-card,
.testimonial-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover,
.stat-card:hover,
.industry-card:hover,
.case-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.service-card img {
    border-radius: 16px;
    transition: transform 0.6s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card:hover img {
    transform: scale(1.05);
}

.industry-card {
    text-align: center;
}

.industry-card i {
    font-size: 3rem;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-hero {
        padding: 120px 0 60px;
    }
}

/* ----- SERVICE CARDS / WHY US / CASE ----- */
.service-card,
.why-card,
.case-card {
    background: rgba(16, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.service-card:hover,
.why-card:hover,
.case-card:hover {
    transform: translateY(-12px);
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.service-card img {
    border-radius: 16px;
    transition: transform 0.6s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* ----- HERO BANNER ----- */
.why-hero {
    padding: 160px 0 80px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80') no-repeat center center/cover;
    position: relative;
}

.why-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.7);
    z-index: 1;
}

.why-hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .why-hero {
        padding: 120px 0 60px;
    }
}

/*=========================
      CASE STUDIES
=========================*/

.case-study-section {
    background: #0b0f19;
}

.sub-title {
    color: #ff4d8d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 15px;
}

.section-title h2 {
    color: #fff;
}

.section-title h2 span {
    background: linear-gradient(90deg, #ff4d8d, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-card {

    height: 100%;

    padding: 35px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);

    transition: .4s;

    position: relative;

    overflow: hidden;

}

.case-card:hover {

    transform: translateY(-12px);

    border-color: #ff4d8d;

    box-shadow: 0 20px 50px rgba(255, 77, 141, .20);

}

.case-card::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #ff4d8d, #ff9f43);

    transform: scaleX(0);

    transition: .4s;

}

.case-card:hover::before {

    transform: scaleX(1);

}

.case-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: rgba(255, 77, 141, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

}

.case-icon i {

    color: #ff4d8d;

    font-size: 32px;

}

.case-icon.orange {

    background: rgba(255, 159, 67, .12);

}

.case-icon.orange i {

    color: #ff9f43;

}

.case-icon.purple {

    background: rgba(139, 92, 246, .12);

}

.case-icon.purple i {

    color: #8b5cf6;

}

.case-tag {

    display: block;

    color: #9ca3af;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 20px;

}

.case-card h3 {

    color: #fff;

    font-size: 2rem;

    line-height: 1.3;

    margin-bottom: 20px;

    font-weight: 700;

}

.case-card p {

    color: #b6c2d1;

    line-height: 1.9;

    margin-bottom: 30px;

}

.case-footer {

    display: flex;

    gap: 12px;

}

.btn-gradient {

    background: linear-gradient(90deg, #ff4d8d, #ff9f43);

    color: #fff;

    border: none;

    border-radius: 50px;

    padding: 10px 22px;

}

.btn-gradient:hover {

    color: #fff;

    transform: translateY(-2px);

}

.btn-outline-light {

    border-radius: 50px;

    padding: 10px 22px;

}

@media(max-width:768px) {

    .case-card {

        padding: 25px;

    }

    .case-card h3 {

        font-size: 1.6rem;

    }

}

/* portfolio */
/*=========================
    Portfolio Section
=========================*/

.portfolio-section {
    background: #0b0f19;
    position: relative;
    overflow: hidden;
}

.sub-title {
    color: #ff4d8d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 15px;
}

.section-title h2 {
    color: #fff;
}

.section-title h2 span {
    background: linear-gradient(90deg, #ff4d8d, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-title {
    color: #fff;
    font-weight: 700;
}

.category-title i {
    color: #ff4d8d;
    margin-right: 10px;
}

.category-title.international i {
    color: #ff9f43;
}

/* brands */
.brands-section {
    background: #0b0f19;
    overflow: hidden;
}

.sub-title {
    color: #ff4d8d;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(90deg, #ff4d8d, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.reverse .marquee-content {
    animation: scrollReverse 30s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    margin: 0 15px;
    padding: 15px 35px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 600;
    transition: .35s;
    backdrop-filter: blur(10px);
}

.marquee-content span:hover {
    background: linear-gradient(135deg, #ff4d8d, #ff9f43);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 77, 141, .35);
}

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

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

.brand-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 18px 15px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    transition: .35s;
    backdrop-filter: blur(12px);
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, #ff4d8d, #ff9f43);
    color: #fff;
    box-shadow: 0 20px 45px rgba(255, 77, 141, .35);
    border-color: transparent;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 2.2rem;
    }

    .brand-card {
        min-height: 60px;
        font-size: 15px;
    }

}

.testimonial-section {
    background: #0b0f19;
}

.sub-title {
    color: #ff4d8d;
    font-weight: 700;
    letter-spacing: 2px;
}

.testimonial-section h2 {
    color: #fff;
}

.testimonial-section h2 span {
    background: linear-gradient(90deg, #ff4d8d, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-card {
    background: #15171f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 35px;
    transition: .4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff4d8d, #ff9f43);
    transition: .5s;
}

.testimonial-card:hover::before {
    left: 0;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    border-color: #ff4d8d;
    box-shadow: 0 20px 45px rgba(255, 77, 141, .20);
}

.quote-icon {
    font-size: 45px;
    color: #ff4d8d;
    margin-bottom: 20px;
    display: inline-block;
    transition: .4s;
}

.testimonial-card:hover .quote-icon {
    transform: rotate(180deg);
}

.testimonial-card p {
    color: #cbd5e1;
    line-height: 1.9;
    min-height: 170px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 20px 0;
}

.client-info {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
}

.client-info h5 {
    color: #fff;
    margin-bottom: 4px;
    transition: .3s;
}

.client-info span {
    color: #94a3b8;
}

.testimonial-card:hover h5 {
    color: #ff9f43;
}

/* ----- PROCESS ----- */
.process-section {
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.sub-title {
    color: #ff7a18;
    font-weight: 700;
    letter-spacing: 2px;
}

.process-section h2 {
    color: #fff;
}

.process-section h2 span {
    background: linear-gradient(90deg, #ff7a18, #ff3d81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff7a18, #ff3d81);
    z-index: 0;
}

.process-box {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
    height: 100%;
}

.process-box:hover {
    transform: translateY(-12px);
    border-color: #ff7a18;
    box-shadow: 0 20px 40px rgba(255, 122, 24, .25);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff7a18;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a18, #ff3d81);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    transition: .4s;
}

.process-box:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
}

.process-box h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-box p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:991px) {

    .timeline-line {
        display: none;
    }

    .process-box {
        margin-bottom: 25px;
    }

}

/* ----- TIMELINE ----- */
.timeline-item {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid rgba(168, 85, 247, 0.3);
    padding-bottom: 40px;
}

.timeline-item:last-child {
    border-left: none;
}

.timeline-item .step {
    position: absolute;
    left: -16px;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

ca

/* ----- FOOTER ----- */
.footer {
    background: #0a1424;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ----- MISC ----- */
.section-title {
    font-weight: 700;

    background: linear-gradient(135deg, #fff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.bg-dark-premium {
    background: #ff9f432e;
}

.bg-deep {
    background: #ff9f432e;
}

/* floating animation */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -40px) scale(1.2);
    }
}

/* responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-swiper .swiper-slide {
        min-height: 80vh;
    }
}