/* home sec s */

.home-hero {
  background: #000;
  min-height: 608px;
  display: flex;
  align-items: center;
  /* padding: 0 80px; */
}

/* Desktop default */
.hero-padding {
  padding-left: 80px;
  padding-right: 80px;
}

/* =========================
   HERO BOX
========================= */
.hero-container {
  background: #232323;
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.35);
}

/* =========================
   LEFT
========================= */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  color: #9b7cff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

/* =========================
   CENTER IMAGE
========================= */
.hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-robot {
  max-width: 608px;
  width: 100%;
  z-index: 2;
}

/* =========================
   RIGHT CONTENT
========================= */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.right-glow {
  position: absolute;
  top: -90px;
  right: 40px;
  width: 280px;
  height: 280px;
  background: linear-gradient(101.67deg,
      #93c3fd 0%,
      #7d86ed 45.89%,
      #5b63ed 100%);
  filter: blur(110px);
  opacity: 0.85;
  border-radius: 50%;
  z-index: 1;
}

.hero-info {
  position: relative;
  max-width: 360px;
  z-index: 2;
  /* margin-top: 198px; */
  /* background: red; */
  /* margin-bottom: -90px; */
}

.hero-desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  font-family: lato;
  margin-top: 198px;

}

/* .hero-desc p{
    margin-top: 198px;
    margin-bottom: 1rem;
  } */

