:root {
  --primary: #2E2E2E;
  --secondary: #C91F2C;
  --darkgrey: #2E2E2E;
  --accent: #F5B400;
}

html, body {
  overflow-x: hidden;
}


body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding-top: 0px;
  line-height: 1.7;
}

/* ---------------- NAVBAR ---------------- */

.navbar {
  background: var(--primary);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}


/* TOP BAR */
.top-bar {
  background: var(--secondary);
  color: white;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar span {
  opacity: 0.95;
}

.btn-top {
  background: white;
  color: var(--secondary);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

.btn-top:hover {
  background: #f2f2f2;
}

/* NAVBAR ENHANCEMENT */
.navbar {
  background: var(--primary);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  margin: 0 10px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
}


/* ---------------- HERO ---------------- */
/* ---------------- HERO PREMIUM ---------------- */

.hero {
  min-height: 75vh;
  padding: 140px 0 100px;
  background: linear-gradient(rgba(38, 39, 42, 0.88), rgba(50, 50, 51, 0.88)),
  url('../src/hero.jpg');
  background-size: cover;
  background-position: top;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--accent);
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
}

.hero-about {
  font-size: 17px;
  opacity: 0.9;
  margin-top: 15px;
}

/* Badge Style */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.badge-item {
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-brand {
  background: var(--secondary);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-brand:hover {
  background: #a41620;
  transform: translateY(-2px);
}

.btn-outline-light {
  padding: 12px 28px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}


/* ---------------- BUTTON ---------------- */

.btn-brand {
  background: var(--secondary);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  transition: 0.3s ease;
}

.btn-brand:hover {
  background: #a41620;
}

/* ---------------- SECTION SPACING ---------------- */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--secondary);
  display: block;
  margin: 12px auto 0;
}

/* ---------------- SERVICES ---------------- */

.service-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  background: white;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--primary);
  color: white;
}

.service-icon {
  height: 60px;
  margin-bottom: 20px;
}

/* ---------------- CLIENTS ---------------- */

.client-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.client-box img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.client-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ---------------- MISSION & VISION ---------------- */

.mv-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ---------------- DARK SECTION ---------------- */

.bg-dark-section {
  background: var(--darkgrey);
  color: white;
}

/* ---------------- COMPLIANCE LIST ---------------- */

.compliance-list {
  list-style: none;
  padding-left: 0;
}

.compliance-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.compliance-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ---------------- CERTIFICATES ---------------- */

.cert-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cert-box img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.cert-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



/* ---------------- FOOTER ---------------- */

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 20px;
}
/* CONTACT SECTION */

.contact-wrapper {
  padding: 80px 0;
}

/* Cards */
.contact-card,
.contact-form-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.contact-card:hover,
.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.contact-card hr {
  margin: 25px 0;
  opacity: 0.15;
}

/* Links */
#contact a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.3s ease;
}

#contact a:hover {
  color: var(--secondary);
}

/* Form Styling */
.form-control {
  border-radius: 6px;
  padding: 12px;
  transition: 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(201,31,44,0.15);
}

/* Responsive spacing */
@media (max-width: 992px) {
  .contact-card,
  .contact-form-card {
    margin-bottom: 30px;
  }
}



/* MOBILE HERO OPTIMIZATION */

@media (max-width: 992px) {

  .hero {
    padding: 100px 20px 70px;
    min-height: auto;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .tagline {
    font-size: 16px;
  }

  .hero-about {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-badges {
    justify-content: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.hero-title,
.tagline,
.hero-about,
.hero-badges,
.hero-buttons {
  animation: heroFade 1.2s ease forwards;
  opacity: 0;
}

.hero-title { animation-delay: 0.2s; }
.tagline { animation-delay: 0.4s; }
.hero-about { animation-delay: 0.6s; }
.hero-badges { animation-delay: 0.8s; }
.hero-buttons { animation-delay: 1s; }

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}


.service-card,
.client-box,
.cert-box {
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}

.service-card:hover,
.client-box:hover,
.cert-box:hover {
  transform: translateY(-8px) scale(1.02);
}

.nav-scrolled {
  background: #2E2E2E !important;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* ---------------- LOADER ---------------- */

/* ---------------- PROFESSIONAL LOADER ---------------- */

#loader {
  position: fixed;
  inset: 0;
  background: #323233;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 110px;
  opacity: 0;
  animation: fadeInLogo 0.8s ease forwards;
}

.loader-bar {
  width: 0;
  height: 2px;
  background: #C91F2C;
  margin: 18px auto 0;
  animation: expandBar 1.2s ease forwards;
}

/* Logo Fade In */
@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}

/* Subtle Progress Line */
@keyframes expandBar {
  0% { width: 0; }
  100% { width: 110px; }
}

/* Hide State */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.contact-icon {
  font-size: 14px;
  margin-right: 6px;
  color: var(--secondary);
  vertical-align: middle;
}

#contact p {
  font-size: 14px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* MOBILE FIX */
@media (max-width: 992px) {

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

}

/* ---------------- TESTIMONIALS ---------------- */
/* TESTIMONIALS */
/* TESTIMONIALS */

.testimonial-card{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
max-width:700px;
margin:auto;
text-align:center;
}

.stars{
color:#F5B400;
font-size:18px;
margin-bottom:15px;
}

.testimonial-card p{
font-size:16px;
font-style:italic;
line-height:1.7;
margin-bottom:25px;
}

.testimonial-client{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
margin-top:15px;
}

.client-logo{
width:70px;
height:40px;
object-fit:contain;
border-radius:0;
background:white;
padding:4px;
}

.testimonial-client h6{
margin:0;
font-weight:600;
}

.testimonial-client span{
font-size:13px;
color:#777;
}

/* Swiper arrows */

.swiper-button-next,
.swiper-button-prev{
color:#C91F2C;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
transform:scale(1.1);
}
/* ---------------- GALLERY ---------------- */

.gallery-item{
overflow:hidden;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
transition:0.4s ease;
}

.gallery-item:hover img{
transform:scale(1.1);
}


