* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

:root {
     --heading-color: #ff8800;
     --paragraph-color: #555555;
     --bodyBackground-color: #0D1D26;
     --conainerBackground_color: #16262f;
     --alltext-color: #fff;
         --rsw-bg:#f3f4f6;
    --rsw-card:#ffffff;
    --rsw-border:#e5e7eb;
    --rsw-text:#111827;
    --rsw-muted:#4b5563;
    --rsw-radius:8px;
}

body {
     /*background-color: var(--bodyBackground-color);*/
     font-family: sans-serif;
}
 

.rsw-body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  padding: 20px;
}

.rsw-rating-header {
  display: flex;
  width:100%;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto 0px auto;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rsw-rating-info {
  display: flex;
  align-items: center;
}

.rsw-rating-info img {
  width: 50px;
  margin-right: 15px;
}

.rsw-rating-text {
  display: flex;
  flex-direction: column;
}

.rsw-rating-stars {
  color: #f5b50a;
  font-size: 18px;
}

.rsw-rating-number {
  font-size: 14px;
  color: #555;
}

.rsw-write-review-btn {
  background: #1a73e8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* Slider container */
.rsw-review-slider-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.rsw-review-slider {
  display: flex;
  animation: rsw-scroll 30s linear infinite; /* faster */
}

.rsw-review {
  flex: 0 0 33.33%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 0 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rsw-review-header {
  font-size: 14px;
  color: #f5b50a;
  margin-bottom: 10px;
}

.rsw-review-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.rsw-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rsw-reviewer-info {
  display: flex;
  align-items: center;
}

.rsw-reviewer-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.rsw-reviewer-name {
  font-weight: bold;
  font-size: 14px;
  color: #555;
}

.rsw-reviewer-country {
  font-size: 12px;
  color: #999;
}

.rsw-review-time {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

/* Continuous scroll animation */
@keyframes rsw-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Tablet: 2 per view */
@media (max-width: 1024px) {
  .rsw-review {
    flex: 0 0 50%;
  }
}

/* Mobile: 1 per view */
@media (max-width: 600px) {
  .rsw-review {
    flex: 0 0 100%;
  }
}










 .template_details_container{
     width:100%;
     max-width:70%;
 }
 .template_feature_container{
     width:100%;
     max-width:30%;
 }
 @media (max-width: 767px) {

      .template_details_container{
     width:100%;
     max-width:100%;
 }
 .template_feature_container{
     width:100%;
     max-width:100%;
 }

    .testimonials_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.4rem;}


    .heading {
    font-size: 1.8rem !important;
    line-height: 2.8rem !important;
    }
    .sub_heading {
     font-size: 1.2rem !important;
    }

    .feature_heading {
    font-size: 1.2rem !important;
    line-height: 2.5rem !important;
    }

    .main_section{
     background-color: var(--bodyBackground-color) !important;
     padding: 1rem 1.4rem 0rem 1.4rem !important;
     display:flex !important;
     flex-direction: column;
    }
    .rsw-gallery {

    padding: 0rem 1.4rem 1.4rem 1.4rem !important;
    background: #0b1a29;
    }
    .main_section.title {
    padding: 2rem 1.4rem !important;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 1.5rem;}
}

  .rsw-faq{
    width:100%;
    max-width:100%;
    margin:0 auto;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    line-height:1.6;
    color:var(--rsw-muted);
  }

  .rsw-faq h2{
    color:#fff;
    margin:0 0 14px 0;
    font-size:24px;
    font-weight:700;
  }

  details.rsw-faq-item{
    background:var(--rsw-card);
    border:1px solid var(--rsw-border);
    border-radius:var(--rsw-radius);
    margin:12px 0;
    overflow:hidden;
  }

  details.rsw-faq-item > summary{
    list-style:none;
    cursor:pointer;
    padding:16px 56px 16px 16px;
    font-weight:700;
    color:var(--rsw-text);
    position:relative;
    user-select:none;
    outline:none;
  }

  details.rsw-faq-item > summary:focus-visible{
    box-shadow:0 0 0 3px rgba(59,130,246,.35) inset;
  }

  details.rsw-faq-item > summary::after{
    content:"+";
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    font-weight:900;
    color:#6b7280;
  }
  details[open].rsw-faq-item > summary::after{
    content:"–";
  }

  details.rsw-faq-item > summary:hover{
    background:#f9fafb;
  }

  details.rsw-faq-item > .rsw-answer{
    padding:0 16px 16px 16px;
    border-top:1px solid var(--rsw-border);
    color:var(--rsw-muted);
  }

  .rsw-answer ul{ margin:8px 0 0 20px; }
  .rsw-answer li{ margin:6px 0; }

.main_section {
     background-color: var(--bodyBackground-color) !important;
     padding: 2rem 1.4rem 0rem 1.4rem;
     /*display: grid;*/
     display: flex;
     grid-template-columns: 2.5fr 1fr;
     gap: 1.5rem;
}

.main_section.title {
     padding: 3rem 3.4rem;
     display: grid;
     grid-template-columns: 2.5fr 1fr;
     gap: 1.5rem;
}

.rsw-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0rem 3.4rem 3.4rem 3.4rem;
  background: #0b1a29; /* dark background for contrast */
}

.rsw-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rsw-gallery a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.rsw-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.rsw-heading {
    font-family: Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #000;
  }

  .rsw-slider {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 989px;
    margin: auto;
    background: #fff;
    padding: 0px 17px;
  }

  .rsw-slide-track {
    display: flex;
    width: calc(250px * 16);
    animation: rsw-scroll 25s linear infinite;
  }

  .rsw-slide {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .rsw-slide img {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .rsw-slide img:hover {
    transform: scale(1.1);
  }

  @keyframes rsw-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }









.slider_wrapper {
     position: relative;
     max-width: 100%;
     margin-bottom: 1.5rem;
     overflow: hidden;
     border-radius: 0.5rem;
}

input[type="radio"] {
     display: none;
}

.slider {
     overflow: hidden;
     width: 100%;
     aspect-ratio: 16 / 9;
}

.slides {
     display: flex;
     width: auto;
     transition: transform 0.5s ease-in-out;
}

.slides img {
     width: 100%;
     aspect-ratio: 16 / 9;
     object-fit: cover;
}

/* Slide control logic */
#slide1:checked~.slider .slides {
     transform: translateX(0%);
}

#slide2:checked~.slider .slides {
     transform: translateX(-100%);
}

#slide3:checked~.slider .slides {
     transform: translateX(-200%);
}

