
        /* ===========================
   CMS BANNER UI START
=========================== */

        .cms-banner-section {
  background: radial-gradient(circle at left, #0b1b3a, #050d1f 70%);
  color: #fff;
  padding: 3rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */

.cms-banner-tag {
  display: inline-block;
  border: 1px solid #2d6cff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #6ea8ff;
  margin-bottom: 20px;
}

.cms-banner-title {
    color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cms-banner-title span {
  color: #3b82f6;
}

.cms-banner-desc {
  color: #9aa7c2;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTONS */

.cms-banner-buttons .btn {
  margin-right: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 500;
  color:#fff;
}

.cms-btn-primary {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
}

.cms-btn-primary:hover {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.cms-btn-outline {
  border: 1px solid #2d6cff;
  color: #fff;
}

.cms-btn-outline:hover {
  background: #2d6cff;
}

/* STATS */

.cms-banner-stats {
  display: flex;
  margin-top: 40px;
}

.cms-banner-stats div {
  margin-right: 40px;
}

.cms-banner-stats h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}

.cms-banner-stats p {
  font-size: 14px;
  color: #8fa3c7;
}

/* IMAGE */

.cms-banner-image {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.2), transparent);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.cms-banner-image img {
  border-radius: 15px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-banner-title {
    font-size: 38px;
  }

  .cms-banner-stats {
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .cms-banner-title {
    font-size: 30px;
  }

  .cms-banner-buttons .btn {
    display: block;
    margin-bottom: 10px;
  }
}

/* ===========================
   CMS SERVICES UI START
=========================== */

.cms-services-section {
  background: linear-gradient(180deg, #050d1f, #020817);
  padding: 3rem 0 0 0;
  color: #fff;
}

/* HEADER */

.cms-services-tag {
  color: #3b82f6;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cms-services-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cms-services-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #9aa7c2;
  line-height: 1.7;
}

/* CARD */

.cms-services-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  transition: 0.3s;
  height: 100%;
}

.cms-services-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

/* ICON */

.cms-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 20px;
}

/* TEXT */

.cms-services-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cms-services-card p {
  font-size: 14px;
  color: #9aa7c2;
  line-height: 1.6;
}

/* TECHNOLOGY */

.cms-tech {
  margin-top: 50px;
}

.cms-tech h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cms-tech-list span {
  display: inline-block;
  border: 1px solid #3b82f6;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.cms-tech-list span:hover {
  background: #3b82f6;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-services-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cms-services-title {
    font-size: 26px;
  }

  .cms-services-desc {
    font-size: 14px;
  }
}

/* ===========================
   CMS FEATURES UI START
=========================== */

.cms-features-section {
  background: linear-gradient(180deg, #020817, #020617);
  padding: 3rem 0 0 0;
  color: #fff;
}

/* HEADER */

.cms-features-tag {
  display: inline-block;
  font-size: 13px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.cms-features-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* CARD */

.cms-features-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  padding: 25px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.cms-features-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
  transform: translateY(-5px);
}

/* ICON */

.cms-features-icon {
  width: 55px;
  height: 55px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* TEXT */

.cms-features-card h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-features-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cms-features-title {
    font-size: 24px;
  }

  .cms-features-card {
    padding: 20px;
  }

  .cms-features-card h3 {
    font-size: 14px;
  }
}

/* ===========================
   CMS PROCESS UI START
=========================== */

.cms-process-section {
  background: linear-gradient(180deg, #020817, #020617);
  padding: 3rem 0 0 0;
  color: #fff;
}

/* HEADER */

.cms-process-tag {
  color: #3b82f6;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cms-process-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cms-process-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #9aa7c2;
}

/* CARD */

.cms-process-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  transition: 0.3s;
  height: 100%;
}

.cms-process-card:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

/* TOP (NUMBER + ICON) */

.cms-process-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cms-step {
  background: #3b82f6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  margin-right: 12px;
}

.cms-process-icon {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */

.cms-process-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cms-process-card p {
  font-size: 14px;
  color: #9aa7c2;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-process-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cms-process-title {
    font-size: 26px;
  }

  .cms-process-card {
    padding: 20px;
  }
}

/* ===========================
   CMS CTA UI START
=========================== */

.cms-cta-section {
  background: linear-gradient(180deg, #020817, #020617);
  padding: 3rem 0 0 0;
}

/* CTA BOX */

.cms-cta-box {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(37, 99, 235, 0.05)
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 60px 30px;
  color: #fff;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

/* TITLE */

.cms-cta-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* DESC */

.cms-cta-desc {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #9aa7c2;
  font-size: 16px;
  line-height: 1.6;
}

/* BUTTONS */

.cms-cta-buttons .btn {
  margin: 10px;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 500;
}

/* PRIMARY */

.cms-cta-btn-primary {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
}

.cms-cta-btn-primary:hover {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

/* OUTLINE */

.cms-cta-btn-outline {
  border: 1px solid #3b82f6;
  color: #fff;
}

.cms-cta-btn-outline:hover {
  background: #3b82f6;
}

/* RESPONSIVE */

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

@media (max-width: 576px) {
  .cms-cta-title {
    font-size: 22px;
  }

  .cms-cta-box {
    padding: 40px 20px;
  }
}

/* ===========================
   CMS WHY CHOOSE UI START
=========================== */

.cms-why-section {
  background: linear-gradient(180deg, #020817, #020617);
  padding: 3rem 0 0 0;
  color: #fff;
}

/* HEADER */

.cms-why-tag {
  color: #3b82f6;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.cms-why-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cms-why-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #9aa7c2;
}

/* CARD */

.cms-why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  transition: 0.3s;
  height: 100%;
}

.cms-why-card:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

/* ICON */

.cms-why-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3b82f6;
  margin-bottom: 20px;
}

/* TEXT */

.cms-why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cms-why-card p {
  font-size: 14px;
  color: #9aa7c2;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-why-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cms-why-title {
    font-size: 24px;
  }

  .cms-why-card {
    padding: 20px;
  }
}

/* ===========================
   CMS TESTIMONIAL UI START
=========================== */

.cms-testimonial-section {
  background: linear-gradient(180deg, #020817, #020617);
  padding: 3rem 0 0 0;
  color: #fff;
}

/* HEADER */

.cms-testimonial-tag {
  color: #3b82f6;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.cms-testimonial-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* CARD */

.cms-testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  transition: 0.3s;
  height: 100%;
}

.cms-testimonial-card:hover {
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

/* STARS */

.cms-stars {
  color: #3b82f6;
  margin-bottom: 15px;
  font-size: 16px;
}

/* TEXT */

.cms-testimonial-text {
  font-size: 14px;
  color: #9aa7c2;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* USER */

.cms-user {
  display: flex;
  align-items: center;
}

.cms-avatar {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 12px;
}

.cms-user h4 {
  font-size: 15px;
  margin: 0;
}

.cms-user span {
  font-size: 13px;
  color: #9aa7c2;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-testimonial-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cms-testimonial-title {
    font-size: 24px;
  }

  .cms-testimonial-card {
    padding: 20px;
  }
}

/* ===========================
   CMS FAQ UI START
=========================== */

.cms-faq-section {
  background: linear-gradient(180deg, #020817, #020617);
  padding: 3rem 0;
  color: #fff;
}

/* HEADER */

.cms-faq-tag {
  color: #3b82f6;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.cms-faq-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cms-faq-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #9aa7c2;
}

/* CARD */

.cms-faq-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

/* QUESTION */

.cms-faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}

.cms-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

.cms-faq-question:not(.collapsed)::after {
  content: "-";
}

/* ANSWER */

.cms-faq-answer {
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #9aa7c2;
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */

.cms-faq-card:hover {
  border-color: #3b82f6;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cms-faq-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cms-faq-title {
    font-size: 24px;
  }
}
