body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #333;
  background-color: #fff8f5; /* soft warm background tone */
}

/* Hero Section */
.hero-section {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: 80vh;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  z-index: 2;
  color: #fff;
}

/* Tool Cards */
.tool-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #ffe0d1;
  background-color: #fff;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(255, 64, 0, 0.15);
}
.tool-card .btn {
  border-radius: 25px;
  background-color: #ff4000;
  border: none;
  color: #fff;
}
.tool-card .btn:hover {
  background-color: #ff8c66;
}

/* Icon Color */
.tool-card i, .feature-icon, .icon {
  color: #ff4000 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #ff4000;
  font-weight: 600;
}

/* About Section */
#about {
  background: #fff;
}

/* Why Choose Us */
#why .bg-white {
  transition: transform 0.3s ease;
}
#why .bg-white:hover {
  transform: translateY(-8px);
}

/* Footer */
footer {
  font-size: 14px;
  letter-spacing: 0.3px;
  background-color: #ff4000;
  color: #fff;
}
footer a {
  color: #ffe0d1;
}
footer a:hover {
  color: #fff;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  background-color: #ff4000;
}
.text-danger {
  color: #ff4000 !important;
}
.navbar-brand {
  font-size: 1.5rem;
  color: #ff4000 !important;
  font-weight: 600;
}
.nav-link {
  color: #ff4000 !important;
  font-weight: 500;
}
.nav-link:hover {
  color: #cc3300 !important;
}

/* Buttons (global) */
.btn-primary {
  background-color: #ff4000;
  border: none;
}
.btn-primary:hover {
  background-color: #ff8c66;
}

/* Modal Headers */
.modal-header {
  background-color: #ff4000;
  color: #fff;
}


.navbar-brand img {
  height: 45px;
  width: auto;
  border-radius: 6px; /* optional rounded corner */
}

.navbar-brand span {
  font-size: 1.4rem;
  color: #ff4000; /* your brand color */
  letter-spacing: 0.5px;
}



/* Increase navbar height and spacing */
.navbar {
  padding: 1rem 0; /* increase vertical padding */
  background-color: #ff4000;
  transition: all 0.3s ease;
}

/* Adjust logo size */
.navbar-brand img {
  height: 60px; /* increased logo height */
  width: auto;
  border-radius: 6px;
}

/* Adjust brand text */
.navbar-brand span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ff8000;
}

/* Adjust nav links */
.nav-link {
  color: #ff8000 !important;
  font-size: 1.05rem;
  padding: 0.75rem 1rem !important; /* increase link spacing */
}

.nav-link:hover {
  color: #ff8000 !important;
}

/* Add subtle shadow on scroll */
.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
