* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}
:root {
  /* === BRAND COLORS === */
  --primary-color: #ff7a00; /* Orange */
  --secondary-color: #1b1b1b;
  --accent-color: #ffc107;
  --light-color: #f8f9fa;
  --dark-color: #121212;
  --text-color: #333;
  --bg-color: #fff;

  /* === FEEDBACK COLORS === */
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;

  --bs-primary: #ff7a00; /* Orange */
  --bs-primary-rgb: 255, 122, 0;

  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: #e96a00;

  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #e96a00;
  --bs-btn-hover-border-color: #e96a00;
}

/* ===== Navbar ===== */
.navbar {
  background-color: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ===== Nav Items ===== */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-item {
  position: relative;
  margin-left: 20px;
}

.nav-link {
  color: #ff7a00 !important;
  font-weight: 500;
  padding: 8px 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0056b3 !important;
}
.nav-item .btn {
  background-color: var(--primary-color);
  color: white;
}
/* ===== Dropdown ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;

  /* animation effect */
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: none;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #0056b3;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Toggle ===== */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
/*======================================================== Services Hero========================================= */

.services-hero {
  background: url(asset/images/services/serviceHeroBg.jpg) center/cover
    no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.services-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.services-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.services-hero h1 {
  font-weight: 700;
  text-transform: uppercase;
}

.services-hero p {
  font-size: 1.2rem;
}

/* Services Page */
.service-page {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.service-page h2 {
  color: var(--bs-primary);
  font-weight: 700;
  text-transform: uppercase;
}
/* Services Section */
.services-section {
  padding: 2rem 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.2rem;
}

.service-content h2 {
  color: var(--main-color);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  margin-bottom: 1rem;
}

.service-content ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  color: #555;
}

.service-content ul li {
  margin-bottom: 0.5rem;
}

/* Call to Action */
.services-cta {
  text-align: center;
  background: rgb(1, 1, 80);
  color: white;
  padding: 50px 20px;
}

.services-cta h2 {
  margin-bottom: 10px;
}

.services-cta p {
  margin-bottom: 20px;
}

.cta-btn {
  background: var(--main-color);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: blue;
}

.footer {
  background: #868383;
  color: #f1f1f1;
  padding: 40px 5% 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-company p,
.footer-nav ul li,
.footer-services ul li,
.footer-newsletter p {
  margin: 5px 0;
}

.footer-nav h3,
.footer-services h3,
.footer-newsletter h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #ff9800;
}

.footer-nav ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #ff9800;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.newsletter-form button {
  background: #ff9800;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e68900;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 0.85rem;
  color: #aaa;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
