.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}
.navbar-nav a{
    text-decoration: none;
    color: #ffffff;
}
.navbar-nav{
    list-style: none;
}
.navbar-nav li{
    margin: 0 10px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item > .nav-link {
    color: #C87E2D;
}

.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}
.navbar-toggler-icon {
    filter: invert(40%);
}
.language-switcher a {
  color: #ffffff !important;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
}
.language-switcher a:hover {
  background: #f5f5f5;
  color: #222 !important;
  border-color: #ccc;
}

.my-owl-slider .item {
  height: 70vh;
}

.my-owl-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-about-section {
  padding: 80px 0;
}
.custom-about-section .about-image {
  width: 100%;
  max-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}
.custom-about-section .about-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}
.custom-about-section .about-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}
.custom-about-section .about-btn-wrapper {
  margin-top: 20px;
}
.custom-about-section .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
.custom-about-section .about-btn:hover {
  color: #007bff;
}
.custom-about-section .about-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.custom-about-section .about-btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .custom-about-section {
    padding: 50px 15px;
  }
  .custom-about-section .about-title {
    font-size: 24px;
  }
}
.custom-section {
  padding: 80px 0;
}
.custom-section .section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-card .overlay {
    background: rgba(0,0,0,0.5); /* semi-transparent overlay */
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.project-card:hover .overlay {
    background: rgba(0,0,0,0.3); /* lighter on hover */
}

.project-card h5 {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-top-section {
    opacity: 1;
    color: #fff;
    padding: 10px 0 10px;
    position: relative;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff; /* darker to contrast the bright background */
}
.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav li a , .phoneAnchor{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav li a {
    font-weight: 500;
}
.footer-nav li a:hover {
    color: #fff;
}

.contact-list li{
    margin-bottom: 10px;
}

.w-48{
	width: 48%;
}