
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


/* BODY */
body{
  font-family: Arial, Helvetica, sans-serif;
  line-height:1.7;
  color:#333;
  overflow-x:hidden;
  background:#f5f5f5;
}


/* LINKS */
a{
  text-decoration:none;
}


/* =========================
NAVBAR
========================= */

.navbar{
  padding:15px 0;
  transition:0.4s ease;
}

.navbar-brand{
  font-size:1.4rem;
  font-weight:700;
  color:#ffc107 !important;
}

.nav-link{
  color:#fff !important;
  margin-left:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-link:hover{
  color:#ffc107 !important;
}

.nav-link.active{
  color:#ffc107 !important;
}


/* =========================
HERO SECTION
========================= */

.hero-section{
  position:relative;
  height:60vh;

  background:
  url('../images/img001.avif')
  center center/cover no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  color:#fff;
}


.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.70);
}


.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}


.hero-content h1{
  font-size:4rem;
  font-weight:800;
  margin-bottom:20px;
  line-height:1.2;
}


.hero-content p{
  font-size:1.3rem;
  margin-bottom:30px;
}


.hero-buttons .btn{
  margin:10px;
  padding:14px 32px;
  font-weight:600;
  transition:0.3s;
}


.hero-buttons .btn:hover{
  transform:translateY(-5px);
}


/* =========================
ABOUT SECTION
========================= */

.about-section{
  background:#fff;
}


.about-section h2{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:25px;
}


.about-section p{
  margin-bottom:18px;
  font-size:1.05rem;
}


/* =========================
SERVICES SECTION
========================= */

.services-section h2{
  font-size:2.5rem;
  font-weight:700;
}


.service-box{
  background:#fff;
  padding:40px 25px;
  border-radius:12px;
  text-align:center;

  transition:0.4s ease;

  height:100%;

  box-shadow:
  0 5px 15px rgba(0,0,0,0.08);
}


.service-box:hover{
  transform:translateY(-10px);
}


.service-box i{
  font-size:55px;
  color:#ffc107;
  margin-bottom:25px;
}


.service-box h4{
  margin-bottom:15px;
  font-weight:700;
}


/* =========================
COMPLIANCE SECTION
========================= */

.compliance-section{
  background:#111;
  color:#fff;
}


.compliance-section h2{
  color:#ffc107;
  font-size:2.5rem;
  font-weight:700;
}


.compliance-box{
  border:2px solid #ffc107;
  padding:35px 20px;
  border-radius:10px;

  font-weight:700;
  font-size:1.2rem;

  transition:0.3s ease;
}


.compliance-box:hover{
  background:#ffc107;
  color:#000;
}


/* =========================
CTA SECTION
========================= */

.cta-section{
  background:
  linear-gradient(rgba(0,0,0,0.8),
  rgba(0,0,0,0.8)),
  url('../images/cta.avif')
  center/cover no-repeat;

  color:#fff;

  padding:100px 20px;

  text-align:center;
}


.cta-section h2{
  font-size:3rem;
  margin-bottom:20px;
  font-weight:700;
}


.cta-section p{
  font-size:1.2rem;
  margin-bottom:30px;
}


/* =========================
FOOTER
========================= */

.footer{
  background:#000;
}


.footer p{
  margin-bottom:10px;
}


.footer-icons a{
  font-size:20px;
  transition:0.3s;
}


.footer-icons a:hover{
  color:#ffc107 !important;
}


/* =========================
IMAGE SETTINGS
========================= */

img{
  max-width:100%;
  display:block;
}


/* =========================
SCROLLBAR
========================= */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-thumb{
  background:#ffc107;
}

::-webkit-scrollbar-track{
  background:#222;
}


/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-content h1{
      font-size:3rem;
  }

}


@media(max-width:768px){

  .hero-section{
      height:90vh;
      padding:20px;
  }

  .hero-content h1{
      font-size:2.3rem;
  }

  .hero-content p{
      font-size:1rem;
  }

  .about-section h2,
  .services-section h2,
  .compliance-section h2,
  .cta-section h2{
      font-size:2rem;
  }

}


@media(max-width:576px){

  .hero-content h1{
      font-size:1.9rem;
  }

  .hero-buttons .btn{
      width:100%;
  }

}