.tp-hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: -35px;
}

/* Slide container */
.tp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tp-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Background image layer */
.tp-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.tp-slide.active .tp-slide-bg {
  animation: tpZoomBg 8s linear forwards;
}

@keyframes tpZoomBg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/* Overlay */
.tp-hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 55, 0.75);
  z-index: 2;
}

/* Stationary Content */
.tp-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.tp-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.tp-hero-content h1 span {
  color: #ff7a00;
}

    .tp-hero-content p {
        /*  max-width: 520px;*/
        max-width: 700px;
        margin: 20px 0 30px;
        opacity: 0.9;
    }

.tp-hero-buttons {
  display: flex;
  gap: 15px;
}
.abt-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Layout */
.abt-row {
  align-items: center;
}

/* IMAGE SIDE */
.abt-image-wrap {
  position: relative;
  max-width: 520px;
}

.abt-image-wrap img {
  width: 100%;
  border-radius: 12px;
}

/* EXPERIENCE BOX */
.abt-exp-box {
  position: absolute;
  top: -30px;
  left: -30px;
  background: #da251c;
  color: #fff;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
}

.abt-exp-box h3 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.abt-exp-box p {
  font-size: 14px;
  margin: 5px 0 0;
  line-height: 1.3;
}

/* CONTENT SIDE */
.abt-content {
  max-width: 540px;
}

.abt-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #da251c;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.abt-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c39;
  line-height: 1.2;
  margin-bottom: 20px;
}

.abt-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.abt-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.abt-list li {
  font-size: 15px;
  color: #0b1c39;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.abt-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #da251c;
  font-size: 14px;
}

/* BUTTON */
.abt-btn {
  display: inline-block;
  background: #da251c;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.abt-btn:hover {
  background: #c90511;
  color: #fff;
}
.centerHeading{
  display: block;
  text-align: center;
  margin-bottom: 30px;
  
}
.centerHeading h2{
 
  font-size: 42px;
    font-weight: 700;
    color: #0b1c39;
    line-height: 1.2;
 
}
.prd-section {
  padding: 80px 0;
  background: #ffffff;
}

.prd-card {
  border: 1px solid #eee;
  background: #fff;
  text-align: center;
  padding: 30px 20px;
  transition: 0.3s;
}

.prd-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.prd-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prd-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s ease-in-out;
}
 .prd-card:hover img{
  transform: scale(1.1);
}
.prd-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 25px 0 20px;
}

/* BUTTON */
.prd-btn {
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid #da251c;
  color: #da251c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.prd-btn:hover {
  background: #da251c;
  color: #fff;
}

.cta-section {
  position: relative;
  padding: 90px 0;
  background: url('../images/slide1.jpg') center center / cover no-repeat;
  color: #fff;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(160, 0, 0, 0.88);
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 16px;
  opacity: 0.95;
  max-width: 620px;
}

/* Button */
.cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.cta-btn {
  background: #1f1a17;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1f1a17;
  color: #fff;
}
.wcu-section {
  padding: 100px 0;
  background: #ffffff;
}

.wcu-row {
  align-items: center;
}

/* CONTENT */
.wcu-content {
  max-width: 540px;
}

.wcu-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #da251c;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.wcu-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 20px;
}

.wcu-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.wcu-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.wcu-list li {
  font-size: 15px;
  color: #111;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.wcu-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #da251c;
  font-size: 14px;
}

/* BUTTON */
.wcu-btn {
  display: inline-block;
  background: #da251c;
  color: #fff;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.wcu-btn:hover {
  background: #c90511;
  color: #fff;
}

/* IMAGE SIDE */
.wcu-image-wrap {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.wcu-main-img img {
  width: 100%;
  border-radius: 12px;
}

.wcu-small-img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
}

.wcu-small-img img {
  width: 100%;
  border-radius: 10px;
}

/* BADGE */
.wcu-badge {
  position: absolute;
  left: -30px;
  bottom: 40px;
  background: #da251c;
  color: #fff;
  width: 160px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
}

.wcu-badge h4 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.wcu-badge span {
  font-size: 14px;
  line-height: 1.3;
}

 
/* SECTION */
.tst-section {
  padding: 100px 0;
  background: #F8F8F8;
}

.tst-row {
  align-items: center;
}

/* IMAGE */
.tst-image-wrap img {
  width: 100%;
  border-radius: 12px;
}

/* CONTENT */
.tst-content {
  max-width: 100%;
  margin-left: auto;
}

.tst-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #da251c;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.tst-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 30px;
}

/* SLIDER */
.tst-slider {
  position: relative;
  overflow: hidden;
  /*margin-left: -70px;*/
}

/* SLIDES */
.tst-slide {
  display: none;
  background: #FFF;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: tstFade 0.5s ease;
}

.tst-slide.active {
  display: block;
}

@keyframes tstFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* STARS */
.tst-stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.tst-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tst-role {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 15px;
}

.tst-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* AVATAR */
.tst-avatar {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #da251c;
}

.tst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAVIGATION */
.tst-nav {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.tst-nav-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: #f1f1f1;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.tst-nav-btn:hover {
  background: #da251c;
  color: #fff;
}

 

/* Responsive */
@media (max-width: 992px) {

  .cta-section {
    padding: 70px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-action {
    justify-content: center;
    margin-top: 30px;
  }
    .prd-card {
    margin-bottom: 30px;
  }
    .abt-section {
    padding: 70px 0;
  }

  .abt-exp-box {
    top: -20px;
    left: -20px;
  }

  .abt-title {
    font-size: 34px;
  }

  .abt-content {
    margin-top: 40px;
  }
    .wcu-section {
    padding: 70px 0;
  }

  .wcu-title {
    font-size: 34px;
  }

  .wcu-image-wrap {
    margin-top: 50px;
  }

  .wcu-small-img {
    right: 0;
    bottom: -30px;
  }

  .wcu-badge {
    left: 0;
  }  .tst-section {
    padding: 70px 0;
  }

  .tst-title {
    font-size: 34px;
  }

  .tst-content {
    margin-top: 40px;
  }

  .tst-avatar {
    position: static;
    margin-top: 20px;
  }
}

 
/* Responsive */
@media (max-width: 768px) {
  .tp-hero-content h1 {
    font-size: 36px;
  }
}
