@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
*{
  font-family: 'Tajawal';
}
.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: #1b3046;
}

.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 {
    position: relative;
	height: 70vh;
}
@media screen and (min-width:768px) {
  .my-owl-slider .item {
    height: 70vh;
  }
}
.my-owl-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom; /* FIXED */
    display: block;
}


.custom-about-section {
  padding: 80px 0;
}
.custom-about-section .about-image {
  width: 400px;
  height: 400px;
  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;
}

.pmb-0 p{
  margin-bottom: 0;
}

.wpforms-field select,
div.wpforms-container-full button[type=submit],
.wpforms-field input{
    height: 35px !important;   /* reduce size */
    padding: 0 10px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    border-radius: 5px !important;
}

/* Reduce textarea height specifically */
.wpforms-field textarea {
    height: 70px !important;
}

div.wpforms-container-full button[type=submit]{
  background-color: #4678b0 !important;
}
div.wpforms-container-full button[type=submit]:hover{
  background-color: #1b3046 !important;
}

.text-dark{
  color:#3D3C3C !important;
}
.card {
  border-style: solid;
  border-width: 1px 6px 1px 1px !important;
  border-color: #54595F;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.card img:hover {
    transform: scale(1.05);
}
.card:hover {
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.3),   /* white glow */
        0 8px 20px rgba(0, 0, 0, 0.08) !important;       /* soft shadow */
    background-color: #1b3046 !important;                   /* keep background solid */
	color: #fff;
}
.card2 {
  border-style: solid;
  border-width: 0px 3px 0px 0px !important;
  border-color: #4678b0;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.card2 img:hover {
    transform: scale(1.05);
}
.card2:hover {
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.3),   /* white glow */
        0 8px 20px rgba(0, 0, 0, 0.08) !important;       /* soft shadow */
    background-color: #4678b0 !important;                   /* keep background solid */
}

.card2 p,.card2 h3{
	color: #262626;
}
.card2:hover p,.card2:hover h3{
	color: #fff;
}