/* Dots */
.slider_nav {
     position: absolute;
     bottom: 1rem;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 1rem;
     z-index: 10;
}

.dot {
     width: 0.75rem;
     height: 0.75rem;
     background: #fff;
     border-radius: 50%;
     opacity: 0.5;
     cursor: pointer;
     transition: all 0.3s ease;
}

#slide1:checked~.slider_nav label[for="slide1"],
#slide2:checked~.slider_nav label[for="slide2"],
#slide3:checked~.slider_nav label[for="slide3"] {
     background: #707070;
     opacity: 1;
     transform: scale(1.2);
}


/***********Content Style Start***********/

.content_container {
     display: flex;
     flex-direction: column;
     gap: 2rem;
}

.heading {
     font-size: 2.8rem;
     color:#ff8800;;
     font-weight: 800;
     line-height: 2.8rem;
}

.sub_heading {
     font-size: 2rem;
     font-weight: 800;
     color: var(--alltext-color);
     line-height: 2rem;
}

.feature_heading {
     font-size: 1.6rem;
     font-weight: 700;
     color:#ff8800;
     line-height: 2.5rem;
}

.paragraph {
     font-size: 1rem;
     color: var(--alltext-color);
     font-weight: 500;
     line-height: 1.5rem;
}

.heading_text {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}

.icon_text {
     display: flex;
     align-items: center;
     column-gap: 0.4rem;
}

.star {
     color: rgb(255, 174, 0);
}

.points {
     display: flex;
     flex-direction: column;
     gap: 1.1rem;
}

/***********Content Style End***********/

/***********testimonials Style End***********/
.testimonials_wrapper {
     display: grid;
     grid-template-columns: repeat(2,1fr);
     gap: 1.4rem;
}

.testimonial_box {
     display: flex;
     flex-direction: column;
     gap: 2rem;
}

.testimonial {

     display: flex;
     align-items: center;
     column-gap: 1rem;
     padding: 1.4rem 1.5rem;
     background-color: var(--conainerBackground_color);
     border-radius: 0.6rem;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
          0 1px 3px rgba(0, 0, 0, 0.08);
     color: var(--alltext-color);
}

.testimonial_icon {
     font-size: 2.5rem;
}

.testimonial_text {
     font-size: 16px;
     font-weight: 500;
     line-height: 1.8rem;
}

/***********testimonials Style End***********/


/***********template feature section Style Start***********/

.template_feature_container {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}

.bar_line {
     width: 100%;
     height: 0.1rem;
     background-color: var(--paragraph-color);
}

.feature_box {
     width: 100%;
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     align-items: start;
     gap: 1.2rem;
     border-radius: 0.8rem;
     background-color: var(--conainerBackground_color);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
          0 1px 3px rgba(0, 0, 0, 0.08);
}

.feature_points {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}

.desc_heading {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--alltext-color);
}

.feature_icon {
     font-size: 1.5rem;
     color: var(--alltext-color);
     margin-bottom: -7px;
}

.widget {
     display: flex;
     flex-direction: column;
     gap: 0.7rem;
}

.legal_text_paragraph {
     font-size: 1rem;
     font-weight: 500;
     line-height: 1.8rem;
     color: var(--alltext-color);
     word-spacing: 0.2rem;
}

/***********template feature section Style End***********/