  *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: 'Poppins', sans-serif;
    
      overflow-x:hidden;
    }

    .top-marquee{
      background:linear-gradient(269deg, #14532D, #14532D, #ffe100);
      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 50s linear infinite;
    }

    @keyframes marquee{
      0%{
        transform:translateX(100%);
      }
      100%{
        transform:translateX(-100%);
      }
    }

    .hero-section1{
      min-height:100vh;
      position:relative;
      background:linear-gradient(#14532dd1, rgb(0 5 1 / 74%)), url(images/bg2.jpg) center / cover no-repeat;
      display:flex;
      align-items:center;
      padding:100px 0;
    }

    .hero-section1::before{
      content:'';
      position:absolute;
      inset:0;
      background:radial-gradient(circle at center, #00000096, transparent 60%);
    }

    .tag-line{
      display:inline-block;
      background:#ffe100;
      color:#000;
      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;
      margin-bottom:30px;
      text-transform:uppercase;
      letter-spacing:2px;
	  color:#ffe100;
    }

    .hero-content1 p{
      font-size:18px;
      line-height:1.8;
      color:#f3f3f3;
      max-width:850px;
    }

    .btn-group-custom{
      display:flex;
      gap:20px;
      margin-top:40px;
      flex-wrap:wrap;
    }

    .btn-call{
      background:#ffe100;
      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;
    }

    .abs-image-box{
      position:relative;
      z-index:2;
      border:3px solid rgba(255,255,255,0.8);
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 10px 40px rgba(0,0,0,0.6);
      background:#220000;
    }

    .abs-image-box img{
      width:100%;
      height:650px;
      object-fit:cover;
    }

    .bottom-strip{
      background:#ff0000;
      color:#fff;
      padding:15px 0;
      font-size:24px;
      font-weight:700;
      overflow:hidden;
      white-space:nowrap;
      border-top:3px solid #fff;
      border-bottom:3px solid #fff;
    }

    .bottom-strip .strip-content{
      display:inline-block;
      animation: marquee 30s linear infinite;
    }

    .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{
      min-height:100vh;
      position:relative;
      display:flex;
      align-items:center;
      text-align:center;
      padding:100px 0;
      background:
      linear-gradient(rgba(0,0,0,0.72), rgba(20,0,0,0.85)),
      url('images/bgas.jpg') center/cover no-repeat;
    }

    .hero-section::before{
      content:'';
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.25);
    }

    .main-heading{
      font-size:80px;
      font-weight:900;
      line-height:1;
      color:#ffe100;
      text-transform:uppercase;
      font-style:italic;
      margin-bottom:35px;
      position:relative;
      z-index:2;
    }

    .sub-heading-box{
      background:#fff;
      border-radius:15px;
      padding:20px 30px;
      max-width:1300px;
      margin:auto;
      position:relative;
      z-index:2;
    }

    .sub-heading-box h2{
      color:#14532D;
      font-size:29px;
      margin:0;
      font-weight:500;
    }

    /* =========================
       STATS
    ==========================*/

    .stats-row{
      margin-top:60px;
      position:relative;
      z-index:2;
    }

    .stat-box{
      background:rgba(255,255,255,0.12);
      backdrop-filter:blur(5px);
      border-radius:22px;
      padding:35px 20px;
      transition:0.3s;
      height:100%;
    }

    .stat-box:hover{
      transform:translateY(-6px);
      background:rgba(255,255,255,0.18);
    }

    .stat-box h3{
      font-size:50px;
      color:#ffe100;
      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%;
      height:380px;
      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:28px;
      color:#ffe100;
      font-weight:800;
      margin-bottom:18px;
    }

    .service-content p{
      font-size:18px;
      line-height:1.8;
      color:#fff;
      margin-bottom:30px;
    }

    .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:#ffe100;
      color:#000;
      transform:translateY(-3px);
    }

    /* =========================
       BOTTOM STRIP
    ==========================*/

    .bottom-strip{
      background:#ffe100;
      color:#000;
      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;
    }

    /* =========================
       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;
  }

  .specialist-img-box img{
    height:520px;
  }

}

@media(max-width:991px){

  .specialist-section{
    padding:70px 0;
  }

  .specialist-title{
    font-size:42px;
  }

  .specialist-img-box img{
    height:420px;
  }

}

@media(max-width:576px){

  .specialist-section{
    padding:60px 0;
  }

  .specialist-title{
    font-size:32px;
  }

  .specialist-img-box{
    border-radius:18px;
  }

  .specialist-img-box img{
    height:280px;
  }

}
.custom-footer{
      background: linear-gradient(to bottom, #14532d, #000000);
      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: #ffe100;
}
    .footer-heading{
      font-size:32px;
      font-weight:700;
      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: #ffe100;
    }
    .contact-box{
      font-size:28px;
	      color: #ffe100;
      font-weight:600;
      margin-top:10px;
    }

    .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:#ffe100;
      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:#ffe100;
      font-weight:700;
    }

    @media(max-width:991px){
 

      .footer-links li{
        font-size:18px;
      }

      .contact-box{
        font-size:22px;
      }

      .footer-bottom{
        font-size:18px;
      }
    }