.navbar-nav .nav-link {
    color: #111;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}
.navbar-nav a{
    text-decoration: none;
    color: #313539;
}
.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%);
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Dim overlay (50%) */
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Content positioning */
.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 20px;
}

/* Centered title */
.slide-title {
  font-size: 2rem;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Second title near bottom */
.slide-description {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .swiper-slide {
    height: 350px;
  }
  .slide-title {
    font-size: 1.5rem;
  }
  .slide-description {
    font-size: 1rem;
  }
  .navbar-nav li{
    margin: 10px 0;
  }
}

.custom-about-section {
    padding: 80px 0;
}

.custom-about-section .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.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-services-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

/* Dark overlay for background contrast */
.custom-services-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* slightly darker for better text readability */
    z-index: 1;
}

/* Content layer above overlay */
.custom-services-section .container {
    position: relative;
    z-index: 2;
}

/* Headings */
.services-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff; /* ensure visible */
}

.services-title span {
    color: #d6a251;
}

.services-subtitle {
    font-size: 20px;
    color: #e0e0e0; /* lighter for dark bg */
    margin-bottom: 50px;
}

/* Carousel items */
.services-carousel .service-item {
    padding: 15px;
}

/* Card styling — bright cards on dark bg */
.service-card {
    border: none;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
    backdrop-filter: blur(8px); /* glassy look */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: #fff; /* readable text inside */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Image */
.service-image img {
    max-width: 100px;
    margin: 0 auto 20px;
    display: block;
}

/* Titles and text inside card */
.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.service-text {
    font-size: 15px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Dots */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}
.owl-dot span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    margin: 0 5px;
}
.owl-dot.active span {
    background: #d6a251;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-services-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    .services-title {
        font-size: 30px;
    }
}

.custom-section {
    padding: 80px 0;
}

.custom-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-item {
    text-align: center;
}

.project-item img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.project-item img:hover {
    transform: scale(1.05);
}

/* ✅ RTL support */
.projects-grid.rtl {
    direction: rtl;
}

@media (max-width: 767px) {
    .project-item {
        flex: 1 1 100%;
    }
}
.contact-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

/* Dark semi-transparent overlay with blur */
.contact-section .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px); /* ✅ main blur effect */
    background-color: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
    z-index: 1;
}

/* Position content above overlay */
.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Typography */
.contact-section .contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section .contact-subtitle {
    font-size: 18px;
    color: #f5f5f5;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Form styles */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    transition: all 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    background: #fff;
}

.contact-form-wrapper button.wpforms-submit {
    background-color: #d6a251;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-wrapper button.wpforms-submit:hover {
    background-color: #b5883d;
}

/* ✅ RTL support */
.contact-inner.rtl {
    direction: rtl;
    text-align: right;
}

.contact-inner.rtl input,
.contact-inner.rtl textarea {
    text-align: right;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-section .contact-title {
        font-size: 32px;
    }
}
.footer-top-section {
    background-color: transparent;
    background-image: linear-gradient(180deg, #C87E2D 0%, #F2EB9A 100%);
    opacity: 1;
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111; /* 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: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav li a {
    font-weight: 500;
}
.footer-nav li a:hover {
    color: #fff;
}

.contact-list{
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
    color: #222;
}

.contact-list i {
    color: #fff;
    margin-right: 10px;
}

.footer-logo {
    max-width: 160px;
}

.footer-social .social-link {
    display: inline-block;
    background: #111;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: #fff;
    color: #C87E2D;
}

.footer-bottom-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    font-size: 14px;
    color: #fff;
}
.w-48{
    width: 48%;
}