body {
  font-family: Arial, sans-serif;
}

/* HERO */
.hero {
  background: #0d0d0d;
  color: #fff;
  padding: 120px 0;
}

.hero h1 {
  font-size: 50px;
  font-weight: bold;
}

.btn-main {
  background: #6c4cff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
}

/* TRUST BAR */
.trust {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

/* FEATURES */
.features {
  padding: 80px 0;
}

.feature-box {
  padding: 20px;
}

/* DARK SECTION */
.dark-section {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 0;
}

/* TESTIMONIAL */
.testimonial {
  background: #f1f3ff;
  padding: 80px 0;
}

/* CTA */
.cta {
  background: #6c4cff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.video-container {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}
.overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.content-video {
  position: relative;
  z-index: 1;
  color: #fff;
}
.item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.line {
    width: 5px;
    height: 60px;
    background-color: #10b981;
    margin-right: 20px;
    border-radius: 3px;
}

.title {
    font-size: 37px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #f9fafb;
}

.subtitle {
    font-size: 18px;
    color: #9ca3af;
}

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



.sell-section {
    background: #020617;
    padding: 80px 0;
    color: #fff;
}

/* TITLE */
.sell-heading {
    font-size: 64px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}

/* IMAGE AREA */
.sell-images {
    position: relative;
    height: 450px;
}

.sell-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
}

.sell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* IMAGE POSITIONS */
.sell-img-a {
    width: 280px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 2;
}

.sell-img-b {
    width: 280px;
    height: 280px;
    top: 120px;
    left: 200px;
    z-index: 1;
}

@media (max-width: 480px) {
.sell-img-b {
    width: 200px;
    height: 200px;
    top: 120px;
    left: 200px;
    z-index: 1;
}
}

/* STEPS */
.sell-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.sell-num {
    color: #10b981;
    font-size: 18px;
    margin-right: 15px;
}

.sell-divider {
    width: 1px;
    height: 30px;
    background: #374151;
    margin-right: 20px;
}

.sell-text {
    font-size: 32px;
}

/* BUTTON */
.sell-btn {
    background: #e5e7eb;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sell-heading {
        font-size: 36px;
    }

    .sell-text {
        font-size: 22px;
    }

    .sell-images {
        height: 350px;
        margin-bottom: 40px;
    }

    .sell-img-b {
        left: 120px;
    }
}
/* SECTION */
.testi-section {
    /* background: linear-gradient(180deg, #022c22, #01281f); */
    padding: 100px 0;
    color: #fff;
}

/* WRAPPER */
.testi-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* IMAGE */
.testi-image {
    border-radius: 20px;
    overflow: hidden;
}

.testi-image img {
    max-width: 350px;
    height: auto;
    display: block;
}

/* CARD */
.testi-card {
    position: absolute;
    bottom: -280px;
    right: 0;
    max-width: 300px;
    padding: 40px;

    border-radius: 20px;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.1);
}

/* TEXT */
.testi-quote {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #e5e7eb;
}

.testi-name {
    font-weight: 600;
}

.testi-role {
    color: #9ca3af;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testi-card {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }

    .testi-quote {
        font-size: 20px;
    }
}
.modal-backdrop.show {
    background-color: #000;
    opacity: 1;
}
.btn-close {
    z-index: 10;
}
.testi-image img {
    max-width: 390px !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}