.elementor-52 .elementor-element.elementor-element-9e0e09a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:10px;--padding-right:0px;}.elementor-52 .elementor-element.elementor-element-9e0e09a.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-52 .elementor-element.elementor-element-a338860{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 1px;}.elementor-52 .elementor-element.elementor-element-11c6014{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-52 .elementor-element.elementor-element-2d5dda4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-52 .elementor-element.elementor-element-2d5dda4.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-52 .elementor-element.elementor-element-eb2ae0d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-52 .elementor-element.elementor-element-4e6eda6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-52 .elementor-element.elementor-element-6b959b7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-52 .elementor-element.elementor-element-9e0e09a{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-daa659d *//* --- Achievements & Partners Section --- */
.trc-achievements-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 80px 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Header */
.trc-ach-header {
  text-align: center;
  margin-bottom: 55px;
  padding: 0 20px;
}

.trc-ach-subtitle {
  color: #08a9f4;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.trc-ach-title {
  color: #052f63;
  font-size: 34px;
  font-weight: 900;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.3;
}

.trc-ach-desc {
  color: #5e6f82;
  font-size: 16px;
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Horizontal Stats Row */
.trc-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 70px auto;
  flex-wrap: wrap;
}

.trc-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 35px;
  border-right: 1px solid #e8eef5;
  flex: 1;
  justify-content: center;
}

.trc-stat-item:last-child {
  border-right: none;
}

.trc-stat-icon svg {
  width: 42px;
  height: 42px;
  stroke: #08a9f4;
  stroke-width: 1.5;
  fill: none;
}

.trc-stat-content {
  text-align: left;
}

.trc-stat-number {
  color: #08a9f4;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.trc-stat-text {
  color: #052f63;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 130px;
}

/* Infinite Logo Slider */
.trc-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trc-slider:before,
.trc-slider:after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.trc-slider:before {
  left: 0;
  background: linear-gradient(to right, #f8fbff, transparent);
}

.trc-slider:after {
  right: 0;
  background: linear-gradient(to left, #f8fbff, transparent);
}

.trc-slide-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trcLogoScroll 32s linear infinite;
}

.trc-slider:hover .trc-slide-track {
  animation-play-state: paused;
}

/* Enlarged Premium Logo Cards */
.trc-slide-track img {
  width: 260px;          /* Width increased */
  height: 110px;         /* Height increased for better visibility */
  object-fit: contain;
  margin: 0 15px;
  padding: 15px 30px;    /* Adjusted padding to let logos breathe */
  background: #fff;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
  filter: grayscale(100%);
  opacity: .75;
  transition: .35s ease;
}

.trc-slide-track img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 169, 244, .12);
  border-color: #08a9f4;
}

@keyframes trcLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Mobile Responsiveness */
@media(max-width: 991px) {
  .trc-stat-item {
    flex: 0 0 50%;
    padding: 25px 0;
    border-right: none;
  }
  .trc-stat-item:nth-child(1), 
  .trc-stat-item:nth-child(2) {
    border-bottom: 1px solid #e8eef5;
  }
}

