.navbar-nav .nav-link {
  color: black;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #FAD227;
}
.navbar {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style for the toggle button image */
.navbar-toggler img {
  max-width: 100%; /* Ensure the image doesn't overflow */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure it doesn't have extra space around it */
}

/* Optional: Add some padding around the toggle button if needed */
.navbar-toggler {
  padding: 0; /* Remove any default padding */
  border: none; /* Remove the border */
  outline: none; /* Remove the outline when focused */
}

/* Optional: Adjust the image size */
.navbar-toggler img {
  width: 30px; /* Adjust as needed */
  height: 30px; /* Adjust as needed */
}

.hero {
  background-color: #F4F4F4; /* Light background color */
  padding: 150px 0 100px 0; /* Increased padding-top to 150px */
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: adds rounded corners to the image */
}

/* About Section */
.about-section {
  background-color: #FFFFFF; /* Light gray background */
  padding: 80px 0; /* Adds vertical padding */
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333; /* Dark text for contrast */
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.25rem;
  color: #555; /* Lighter text for readability */
  margin-bottom: 30px;
}

/* Image Style */
.about-section img {
  max-width: 80%;
  height: auto;
  box-shadow: none; /* Remove the box shadow */
}

/* Button styling to match Hero Section button */
.btn-primary {
  background-color: #FAD227; /* Yellow background */
  color: #333; /* Dark text */
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  border: none; /* Remove the border */
  outline: none; /* Remove the outline */
  border-radius: 5px; /* Rounded corners for consistency */
}

.btn-primary:hover {
  background-color: #e5b300; /* Darker yellow on hover */
  color: #fff; /* White text on hover */
}

/* Center image on small screens */
@media (max-width: 767px) {
  .about-section img {
      display: block;
      margin: 0 auto; /* Centers the image */
      max-width: 80%; /* Adjust size if needed */
  }
}

/* Services Section Styling */
.services {
  padding-top: 50px;
  padding-bottom: 50px;
}

.card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.card-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.service-heading {
  font-weight: bold;
  text-align: center;
  position: relative;
}

.service-heading::before,
.service-heading::after {
  content: '';
  display: block;
  width: 40%;
  height: 4px;
  background-color: #FAD227;
  position: absolute;
  transform: translateX(-50%); /* This centers the line */
  bottom: -10px;  /* Adjust vertical positioning */
  left: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Shadow for depth */
}

.service-heading::before {
  top: -10px; /* Top line */
}

.service-heading::after {
  bottom: -10px; /* Bottom line */
}
.contact-section {
  background-color: #ffffff;
}

.contact-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-section .form-group label {
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.contact-section .form-control {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  width: 100%;
  transition: border-color 0.3s ease;
}

.contact-section .form-control:focus {
  border-color: #FAD227; /* Facebook Blue */
  box-shadow: 0 0 5px rgba(24, 119, 242, 0.5);
}

.contact-section button {
  background-color: #FAD227; /* Yellow background */
  color: #333; /* Dark text */
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  border: none; /* Remove the border */
  outline: none; /* Remove the outline */
  border-radius: 5px; /* Rounded corners for consistency */
}

.contact-section button:hover {
  background-color: #e5b300; /* Darker yellow on hover */
  color: #fff; /* White text on hover */
}

.contact-section .card {
  background-color: #ffffff;
  border: none;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-section .card-body {
  text-align: left;
}

.contact-section .card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #333;
}

.contact-section ul {
  list-style-type: none;
  padding-left: 0;
  color: #555;
}

.contact-section ul li {
  margin: 5px 0;
}

.contact-section i {
  color: #FAD227;
  margin-right: 8px;
}

/* Animation for the cards */
@keyframes fadeInCard {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

#contact-form-card, #contact-details-card {
  animation: fadeInCard 1s ease-out forwards;
}

/* Responsive Layout */
@media (max-width: 767px) {
  .contact-section .row {
      flex-direction: column;
  }
}
/* Enhanced Footer Styling */
.footer {
  background: #262626; /* Gradient background for a smoother look */
  color: #fff;
  padding: 30px 0;
  box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.2);
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 10px; /* Reduced margin for a more compact look */
  font-size: 1.1rem; /* Slightly smaller font size */
}

.footer p {
  font-size: 0.9rem;
  color: #bbb;
}

.footer a {
  color: #FAD227;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #e6be1d;
}

.footer ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.footer .fab {
  color: #FAD227;
  transition: color 0.3s ease;
}

.footer .fab:hover {
  color: #e6be1d;
}

.footer hr {
  border: 0;
  border-top: 1px solid #fff;
  margin: 15px 0;
}

.footer .container {
  padding: 0 20px;
}

.footer .row {
  margin-bottom: 20px;
}

.footer .row > div {
  padding: 10px;
}

.footer .d-flex {
  margin-top: 10px;
}

/* Responsive design for footer */
@media (max-width: 767px) {
  .footer .row {
      text-align: center;
  }
  .footer .col-md-4 {
      margin-bottom: 30px;
  }
}
/* Services Page Hero Section */
.services-hero {
  background: #FCFCFC;
  padding: 120px 0; /* Adjust top padding */
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 20px 0;
}

.hero-btn {
  background-color: #FAD227;
  color: black;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: #e6be1d;
  color: white;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: Slightly rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive: Center image on small screens */
@media (max-width: 767px) {
  .services-hero .row {
      flex-direction: column-reverse;
  }
  .hero-title {
      font-size: 2rem;
  }
  .hero-subtitle {
      font-size: 1rem;
  }
  .hero-btn {
      padding: 10px 20px;
  }
}
#why-choose-us .feature-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#why-choose-us .feature-box:hover {
  transform: translateY(-10px);
}

#why-choose-us .feature-box h4 {
  color: #333;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

#why-choose-us .feature-box p {
  font-size: 1rem;
  color: #555;
}
/* Services Page Hero Section */
.about-hero {
  background: #ffffff;
  padding: 120px 0; /* Adjust top padding */
  text-align: center;
}
/* Responsive: Center image on small screens */
@media (max-width: 767px) {
  .about-hero .row {
      flex-direction: column-reverse;
  }
}
#portfolio {
  background-color: #FFFFFF;
  padding: 60px 0;
}

#portfolio .card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#portfolio .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#portfolio .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

#portfolio .card-body {
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

#portfolio .card-title {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

#portfolio .card-text {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

#portfolio .btn-primary {
  background-color: #FAD227;
  border-color: #FAD227;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#portfolio .btn-primary:hover {
  background-color: #e3a800;
  border-color: #e3a800;
}

#portfolio h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
}

#portfolio p {
  color: #555;
}

#portfolio .lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
}

#portfolio .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#industries-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
}

#industries-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

#industries-hero p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.industry-tags span:hover {
  background: rgba(255, 255, 255, 0.5);
}
