/* ===========================
   Page Title Section
=========================== */

.page-title {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  background-image: url("../img//Projects/Project1.jpg"); /* change image path */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Transparent Overlay */

.page-title .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* transparency */
}


/* Content */

.page-title .container {
  z-index: 2;
  text-align: center;
}


.page-title h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}


/* Breadcrumb */

.breadcrumbs ol {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.breadcrumbs li {
  color: #ffffff;
  font-size: 16px;
}


.breadcrumbs a {
  color: #F3920F;
  text-decoration: none;
  transition: 0.3s;
}


.breadcrumbs a:hover {
  color: #ffffff;
}


.breadcrumbs .current {
  color: #ffffff;
}


/* Responsive */

@media(max-width:768px){

  .page-title{
    height:250px;
  }

  .page-title h1{
    font-size:36px;
  }

}


/*--------------------------------
# About Section
---------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
.about-tag{
  display:inline-block;
  background:rgba(243,146,15,0.12);
  color:#F3920F;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:15px;
}

.about-title{
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:20px;
  color:#163300;
}

.about-title span{
  color:#F3920F;
  position:relative;
}

.about-intro{
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.about-img{
  transition:0.5s;
}

.about-img:hover{
  transform:scale(1.05);
}


.about ul li{
  margin-bottom:15px;
  transition:.3s;
}

.about ul li:hover{
  transform:translateX(8px);
}

.about ul li i{
  color:#F3920F;
}

/* ===========================
   Stats Section
=========================== */

.stats {
  padding: 80px 0;
  background: #f8faf7;
}


/* Stats Card */

.stats .stats-item {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}


/* Top Line Effect */

.stats .stats-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: #F3920F;
  transition: 0.4s;
}


.stats .stats-item:hover::before {
  width: 100%;
}


/* Hover */

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(243,146,15,0.25);
}


/* Number */

.stats .purecounter {
  display: block;
  font-size: 45px;
  font-weight: 800;
  color: #F3920F;
  margin-bottom: 10px;
}


/* Text */

.stats p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #333;
}


/* Responsive */

@media(max-width:768px){

.stats {
  padding: 50px 0;
}

.stats .purecounter {
  font-size: 36px;
}

}

/* ===========================
   Testimonials Section
=========================== */

.testimonials {
  padding: 80px 0;
  background: #f8faf7;
}


/* Card */

.testimonial-item {
  background: #ffffff;
  text-align: center;
  padding: 40px 35px;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}


/* Hover Effect */

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(243,146,15,0.25);
}


/* Top Border */

.testimonial-item::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:#F3920F;
}


/* Stars */

.testimonial-item .stars {
  margin-bottom:20px;
}


.testimonial-item .stars i {
  color:#F3920F;
  font-size:20px;
  margin:0 2px;
}


/* Review Text */

.testimonial-item p {
  font-size:16px;
  line-height:1.8;
  color:#555;
}


/* Quote Icons */

.quote-icon-left,
.quote-icon-right {
  color:#F3920F;
  font-size:22px;
}


/* Client Name */

.testimonial-item h3 {
  margin-top:25px;
  font-size:20px;
  font-weight:700;
  color:#0b4d3c;
}


.testimonial-item h4 {
  font-size:15px;
  color:#777;
}


/* Pagination */

.testimonials .swiper-pagination-bullet {
  width:12px;
  height:12px;
  background:#F3920F;
  opacity:0.5;
}


.testimonials .swiper-pagination-bullet-active {
  opacity:1;
}