@media(max-width: 767px) {
  .trc-achievements-section { padding: 60px 0; }
  .trc-ach-title { font-size: 26px; }
  .trc-ach-desc { font-size: 15px; margin-bottom: 20px; }
  
  .trc-stat-item {
    flex: 0 0 100%;
    border-bottom: 1px solid #e8eef5;
    padding: 30px 0;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .trc-stat-item:last-child {
    border-bottom: none;
  }
  .trc-stat-content {
    text-align: center;
  }
  
  .trc-slider:before,
  .trc-slider:after {
    width: 40px;
  }
  
  /* Mobile Logo Size Adjusted */
  .trc-slide-track img {
    width: 200px;
    height: 85px;
    padding: 12px 20px;
    margin: 0 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-863d91f */.trc-services,
.trc-services * {
  box-sizing: border-box;
  font-family: "Inter","Poppins",Arial,sans-serif;
}

.trc-services {
  background: #ffffff;
  padding: 75px 60px;
}

.trc-services-head {
  text-align: center;
  margin-bottom: 36px;
}

.trc-services-head span {
  color: #00A2F2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .8px;
}

.trc-services-head h2 {
  color: #002656;
  font-size: 34px;
  line-height: 1.25;
  margin: 8px 0 0;
  font-weight: 900;
  position: relative;
}

.trc-services-head h2::after {
  content: "";
  width: 55px;
  height: 3px;
  background: #00A2F2;
  border-radius: 20px;
  display: block;
  margin: 12px auto 0;
}

.trc-services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.trc-service-card {
  background: #ffffff;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  min-height: 190px;
  box-shadow: 0 8px 25px rgba(0,38,86,0.06);
  transition: .35s ease;
}

.trc-service-card:hover {
  border-color: rgba(0,162,242,.65);
  box-shadow: 0 0 0 3px rgba(0,162,242,.12), 0 18px 45px rgba(0,162,242,.22);
  transform: translateY(-7px);
}

.trc-service-icon svg {
  width: 64px;
  height: 64px;
  stroke: #00A2F2;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: .35s ease;
}

.trc-service-card:hover .trc-service-icon svg {
  stroke: #002656;
  transform: scale(1.07);
}

.trc-service-card h3 {
  color: #002656;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
}

.trc-service-card p {
  color: #40506b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.trc-service-card a {
  color: #00A2F2;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .3s ease;
}

.trc-service-card a:hover {
  color: #002656;
  gap: 14px;
}

.trc-services-btn-wrap {
  text-align: center;
  margin-top: 36px;
}

.trc-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #002656;
  color: #ffffff !important;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 800;
  transition: .3s ease;
}

.trc-view-all:hover {
  background: #00A2F2;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media(max-width:991px){
  .trc-services {
    padding: 60px 22px;
  }

  .trc-services-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:650px){
  .trc-services-head h2 {
    font-size: 27px;
  }

  .trc-services-grid {
    grid-template-columns: 1fr;
  }

  .trc-service-card {
    grid-template-columns: 60px 1fr;
    padding: 26px 22px;
  }

  .trc-service-icon svg {
    width: 52px;
    height: 52px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-70a8c06 */.trc-process,
.trc-process * {
  box-sizing: border-box;
  font-family: "Inter","Poppins",Arial,sans-serif;
}

.trc-process {
  background: #ffffff;
  padding: 75px 60px;
  text-align: center;
}

.trc-process-head span {
  color: #00A2F2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .8px;
}

.trc-process-head h2 {
  color: #002656;
  font-size: 34px;
  line-height: 1.25;
  margin: 8px 0 0;
  font-weight: 900;
}

.trc-process-head h2::after {
  content: "";
  width: 55px;
  height: 3px;
  background: #00A2F2;
  border-radius: 20px;
  display: block;
  margin: 14px auto 0;
}

.trc-process-wrap {
  max-width: 1180px;
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 35px;
  position: relative;
}

.trc-process-wrap::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 12%;
  right: 12%;
  border-top: 2px dotted rgba(0,162,242,.45);
  z-index: 0;
}

.trc-process-step {
  position: relative;
  z-index: 1;
  padding: 0 15px 20px;
  transition: .35s ease;
}

.trc-step-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.trc-step-icon {
  width: 95px;
  height: 95px;
  background: #002656;
  border: 5px solid #00A2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,38,86,.18);
  transition: .35s ease;
}

.trc-step-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trc-step-num {
  color: #00A2F2;
  font-size: 20px;
  font-weight: 900;
}

.trc-process-step h3 {
  color: #002656;
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 18px;
}

.trc-process-step p {
  color: #52627a;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 220px;
}

/* Hover outer glow */
.trc-process-step:hover {
  transform: translateY(-8px);
}

.trc-process-step:hover .trc-step-icon {
  background: #00A2F2;
  border-color: #002656;
  box-shadow: 0 0 0 8px rgba(0,162,242,.14), 0 18px 45px rgba(0,162,242,.35);
}

.trc-process-step:hover .trc-step-num {
  color: #002656;
}

/* Responsive */
@media(max-width:991px){
  .trc-process {
    padding: 60px 22px;
  }

  .trc-process-wrap {
    grid-template-columns: repeat(2,1fr);
    gap: 45px 25px;
  }

  .trc-process-wrap::before {
    display: none;
  }
}

@media(max-width:600px){
  .trc-process-head h2 {
    font-size: 27px;
  }

  .trc-process-wrap {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .trc-step-top {
    margin-bottom: 18px;
  }
}
.trc-step-icon {
  position: relative;
  overflow: visible;
}

.trc-step-icon svg {
  position: relative;
  z-index: 2;
}

.trc-rotate-ring {
  position: absolute;
  width: 112%;
  height: 112%;
  border: 3px dashed #00A2F2;
  border-radius: 50%;
  animation: trcRotateRing 8s linear infinite;
  z-index: 1;
}

.trc-process-step:hover .trc-rotate-ring {
  animation-duration: 3s;
  box-shadow: 0 0 22px rgba(0,162,242,0.6);
}

@keyframes trcRotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.trc-process {
  position: relative;
}

/* Bottom clean separator line */
.trc-process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 38, 86, 0.15),
    transparent
  );
}
.trc-process {
  position: relative;
  padding-bottom: 60px; /* space line ke liye */
}

.trc-process::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e6e6e6; /* light grey */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f4b0b8d */.trc-testimonials,
.trc-testimonials * {
  box-sizing: border-box;
  font-family: "Inter","Poppins",Arial,sans-serif;
}

.trc-testimonials {
  background: #f3f8ff;
  padding: 70px 60px;
  border-radius: 18px;
  margin: 60px auto;
  max-width: 1400px;
  overflow: hidden;
}

.trc-testimonials-head {
  text-align: center;
  margin-bottom: 40px;
}

.trc-testimonials-head span {
  color: #00A2F2;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .8px;
}

.trc-testimonials-head h2 {
  color: #002656;
  font-size: 34px;
  font-weight: 900;
  margin: 8px 0 0;
}

.trc-testimonials-head h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00A2F2;
  display: block;
  margin: 14px auto 0;
  border-radius: 20px;
}

