  *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: 'Poppins', sans-serif;
    
      overflow-x:hidden;
    }
.row{
    --bs-gutter-x:1.5rem;
    margin-right:0;
    margin-left:0;
}
    .top-marquee{
      background:linear-gradient(269deg, #8a0c12, #8a0c12, #000000);
      color:#fff;
      padding:10px 0;
      font-weight:600;
      white-space:nowrap;
      overflow:hidden;
      position:relative;
      border-bottom:2px solid #fff;
    }

    .top-marquee .marquee-content{
      display:inline-block;
      animation: marquee 24s linear infinite;
    }

    @keyframes marquee{
      0%{
        transform:translateX(100%);
      }
      100%{
        transform:translateX(-100%);
      }
    }
	.logo-section{
      padding: 10px 0;
      background: #f5f5f5;
    }

    .logo-box{
      
      padding: 10px;
      border-radius: 15px;
      text-align: center;
      
    }
 

    .logo-box img{
      width: 100%;
      
      height: auto;
      object-fit: contain;
    }
 .blink-section{
      background:#8a0c12;
      padding: 10px;
      text-align: center;
    }

    .blink-text{
      color: #fff;
      font-size: 25px;
      font-weight: bold;
      text-transform: uppercase;
      animation: blink 1s infinite;
      letter-spacing: 1px;
	  font-family: serif;
    }

    @keyframes blink{
      0%{
        opacity: 1;
      }
      50%{
        opacity: 0;
      }
      100%{
        opacity: 1;
      }
    }

    @media(max-width:768px){
      .blink-text{
        font-size: 18px;
      }
    }
	
 .hero-section1{
       
      position:relative;
      background:#fff;
      display:flex;
      align-items:center;
      padding:60px 0;
    }
 
    .tag-line{
      display:inline-block;
      background:#8a0c12;
      color:#ffb400;
      padding:12px 28px;
      border-radius:6px;
      font-size:22px;
      font-weight:700;
      margin-bottom:25px;
      box-shadow:0 5px 15px rgba(0,0,0,0.4);
    }

    .hero-content1{
      position:relative;
      z-index:2;
      color:#fff;
    }

    .hero-content1 h1{
      font-size:60px;
      font-weight:800;
      line-height:1;
	  font-family: serif;
      margin-bottom:10px;
      text-transform:uppercase;
      letter-spacing:2px;
	  color:#8a0c12;
    }
   .hero-content1 h2{
      font-size:40px;
      font-weight:800;
      line-height:1;
      margin-bottom:30px;
      text-transform:uppercase;
      letter-spacing:2px;
	  color:#ffb400;
    }
    .hero-content1 p{
      font-size:18px;
      line-height:1.8;
      color:#000;
          font-family: serif;
    }
	.hero-content1 p strong{
      
      color:#8a0c12;
      
    }
  .hero-content1 ul li{
      font-size:18px;
      line-height:1.8;
      color:#fff;
      list-style: inside;
    }
    .btn-group-custom{
      display:flex;
      gap:20px;
      margin-top:40px;
      flex-wrap:wrap;
    }

    .btn-call{
      background:#ffb400;
      color:#000;
      padding:16px 35px;
      border-radius:10px;
      text-decoration:none;
      font-size:24px;
      font-weight:700;
      transition:0.3s ease;
      display:inline-flex;
      align-items:center;
      gap:12px;
    }

    .btn-call:hover{
      background:#fff;
      transform:translateY(-3px);
      color:#000;
    }

    .btn-whatsapp{
      background:#0a9c2f;
      color:#fff;
      padding:16px 35px;
      border-radius:10px;
      text-decoration:none;
      font-size:24px;
      font-weight:600;
      transition:0.3s ease;
      display:inline-flex;
      align-items:center;
      gap:12px;
    }

    .btn-whatsapp:hover{
      background:#13c144;
      transform:translateY(-3px);
      color:#fff;
    }

   .services-section{
      padding: 70px 0;
      background: linear-gradient(to right,#062b22,#0b3d2e);
    }

    .section-title{
      text-align: center;
      color: #fff;
      margin-bottom: 50px;
    }

    .section-title h2{
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-title p{
      color: #ddd;
      font-size: 17px;
    }

    .service-box{
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      transition: 0.4s;
      height: 100%;
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .service-box:hover{
      transform: translateY(-10px);
    }

    .service-image{
      overflow: hidden;
    }

    .service-image img{
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: 0.5s;
    }

    .service-box:hover img{
      transform: scale(1.1);
    }

    .service-content{
      padding: 25px;
      text-align: center;
    }

    .service-content h4{
      font-size: 24px;
      font-weight: 700;
      color: #0b3d2e;
      margin-bottom: 12px;
    }

    .service-content p{
      font-size: 15px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-btns{
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .call-btn{
      background: #0b3d2e;
      color: #fff;
      padding: 10px 22px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .call-btn:hover{
      background: #145c46;
      color: #fff;
    }

    .whatsapp-btn{
      background: #25D366;
      color: #fff;
      padding: 10px 22px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .whatsapp-btn:hover{
      background: #1ebc59;
      color: #fff;
    }
.service-section{
      padding: 60px 0;
      background:#fff;
    }

    .section-title{
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2{
      color: #8a0c12;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-title p{
      color: #000;
      font-size: 17px;
    }

    .service-box{
      background:#8a0c12;
      border-radius: 20px;
      overflow: hidden;
      transition: 0.4s;
      height: 100%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      position: relative;
    }

    .service-box:hover{
      transform: translateY(-10px);
    }

    .service-img{
      overflow: hidden;
    }

    .service-img img{
      width: 100%;
      
      object-fit: cover;
      transition: 0.5s;
    }

    .service-box:hover .service-img img{
      transform: scale(1.1);
    }

    .service-content{
      padding: 25px;
      text-align: center;
    }

    .service-content h3{
      font-size: 24px;
      font-weight: 700;
      
      color: #0d4d3d;
    }

    .service-content p{
      color: #fff;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .btn-box{
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .call-btn{
      background: #ff0000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .call-btn:hover{
      background: #000;
      color: #fff;
    }

    .whatsapp-btn{
      background: #25D366;
      color: #fff;
      padding: 10px 20px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .whatsapp-btn:hover{
      background: #128c4b;
      color: #fff;
    }

    @media(max-width:768px){

      .section-title h2{
        font-size: 30px;
      }

    }
    .whatsapp-float{
      position:fixed;
      bottom:25px;
      right:25px;
      width:70px;
      height:70px;
      border-radius:50%;
      background:#25d366;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:38px;
      text-decoration:none;
      box-shadow:0 8px 25px rgba(0,0,0,0.4);
      z-index:999;
      transition:0.3s ease;
    }

    .whatsapp-float:hover{
      transform:scale(1.1);
      color:#fff;
    }

    @media(max-width:1400px){
      .hero-content h1{
        font-size:62px;
      }

      .hero-content p{
        font-size:22px;
      }
 
    }

    @media(max-width:991px){
      .hero-section1{
        text-align:center;
      }

      .hero-content1 h1{
        font-size:52px;
      }

      .hero-content1 p{
        font-size:20px;
        margin:auto;
      }

      .btn-group-custom{
        justify-content:center;
      }
 
    }

    @media(max-width:576px){
      .hero-content h1{
        font-size:38px;
		
      }

      .hero-content p{
        font-size:17px;
        line-height:1.7;
		
      }

      .tag-line{
        font-size:16px;
        padding:10px 20px;
      }

      .btn-call,
      .btn-whatsapp{
        width:100%;
        justify-content:center;
        font-size:18px;
      }
 

      .bottom-strip{
        font-size:16px;
      }
    }

    /* =========================
       HERO SECTION
    ==========================*/

    .hero-section{
      
      position:relative;
      display:flex;
      align-items:center;
      text-align:center;
      padding:50px 0;
       
    }

    .hero-section::before{
      content:'';
      position:absolute;
      inset:0;
      background:#fff;
    }

    .main-heading{
      font-size:80px;
      font-weight:900;
      line-height:1;
      color:#8a0c12;
      text-transform:uppercase;
      font-style:italic;
      
      position:relative;
      z-index:2;
    }

    .sub-heading-box{
      background:#8a0c12;
      border-radius:15px;
      padding:20px 30px;
      max-width:1300px;
      margin:auto;
      position:relative;
      z-index:2;
    }

    .sub-heading-box h2{
      color:#ffb400;
	  font-family: serif;
      font-size:29px;
      margin:0;
      font-weight:500;
    }

    /* =========================
       STATS
    ==========================*/

    .stats-row{
      margin-top:20px;
      position:relative;
      z-index:2;
    }

    .stat-box{
      background:#8a0c12;
      backdrop-filter:blur(5px);
      border-radius:22px;
      padding:35px 20px;
      transition:0.3s;
      height:100%;
    }

    .stat-box:hover{
      transform:translateY(-6px);
      background:#000;
    }

    .stat-box h3{
      font-size:50px;
      color:#ffb400;
      font-weight:800;
      margin-bottom:10px;
    }

    .stat-box p{
      color:#fff;
      font-size:20px;
      margin:0;
    }

    /* =========================
       SERVICES SECTION
    ==========================*/

    .services-section{
      background:#f3f3f3;
      padding:90px 0;
    }

    .services-title{
      font-size:64px;
      font-weight:800;
      margin-bottom:50px;
      color:#000;
    }

    .service-card{
      background:#14532d;
      border-radius:20px;
      overflow:hidden;
      transition:0.35s;
      height:100%;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .service-card:hover{
      transform:translateY(-8px);
      box-shadow:0 20px 40px rgba(0,0,0,0.15);
    }

    .service-img{
      padding:12px;
      overflow:hidden;
    }

    .service-img img{
      width:100%;
     
      object-fit:cover;
      border-radius:18px;
      transition:0.4s;
    }

    .service-card:hover .service-img img{
      transform:scale(1.05);
    }

    .service-content{
      padding:15px 25px 35px;
      text-align:center;
    }

    .service-content h3{
      font-size:25px;
      color:#ffb400;
      font-weight:800;
      
    }
 
    .service-btn{
      background:#fff;
      color:#000;
      text-decoration:none;
      padding:14px 35px;
      border-radius:8px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:22px;
      font-weight:600;
      transition:0.3s;
    }

    .service-btn:hover{
      background:#ffb400;
      color:#000;
      transform:translateY(-3px);
    }
.islamic-services{
      padding:50px 0;
      background:
      linear-gradient(rgba(0,0,0,0.82),rgba(0,0,0,0.82)),
      url('images/bg.png');
      background-size:cover;
      background-position:center;
      position:relative;
      overflow:hidden;
    }

    .section-heading1{
      text-align:center;
      margin-bottom:60px;
    }

    .section-heading1 span{
      color:#fff;
      font-size:18px;
      font-weight:600;
      letter-spacing:2px;
      text-transform:uppercase;
    }

    .section-heading1 h2{
      color:#ffb400;
      font-size:48px;
      font-weight:700;
      margin-top:10px;
    }

    .service-card1{
      background:linear-gradient(rgba(0, 0, 0, 0.82), rgb(138 12 18)), url(images/bg1.png);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,0.12);
      border-radius:25px;
      overflow:hidden;
      transition:0.5s;
      height:100%;
      position:relative;
    }

    .service-card1:hover{
      transform:translateY(-12px);
      border-color:#d4af37;
    }

    .service-image1{
      overflow:hidden;
      position:relative;
    }

    .service-image1 img{
      width:100%;
      
      object-fit:cover;
      transition:0.6s;
    }

    .service-card1:hover .service-image img{
      transform:scale(1.12);
    }

    .service-content1{
      padding:30px 25px;
      text-align:center;
    }

    .service-icon1{
      width:75px;
      height:75px;
      background:#fff;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:-65px auto 20px;
      position:relative;
      z-index:2;
      box-shadow:0 5px 20px rgba(0,0,0,0.25);
    }

    .service-icon1 i{
      font-size:30px;
      color:#8a0c12;
    }

    .service-content1 h3{
      color:#ffb400;
      font-size:24px;
      font-weight:600;
      margin-bottom:15px;
    }

    .service-content1 p{
      color:#fff;
      font-size:15px;
      line-height:1.9;
      margin-bottom:25px;
    }

    .service-buttons{
      display:flex;
      justify-content:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .call-btn,
    .whatsapp-btn{
      padding:12px 24px;
      border-radius:50px;
      text-decoration:none;
      font-size:15px;
      font-weight:600;
      transition:0.4s;
    }

    @media(max-width:768px){

      .section-heading1 h2{
        font-size:34px;
      }

    }
    /* =========================
       BOTTOM STRIP
    ==========================*/

    .bottom-strip{
      background:#000;
      color:#fff;
      padding:15px 0;
      overflow:hidden;
      white-space:nowrap;
      font-size:22px;
      font-weight:700;
    }

    .bottom-strip span{
      display:inline-block;
      animation:marquee 20s linear infinite;
    }
	.strip-content {
      display:inline-block;
      animation:marquee 20s linear infinite;
    }

    /* =========================
       WHATSAPP FLOAT
    ==========================*/
 .phone-float{
      position:fixed;
      bottom:100px;
      right:20px;
      width:65px;
      height:65px;
      border-radius:50%;
      background:red;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:34px;
      text-decoration:none;
      z-index:999;
      box-shadow:0 10px 25px rgba(0,0,0,0.3);
    }

    .phone-float:hover{
      color:#fff;
      transform:scale(1.1);
    }
    .whatsapp-float{
      position:fixed;
      bottom:20px;
      right:20px;
      width:65px;
      height:65px;
      border-radius:50%;
      background:#25d366;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:34px;
      text-decoration:none;
      z-index:999;
      box-shadow:0 10px 25px rgba(0,0,0,0.3);
    }

    .whatsapp-float:hover{
      color:#fff;
      transform:scale(1.1);
    }

    /* =========================
       RESPONSIVE
    ==========================*/

    @media(max-width:1400px){

      .main-heading{
        font-size:75px;
      }

      .sub-heading-box h2{
        font-size:34px;
      }

      .stat-box h3{
        font-size:55px;
      }

      .stat-box p{
        font-size:24px;
      }

    }

    @media(max-width:991px){

      .hero-section{
        padding:80px 0;
      }

      .main-heading{
        font-size:55px;
      }

      .sub-heading-box h2{
        font-size:26px;
      }

      .stat-box h3{
        font-size:45px;
      }

      .stat-box p{
        font-size:22px;
      }

      .services-title{
        font-size:48px;
      }

      .service-content h3{
        font-size:30px;
      }

      .service-content p{
        font-size:18px;
      }

    }

    @media(max-width:576px){

      .main-heading{
        font-size:25px;
      }

      .sub-heading-box{
        padding:15px;
      }

      .sub-heading-box h2{
        font-size:18px;
        line-height:1.5;
      }

      .stat-box{
        padding:25px 15px;
      }

      .stat-box h3{
        font-size:38px;
      }

      .stat-box p{
        font-size:18px;
      }

      .services-title{
        font-size:38px;
      }

      .service-img img{
        height:280px;
      }

      .service-content h3{
        font-size:26px;
      }

      .service-content p{
        font-size:16px;
      }

      .service-btn{
        font-size:18px;
        padding:12px 25px;
      }

      .bottom-strip{
        font-size:14px;
      }

    }
/* =========================
   ABOUT SECTION
========================== */

.about-section{
  background:#f5f5f5;
  padding:100px 0;
}

.about-title{
  font-size:55px;
  font-weight:900;
  color:#111;
  margin-bottom:20px;
}

.about-content{
  text-align:center;
}

.about-content p{
  font-size:17px;
  line-height:1.9;
  color:#111;
  font-weight:500;
}

.about-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:#b00000;
  color:#fff;
  text-decoration:none;
  padding:16px 35px;
  border-radius:6px;
  font-size:28px;
  font-weight:700;
  margin-top:30px;
  transition:0.3s ease;
}

.about-btn:hover{
  background:#8b0000;
  color:#fff;
  transform:translateY(-3px);
}

.about-image img{
  width:100%;
  max-width:650px;
  object-fit:contain;
}

/* =========================
   RESPONSIVE
========================== */

@media(max-width:1400px){

  .about-title{
    font-size:55px;
  }

  .about-content p{
    font-size:24px;
  }

}

@media(max-width:991px){

  .about-section{
    text-align:center;
  }

  .about-title{
    font-size:42px;
  }

  .about-content p{
    font-size:20px;
    line-height:1.8;
  }

  .about-image{
    margin-top:40px;
  }

}

@media(max-width:576px){

  .about-section{
    padding:70px 0;
  }

  .about-title{
    font-size:32px;
    line-height:1.3;
  }

  .about-content p{
    font-size:16px;
    line-height:1.8;
  }

  .about-btn{
    font-size:18px;
    padding:12px 25px;
  }

}
/* =========================
   SPECIALIST SECTION
========================== */

.specialist-section{
  background:#68716b26;
  padding:90px 0;
}

.specialist-title{
  font-size:68px;
  font-weight:900;
  color:#111;
  margin-bottom:10px;
}

/* IMAGE BOX */

.specialist-img-box{
  border-radius:25px;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.specialist-img-box:hover{
  transform:translateY(-8px);
}

.specialist-img-box img{
  width:100%;
 
  object-fit:cover;
  transition:0.5s ease;
  display:block;
}

.specialist-img-box:hover img{
  transform:scale(1.04);
}

/* =========================
   RESPONSIVE
========================== */

@media(max-width:1400px){

  .specialist-title{
    font-size:55px;
  }


}

@media(max-width:991px){

  .specialist-section{
    padding:70px 0;
  }

  .specialist-title{
    font-size:42px;
  }

 

}

@media(max-width:576px){

  .specialist-section{
    padding:60px 0;
  }

  .specialist-title{
    font-size:32px;
  }

  .specialist-img-box{
    border-radius:18px;
  }


}
.custom-footer{
      background:#8a0c12;
      color:#fff;
      padding:60px 20px 28px;
    }

    .footer-logo{
    background:#fff;
    display:inline-block;
    padding:10px 18px;
    border-radius:10px;
    margin-bottom:25px;
}

.footer-logo img{
    max-width:420px;
    width:100%;
    height:auto;
    display:block;
}

    .footer-text{
      font-size:18px;
      line-height:1.8;
      max-width:520px;
    }
.footer-text strong{
	color: #ffb400;
}
    .footer-heading{
      font-size:32px;
      font-weight:700;
	  color:#ffb400;
      margin-bottom:25px;
      text-transform:uppercase;
    }

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .footer-links li{
      margin-bottom:18px;
      font-size:18px;
    }
   .footer-links li i{
     color: #ffb400;
    }
    .contact-box{
      font-size:18px;
	      color: #ffb400;
      font-weight:600;
      margin-top:10px;
    }
  .contact-box a{
      text-decoration:none;
	      color: #fff;
     
    }
    .contact-box i{
      margin-right:10px;
    }

    .social-icons{
      margin-top:20px;
    }

    .social-icons a{
      width:55px;
      height:55px;
      background:#fff;
      color:#000;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      margin-right:12px;
      font-size:28px;
      transition:0.3s;
      text-decoration:none;
    }

    .social-icons a:hover{
      background:#ffb400;
      color:#000;
      transform:translateY(-5px);
    }

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,0.15);
      margin-top:10px;
      padding-top:20px;
      text-align:center;
      font-size:16px;
    }

    .footer-bottom span{
      color:#ffb400;
      font-weight:700;
    }

    @media(max-width:991px){
 

      .footer-links li{
        font-size:18px;
      }

      .contact-box{
        font-size:22px;
      }

      .footer-bottom{
        font-size:18px;
      }
    }
	/* =========================
   IMAGE BANNER SECTION
========================== */
 

.banner-image img{
    width:100%;
  
    object-fit:cover;
    display:block;
}

/* OVERLAY */
 
/* Client Feedback Section CSS */

.client-feedback-section{
    padding:90px 0;
    background:#fff8f2;
}

.feedback-heading{
    margin-bottom:60px;
}

.feedback-heading span{
    display:inline-block;
    background:#d40000;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
    letter-spacing:1px;
}

.feedback-heading h2{
    font-size:44px;
    font-weight:800;
    color:#8a0c12;
    margin-bottom:15px;
}

.feedback-heading p{
    max-width:720px;
    margin:auto;
    color:#000;
    font-size:17px;
    line-height:1.8;
}

.feedback-box{
    background:#fff;
    padding:35px 30px;
    border-radius:25px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.feedback-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.feedback-box::before{
    content:"❝";
    position:absolute;
    top:20px;
    right:25px;
    font-size:70px;
    color:#8a0c12;
    font-weight:bold;
}

.client-info{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.client-img{
    width:85px;
    height:85px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #fff1e6;
    box-shadow:0 8px 20px rgba(255,102,0,0.15);
    flex-shrink:0;
}

.client-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.client-details h3{
    font-size:24px;
    font-weight:800;
    color:#8a0c12;
    margin-bottom:6px;
}

.client-details span{
    color:#000;
    font-size:15px;
    font-weight:600;
}

.client-details span i{
    margin-right:6px;
}

.feedback-box p{
    font-size:16px;
    color:#000;
    line-height:1.9;
    margin-bottom:25px;
}

.stars{
    color:#ffb400;
    font-size:18px;
}

/* Responsive CSS */

@media(max-width:991px){

    .feedback-heading h2{
        font-size:34px;
    }

    .client-details h3{
        font-size:22px;
    }

}

@media(max-width:767px){

    .client-feedback-section{
        padding:60px 0;
    }

    .feedback-heading h2{
        font-size:28px;
    }

    .feedback-heading p{
        font-size:15px;
    }

    .feedback-box{
        padding:30px 22px;
    }

    .client-img{
        width:70px;
        height:70px;
    }

    .client-details h3{
        font-size:20px;
    }

    .feedback-box p{
        font-size:15px;
    }

}
/* Section */
.why-section {
    background: #8a0c12;
    padding: 70px 0;
    text-align: center;
}

/* Heading */
.why-section h2 {
    color: #ffb400;
    margin-bottom: 50px;
	font-weight: bold;
}

/* Box */
.why-box {
    background: #000;
    padding: 25px 15px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

/* Icon */
.why-icon {
    font-size: 35px;
    color: #ffb400;
    margin-bottom: 10px;
}

/* Title */
.why-box h5 {
    color: #ffb400;
	font-weight: bold;
    margin-bottom: 10px;
}

/* Text */
.why-box p {
    color: #fff;
    font-size: 16px;
}

/* Hover */
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 5px 4px 0px #ffb400;
}