
/* ================================================ */
/* ------------------FAQs---WRAP-07---------------- */
/* ================================================ */


/* ========================== */
/* ------PROCESS------- */
/* ========================= */
/* .benefits-section {
  background: #121215;
  color: #fff;
  padding: 100px 0px;
}

.benefits-subtitle {
  color: #aaa;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.benefits-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFF;
  line-height: 1.3;
}

.benefits-desc {
  color: #ccc;
  font-size: 16px;
  max-width: 500px;
}

.btn-assist {
  background: #f73838;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 8px 20px ;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-assist:hover {
  background: #d62e2e;
  color: #fff;
}
.btn-assist .icon {
  background: #fff;
  color: #f73838;
  border-radius: 50%;
  width:40px;
  height:40px;
  font-size:20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin: 10px;
  padding: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.benefits-card img {
  width: 30px;
  height: 30px;
  filter: invert(32%) sepia(90%) saturate(6000%) hue-rotate(355deg) brightness(95%) contrast(105%);
}
.benefits-card h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.benefits-card:hover {
  background: #f73838;
  border-color: #f73838;
}

@media (max-width: 767px) {
  .benefits-title {
    font-size: 28px;
  }
  .benefits-desc {
    font-size: 14px;
  }
  .btn-assist {
    padding: 10px 20px;
    font-size: 14px;
  }
} */


    
.our-process-wrap {
  background: #121215;
  color: #fff;
    padding: 100px 0px;
}
.our-process-subtitle {
  color: #aaa;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 19.6px;
}
.our-process-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom:30px;
  line-height:60px;
  color: #fff;
 
}
.our-process-desc {
  color: #ccc;
  font-size: 16px;
  max-width: 500px;
}
.our-process-btn {
  background: #f73838;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.our-process-btn:hover {
  background: #d62e2e;
  color: #fff;
}
.our-process-btn-icon {
  background: #fff;
  color: #f73838;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-process-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  /* margin: 10px; */
  margin: 20px 0px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.our-process-card img {
  width: 50px;
  height: 50px;
}
.our-process-card h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.our-process-card:hover {
  background: #f73838;
  border-color: #f73838;
}
@media (max-width: 767px) {
  .our-process-wrap{
    padding: 50px 0px;
  }
  .our-process-title {
    font-size:40px;
    line-height: 40px;
  }
  .our-process-desc {
    font-size: 14px;
  }
  .our-process-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* ========================== */
/* ------PARTNER BRAND------- */
/* ========================= */
./* Section Title */
.partner-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Section Background */
.partner-section {
  background-image: url(https://kriyayogael.wpengine.com/wp-content/uploads/2023/07/big-patton-img-02.png);
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}

/* Partner Row (Flex Layout) */
.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Partner Column (Default – Desktop Large: 5 logos per row) */
.partner-col {
  flex: 1 1 calc(20% - 20px);
  max-width: calc(20% - 20px);
  display: none; /* hidden by default for load more functionality */
  background-color: #f8f9fa;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-col.show {
  display: flex; /* will be shown once JS adds .show */
}

/* Partner Logos */
.partner-logo {
  max-height: 80px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Tablet View (≤ 992px → 3 logos per row) */
@media (max-width: 992px) {
  .partner-col {
    flex: 1 1 calc(33.33% - 20px) !important; 
    max-width: calc(33.33% - 20px) !important;
  }
}

/* Mobile View (≤ 576px → 2 logos per row) */
@media (max-width: 576px) {
  .partner-col {
    flex: 1 1 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
  }

  .partner-logo {
    max-height: 60px; /* smaller logos for mobile */
  }

  a.our-process-btn {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 424px) {
      .our-process-card {
        width: 100%;
        display: inline-block;
        /*margin: 1%;*/
        vertical-align: top;
        height: 138px !important;
        /* margin-bottom: 13px; */
        padding: 18px;
    }

  .our-process-card img {
        max-width: 50px;
        margin-bottom: 10px;
    }
}

/*blog*/
  .rdsweb-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
  }

  .rdsweb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
    
  }

  .rdsweb-img-wrapper {
    position: relative;
    overflow: hidden;
  }

  .rdsweb-img-wrapper img {
    width: 100%;
        height: 224px !important;
    /*object-fit: cover;*/
    transition: 0.4s;
    display: block;
  }

  
  .rdsweb-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0.1) 0%,
      rgba(255,255,255,0.4) 50%,
      rgba(255,255,255,0.1) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease-in-out;
  }

  .rdsweb-img-wrapper:hover::after{
    left: 125%;
  }

  
  .rdsweb-date-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f44336;
    color: #fff;
    padding: 10px 15px;
    font-weight: 700;
    text-align: center;
    border-top-right-radius: 50px;
    z-index: 2;
  }

  .rdsweb-date-badge span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .rdsweb-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 290px
  }