/* =========================
   BUTTONS
========================= */
.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-btn-primary {
  background: linear-gradient(101.67deg, #93c3fd, #7d86ed, #5b63ed);
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  border: none;
  font-weight: 600;
}

.hero-btn-outline {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 14px 28px;
  border: none;
  font-weight: 600;
}

/* =========================
   TABLET (768px–1023px)
========================= */
/* @media (max-width: 1023px) {
    .hero-padding {
      padding-left: 32px;
      padding-right: 32px;
    } 

     .right-glow {
      width: 220px;
      height: 20px;
      filter: blur(90px);
    } 

     .hero-title {
      font-size: 36px;
    } 

    .hero-desc{
      margin-top: 0px;
    }
   } */


/* =========================
   TABLET (768px–1023px)
========================= */

@media(width:1024px) {
  .hero-robot {
    min-height: 520px;
  }

  .hero-desc {
    /*   margin-top: -200px;        remove desktop hack */
    font-size: 15px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 118px;
    height: 34px;
    font-size: 10px;
    padding: 5px;

  }

}

@media (max-width: 1023px) {

  .hero-padding {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Keep hero height balanced */
  .home-hero {
    min-height: 520px;
  }

  /* LEFT */
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  /* CENTER IMAGE */
  .hero-robot {
    max-width: 320px;
    height: 350px;
    /* justify-content: center; */
    margin-right: 60px;
  }

  /* RIGHT COLUMN */
  .hero-right {
    justify-content: center;
    align-items: center;
  }

  .hero-info {
    max-width: 200px;
    margin-right: -390px;

  }

  .hero-desc {
    margin-top: -200px;
    /* remove desktop hack */
    font-size: 15px;
  }

  /* GLOW — keep it soft, not flat */
  .right-glow {
    width: 150px;
    /* height: 250px; */
    /* top: 60px; */
    bottom: 560px;
    right: 20px;
    filter: blur(90px);
    opacity: 0.8;
    margin-top: -400px;
  }

  .hero-actions {
    /* margin-top: 20px; */
    /* width: 118px; */
    /* padding: 12px; */
    /* height: 34px; */
    /* font-size: 14px; */
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 118px;
    height: 34px;
    font-size: 10px;
    padding: 5px;

  }
}



/* =========================
   MOBILE (<768px)
========================= */
@media (max-width: 767px) {
  .hero-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-container {
    padding: 24px;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    text-align: start;
    justify-content: start;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-center {
    margin: 32px 0;
  }

  .right-glow {
    display: none;
  }

  .hero-info {
    margin-top: 200px;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* HERO sec end */

/* site sec ss */
.site-settings-section {
  padding-right: 80px;
  padding-left: 80px;
  color: #ffffff;
  background: #000;
  /* background: #2D324A; */
}

/* =======================
   HEADER
======================= */

/* .header-site{
    height: 131px;
  } */

.settings-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: -42px;
}

.settings-desc {
  max-width: 1200px;
  color: #ffffff;
  margin-top: -34px;
}

/* .sglow {
    height: 100px;
  } */

/* =======================
   WRAPPER
======================= */
.settings-wrapper {
  background: #2d324a;
  border-radius: 32px;
  padding: 32px;

}

/* =======================
   LEFT PANEL
======================= */
.settings-block {
  background: #25293C;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;


}

.block-title {
  font-weight: 600;
  margin-bottom: 12px;
}

/* =======================
   SELECT TYPE (HORIZONTAL SCROLL)
======================= */
/* .type-scroll{
  /* display:flex; *
      display: grid;
  
    
    grid-template-columns: repeat(2, 1fr);
  gap:10px;
  overflow-x:auto;
  padding-bottom:12px;
}


.type-scroll::-webkit-scrollbar{
  height:6px;
}
.type-scroll::-webkit-scrollbar-track{
  background:#D9D9D9;
  border-radius:10px;
}
.type-scroll::-webkit-scrollbar-thumb{
  background:#787777;
  border-radius:10px;
} */

.type-scroll {
  display: grid;
  grid-auto-flow: column;
  /*  horizontal flow */
  grid-template-rows: repeat(2, auto);
  /*  2 rows */
  grid-auto-columns: minmax(239px, 1fr);
  gap: 10px;
  /* height: 180px; */
  height: 140px;
  /*  FIXED HEIGHT */
  overflow-x: auto;
  /*  BOTTOM SCROLLBAR */
  overflow-y: hidden;
  /*  NO SIDE SCROLL */

}

/* ===== HORIZONTAL SCROLLBAR STYLE ===== */
.type-scroll::-webkit-scrollbar {
  height: 6px;
  /* padding: 10px; */

}

.type-scroll::-webkit-scrollbar-track {
  background: #D9D9D9;
  border-radius: 10px;

}

.type-scroll::-webkit-scrollbar-thumb {
  background: #787777;
  border-radius: 10px;
}


.option-card {
  /* min-width:276px; */
  height: 56px;
  font-family: lato;
  background: #2f3550;
  border-radius: 8px;
  padding: 8px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;

  display: flex;
  gap: 5px;
  align-items: start;
}

.option-card input {
  display: none;
}

.option-card.active {
  border-color: #2F80FF;
}

.option-card.active::after {
  content: "✔";
  position: absolute;
  top: 10px;
  right: 12px;

  color: #3ad17a;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* =======================
   FONT SELECT
======================= */
/* .dark-select {
    background: #2f3550 !important;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 12px;
    appearance: auto;
    font-family: lato;
  } */


.dark-select {
  width: 100%;
  background-color: #fff;
  /* #24293f !important; */
  color: #24293f !important;

  border: 2px solid #3b82f6;
  border-radius: 14px;

  padding: 14px 44px 14px 16px;
  font-family: 'Special Elite', monospace;

  appearance: auto;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
}

/* Hide IE arrow */
.dark-select::-ms-expand {
  display: none;
}

/* Font Awesome dropdown icon */
.select-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 16px;
  pointer-events: none;
}

/* 
   COLORS
 */
.color-row {
  display: flex;
  gap: 10px;
}

.color-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  border: 2px solid transparent;
}

.color-item.active {
  border-color: #6c7cff;
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

/* =======================
   PAGES (CIRCLE RADIO)
======================= */
.page-chip {
  background: #2f3550;
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;

  font-family: lato;

}

.page-chip input {
  accent-color: #6c7cff;
}

/* scroll wrapper */
.pages-scroll-x {
  height: 160px;
  /* fits 3 rows clean */
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}

/* horizontal grid */
.pages-grid {
  display: grid;
  grid-auto-flow: column;
  /* ➜ left → right */
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;

  width: max-content;
  /* force horizontal scroll */
}

/* normal chip */
/* .page-chip{
  background: #2f3550;
  padding: 8px 14px;
  border-radius: 12px;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;

  display: flex;
  align-items: center;
} */

/* tall (details) chips */


/* scrollbar */
.pages-scroll-x::-webkit-scrollbar {
  height: 6px;
}

.pages-scroll-x::-webkit-scrollbar-track {
  background: #D9D9D9;
  border-radius: 10px;
}

.pages-scroll-x::-webkit-scrollbar-thumb {
  background: #787777;
  border-radius: 10px;
}

/* =======================
   RIGHT PANEL
======================= */
.preview-panel {
  /* height: 100%; */
  /* height: 709px; */
  background: #25293C;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
}

.preview-box {
  /* background: #25293C; */
  border-radius: 24px;
  padding: 32px;
  margin-top: 50px;
  justify-content: space-between;
  height: 592px;
  gap: 32px;
}

.preview-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 50px;
}

.preview-desc {
  color: FFFFFF;
  /* #cbd0ff; */
  font-family: lato;

}

/*
   BUTTON
 */
.generate-btn {
  margin: 80px 0;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(101deg, #93C3FD, #7D86ED, #5B63ED);
  border: none;
}


@media (min-width: 1024px) {
  .site-settings-section {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* =========================
   TABLET (≤1023px & ≥768px)
========================= */
@media (max-width: 1023px) and (min-width: 768px) {
  .site-settings-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .settings-wrapper {
    padding: 24px;
  }

  .preview-box {
    padding: 24px;
  }



}

/* =========================
   MOBILE (≤767px)
========================= */
@media (max-width: 767px) {
  .site-settings-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .settings-title {
    font-size: 28px;
  }

  .settings-wrapper {
    padding: 20px;
  }

  .settings-block {
    padding: 16px;
  }

  .color-row {
    display: grid;
    overflow: hidden;
  }

  .preview-box {
    padding: 20px;
    margin-top: 24px;
  }

  .generate-btn {
    margin: 40px 0;
  }

  .sglow {
    max-width: 250px;
    /* height: 2px; */
  }
}

/* site sec ee */

/* feature sec ss */

.feature-section {
  background: #000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  padding: 64px 80px;
}


/* Feature Box */
.feature-box {
  max-width: 1280px;
  border-radius: 32px;
  padding: 40px;
  background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
  box-shadow: 0px 0px 32px 0px #FFFFFF40 inset;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item {
  display: flex;
  gap: 16px;
}

.timeline-item .step {
  font-size: 20px;
  color: #aaa;
  min-width: 40px;
}

.timeline-item h5 {
  margin: 0 0 4px;
  font-size: 20px;
}

.timeline-item p {
  margin: 0;
  color: #bdbdbd;
  font-size: 15px;
  font-family: lato;
}

/* Image */
.feature-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== RESPONSIVE PADDING ===== */

/* Tablet */
@media (max-width: 991px) {
  .feature-section {
    padding-left: 32px;
    padding-right: 32px;
  }

}

/* Mobile */
@media (max-width: 767px) {
  .feature-section {
    padding-left: 20px;
    padding-right: 20px;
  }



  .feature-box {
    padding: 24px;
  }
}

/* feature sec ee */
/* worksec s */

 .left-glow{
    width: 320px;
    height: 280px;

    z-index: 1;
    margin-top: -219px;
    left: -113px;
    position: absolute;
    background: linear-gradient(101.67deg,
        #93c3fd 0%,
        #7d86ed 45.89%,
        #5b63ed 100%);
    filter: blur(110px);
    opacity: 0.85;
    border-radius: 50%;
    rotate : 119.5deg ;
  
  }

  /* work sec e */

/* review sec s */
  .review-section {
    background: #000;
    padding: 0 80px;
    color: #fff;

  }

  .review-wrapper {
    max-width: 1280px;
    margin: 0 auto;
  }

  .desktop-view {
    overflow: hidden;
  }

  /* Header */
  .work-label {
    color: #9b7cff;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .work-title {
    font-size: 48px;
    margin: 12px 0;
    font-weight: 700;
  }

  .work-desc {
    max-width: 720px;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.6;
    font-family: lato !important;
  }

  /* Container */
  .testimonial-container {
    position: relative;
    margin-top: 60px;
  }

  /* Background container */
  .testimonial-bg {
    background: #E8E7DE;
    border-radius: 32px;
    position: static;
    overflow: hidden;
    height: 290px;
    max-width: 1280px;
  }

  /* Carousel Container */
  .testimonial-carousel-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  /* Main Grid Container */
  .testimonial-grid {
    display: flex;
    transition: transform 0.5s ease;
    width: 200%;
    height: 100%;
  }

  /* Each Slide (contains 4 cards in 2x2 grid) */
  .testimonial-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
    width: 50%;
    /* max-width: 1104px; */
    flex-shrink: 0;
    padding: 0 12px;
    align-content: center;

  }

  /* Card */
  .testimonial-card {
    background: #232323;
    border-radius: 24px;
    padding: 12px;
    color: #fff;
    margin-top: -20px;
    min-height: 180px;


    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  /* Image */
  .user-avatar {
    flex-shrink: 0;
  }

  .user-img {
    width: 121px;
    height: 132px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }

  /* Text */
  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e0e0e0;
    font-family: lato;
  }

  .testimonial-card h6 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 600;
  }

  .testimonial-card span {
    font-size: 14px;
    color: #aaa;
    font-family: lato;
  }

  /* Carousel Controls */
  .carousel-controls-custom {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  /* =========================
   INDICATORS CONTAINER
========================= */
  #carouselIndicators,
  .carousel-indicators-custom {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* =========================
   DOT BUTTON
========================= */
  .indicator-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #6c7cff;
    /* white border */
    cursor: pointer;
    transition: all 0.3s ease;
    /* overflow: visible; */
  }

  /* ACTIVE = BLUE FILL */
  .indicator-dot.active {
    background-color: #6c7cff;
    /* BLUE */
    border-color: #fff;
    transform: scale(1.2);
  }

  /* =========================
   ARROW BUTTON
========================= */
  .indicator-arrow {
    background: none;
    border-radius: 50px;
    border: none;
    font-size: 25px;
    color: #6c7cff;
    /* same BLUE as active dot */
    cursor: pointer;
    padding-left: 6px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .indicator-arrow:hover {
    transform: translateX(3px);
    opacity: 0.85;
  }




  /* Responsive */

  /* Tablet */
  @media (max-width: 1199px) {
    .review-section {
      padding: 0 32px;
    }
  }

  /* Tablet */
  @media (min-width: 768px) and (max-width: 991px) {
    .desktop-view {
      overflow: hidden;
    }

    .testimonial-bg {
      height: 290px;
    }

    .testimonial-slide {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      /* padding: 0 12px; */
      overflow: visible;
    }

    .testimonial-card {
      height: auto;
      /* padding: 12px; */
      margin-top: -20px;
    }

    .testimonial-text {
      font-size: 10px;
    }

    .user-img {
      width: 60px;
      height: 60px;
    }
  }

  /* Mobile */
  @media (max-width: 767px) {
    .review-section {
      padding: 48px 20px;
    }

    .desktop-view {
      /* overflow: visible; */
      height: 600px;
    }

    /* Adjust background container height for mobile */
    .testimonial-bg {
      height: 420px;
      /* Increased height to show 2 cards */
      border-radius: 20px;

      padding: 0;
      /* Remove padding, use margin on cards instead */
    }

    /* Show only 2 cards per slide on mobile */
    .testimonial-slide {
      display: grid;
      grid-template-columns: (1, 1fr);
      gap: 16px;
      /* width: 50%; Each slide takes full width */
      padding: 0 16px;
      align-content: center;
      justify-content: center;
    }

    /* Show only 2 cards visible at a time */
    .testimonial-grid {
      width: 400%;
      /* 4 slides for mobile (2 cards per slide) */
    }

    .testimonial-slide {
      width: 50%;
      /* Each slide takes 25% of container (100% / 4) */
    }

    .testimonial-card {
      height: 150px;
      width: 350px;
      padding: 16px;
      margin-top: 0;
      border-radius: 16px;
    }

    .work-title {
      font-size: 10px;
    }

    /* Adjust card text for mobile */
    .testimonial-text {
      font-size: 10px;
      /* line-height: 1.5; */
    }

    .testimonial-card h6 {
      font-size: 10px;
      /* margin-bottom: 4px; */
    }

    .testimonial-card span {
      font-size: 10px;
    }

    /* Adjust avatar size for mobile */
    .user-img {
      width: 32px;
      height: 35px;
      border-radius: 12px;
    }

    /* Dots for mobile */
    .carousel-controls-custom {
      margin-top: 30px;
    }

    .carousel-indicators-custom {
      gap: 8px;
    }

    .carousel-indicators-custom .dot {
      width: 10px;
      height: 10px;
    }
  }

  /* Very small mobile devices */
  @media (max-width: 480px) {
    .testimonial-bg {
      height: 280px;
    }

    .testimonial-card {
      min-height: 140px;
      width: 350px;
      padding: 14px;
    }

    .testimonial-text {
      font-size: 10px;
    }

    .work-title {
      font-size: 32px;
    }

    .user-img {
      width: 48px;
      height: 48px;
    }
  }

  @media(max-width:425px) {
    .testimonial-card {
      min-height: 140px;
      width: 300px;
      padding: 14px;
    }
  }

  @media(max-width:375px) {
    .testimonial-card {
      min-height: 140px;
      width: 250px;
      padding: 14px;
    }
  }

  /* review sec e */