.trc-testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.trc-testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: trcTestimonialScroll 38s linear infinite;
}

.trc-testimonial-slider:hover .trc-testimonial-track {
  animation-play-state: paused;
}

.trc-testimonial-card {
  width: 390px;
  min-height: 230px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e6edf7;
  box-shadow: 0 10px 30px rgba(0,38,86,0.05);
  transition: 0.35s ease;
  flex: 0 0 auto;
}

.trc-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #00A2F2;
  box-shadow: 0 0 0 4px rgba(0,162,242,0.1),
              0 20px 50px rgba(0,162,242,0.25);
}

.trc-testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #243b63;
  margin: 0 0 25px;
  font-weight: 600;
}

.trc-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trc-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg,#002656,#00A2F2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.trc-client h4 {
  margin: 0;
  color: #002656;
  font-size: 16px;
  font-weight: 900;
}

.trc-client span {
  font-size: 14px;
  color: #6b778c;
}

@keyframes trcTestimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media(max-width:991px){
  .trc-testimonials {
    padding: 50px 20px;
    margin: 40px 20px;
  }

  .trc-testimonial-card {
    width: 340px;
  }
}

@media(max-width:600px){
  .trc-testimonials {
    padding: 45px 16px;
    border-radius: 14px;
  }

  .trc-testimonials-head h2 {
    font-size: 26px;
  }

  .trc-testimonial-track {
    gap: 18px;
    animation-duration: 34s;
  }

  .trc-testimonial-card {
    width: 300px;
    padding: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-33c0e91 */.trc-pricing,
.trc-pricing * {
  box-sizing: border-box;
  font-family: "Inter","Poppins",Arial,sans-serif;
}

.trc-pricing {
  background: #ffffff;
  padding: 75px 60px;
  text-align: center;
}

.trc-pricing-head {
  position: relative;
  margin-bottom: 35px;
}

.trc-pricing-head span {
  color: #00A2F2;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .8px;
}

.trc-pricing-head h2 {
  color: #002656;
  font-size: 34px;
  font-weight: 900;
  margin: 8px 0 0;
}

.trc-fee-badge {
  display: inline-block;
  margin-top: 12px;
  background: #00A2F2;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.trc-pricing-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: stretch;
}

.trc-price-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 13px;
  padding: 34px 34px 30px;
  box-shadow: 0 8px 25px rgba(0,38,86,.06);
  overflow: hidden;
  transition: .35s ease;
  animation: priceFadeUp .8s ease both;
}

.trc-price-card:nth-child(2) {
  animation-delay: .12s;
}

.trc-price-card:nth-child(3) {
  animation-delay: .24s;
}

.trc-price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,162,242,.65);
  box-shadow: 0 0 0 4px rgba(0,162,242,.10), 0 22px 55px rgba(0,162,242,.22);
}