@media (max-width: 576px) {
.rdsweb-body {
   
    height: 310px;
  }
  }
  .rdsweb-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
  }

  .rdsweb-meta i {
    color: #f44336;
    margin-right: 6px;
  }

  .rdsweb-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
  }

  .rdsweb-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  
  .rdsweb-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #f44336;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: auto;     
    max-width: max-content;
  }
  .rdsweb-btn::after {
    content:"";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-25deg);
  }
  .rdsweb-btn:hover::after {
    left: 120%;
    transition: left 0.7s ease-in-out;
  }
  .rdsweb-btn:hover {
    background: #d32f2f;
    color: #fff;
  }
  .stretched-link {
    position: static; 
  }

  .rdsweb-carousel .owl-nav button {
    background:#f44336 !important;
    color:#fff !important;
    border-radius:50% !important;
    width:40px;
    height:40px;
    font-size:20px !important;
    margin:0 5px;
    transition:0.3s;
  }
  .rdsweb-carousel .owl-nav button:hover {
    background:#d32f2f !important;
  }
  .rdsweb-carousel .owl-dots .owl-dot span {
    width:12px;
    height:12px;
    background:#ccc;
    border-radius:50%;
    display:inline-block;
    margin:5px;
    transition:0.3s;
  }
  .rdsweb-carousel .owl-dots .owl-dot.active span {
    background:#f44336;
    transform:scale(1.2);
  }
  
  
  .rdsfaq-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}
.rdsfaq-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  color: #083060;
}
.rdsfaq-subtitle {
  font-size: 16px;
  color: #555;
}
.rdsfaq-contact-btn {
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  background: transparent;
  transition: all 0.5s ease;
}
.rdsfaq-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color:#083060;
  transition: width 0.4s ease;
  z-index: 1;
}
.rdsfaq-contact-btn:hover::before { width: 100%; }
.rdsfaq-contact-btn .rdsfaq-icon-box,
.rdsfaq-contact-btn .rdsfaq-text-box {
  position: relative;
  z-index: 2;
}
.rdsfaq-icon-box {
  /* background-color: transparent; */
  color: #000;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: color 0.4s;
}
.rdsfaq-text-box {
  background-color: transparent;
  padding: 20px 28px;
  font-weight: 600;
  color: #000;
  transition: color 0.4s;
}
.rdsfaq-contact-btn:hover .rdsfaq-icon-box,
.rdsfaq-contact-btn:hover .rdsfaq-text-box { color: #fff; }
.rdsfaq-item {
  background-color: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #c8d0d9;
  margin-bottom: 20px;
}
.rdsfaq-button {
  background-color: #f8f8f8;
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
  /* padding: 30px 40px; */
  padding: 10px 20px;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}
/* ====================== */
.rdsfaq-image-wrap {
  margin-top: 30px;   
  text-align: center; 
}

.rdsfaq-image-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 12px; 
}
/* By default image visible */
.rdsfaq-image-wrap {
  display: block;
}

/* Mobile screens pe hide kar do */
@media (max-width: 767px) {
  .rdsfaq-image-wrap {
    display: none;
  }
}



/* ====================== */
.rdsfaq-button:focus { outline: none; box-shadow: none; }
.rdsfaq-button::after { display: none; }

.rdsfaq-toggle {
  /* width: 56px;
  height: 56px; */
   width: 35px;
  height: 35px;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 1px solid #000;
}
.rdsfaq-toggle:hover {
  background-color: #000;
  color: #fff;
}
.rdsfaq-toggle-shadow {
  border: 5px solid #ddd;
  border-radius: 15px;
}

.rdsfaq-body {
  font-size: 16px;
  color: #444;
  padding: 0 22px 18px;
}

@media (max-width: 767px) {
  .rdsfaq-title {         font-size: 60px;
        font-weight: 700;
        line-height: 70px; }
        .rdsfaq-subtitle {
    font-size: 24px;
    
    line-height: 35px;
    font-weight: 500;
}
  .rdsfaq-button { font-size: 20px; padding: 20px; }
  .rdsfaq-body { padding: 0 20px 20px; }
}