.trc-price-card.featured {
  background: #002656;
  color: #ffffff;
  transform: scale(1.04);
  border-color: #002656;
  box-shadow: 0 20px 55px rgba(0,38,86,.28);
}

.trc-price-card.featured:hover {
  transform: scale(1.04) translateY(-10px);
  box-shadow: 0 0 0 4px rgba(0,162,242,.16), 0 25px 65px rgba(0,38,86,.36);
}

.popular-ribbon {
  position: absolute;
  top: 18px;
  right: -36px;
  background: #00A2F2;
  color: #ffffff;
  transform: rotate(45deg);
  width: 140px;
  padding: 7px 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
}

.trc-price-card h3 {
  color: #002656;
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 900;
}

.trc-price-card.featured h3 {
  color: #ffffff;
}

.trc-price-sub,
.trc-starting {
  color: #52627a;
  font-size: 14px;
  margin: 0 0 12px;
}

.trc-price-card.featured .trc-price-sub,
.trc-price-card.featured .trc-starting {
  color: rgba(255,255,255,.82);
}

.trc-price-card h4 {
  color: #002656;
  font-size: 32px;
  margin: 0 0 4px;
  font-weight: 900;
}

.trc-price-card.featured h4 {
  color: #00A2F2;
}

.trc-price-card strong {
  color: #002656;
  display: block;
  margin-bottom: 22px;
}

.trc-price-card.featured strong {
  color: #ffffff;
}

.trc-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: left;
}

.trc-price-card li {
  color: #243b63;
  font-size: 14px;
  margin-bottom: 13px;
  padding-left: 24px;
  position: relative;
}

.trc-price-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #00A2F2;
  font-weight: 900;
}

.trc-price-card.featured li {
  color: rgba(255,255,255,.9);
}

.trc-price-card a {
  display: block;
  border: 2px solid #002656;
  color: #002656 !important;
  text-decoration: none !important;
  padding: 13px 18px;
  border-radius: 5px;
  font-weight: 800;
  transition: .3s ease;
}

.trc-price-card a:hover {
  background: #00A2F2;
  border-color: #00A2F2;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.trc-price-card.featured a {
  background: #00A2F2;
  border-color: #00A2F2;
  color: #ffffff !important;
}

.trc-price-card.featured a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #002656 !important;
}

@keyframes priceFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:991px){
  .trc-pricing {
    padding: 60px 22px;
  }

  .trc-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .trc-price-card.featured,
  .trc-price-card.featured:hover {
    transform: none;
  }
}

@media(max-width:520px){
  .trc-pricing-head h2 {
    font-size: 27px;
  }

  .trc-price-card h4 {
    font-size: 28px;
  }
}/* End custom CSS */