/**
* Template Name: UpConstruction - Golden National Enhanced
* Updated: December 2025 - Improved Version
* Enhanced with professional leadership section and improved design
* LTR VERSION - English
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Tajawal", sans-serif;
  --heading-font: "Tajawal", sans-serif;
  --nav-font: "Tajawal", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #364d59;
  --heading-color: #1E65B5;
  --accent-color: #30B349;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --header-bg: transparent;
  --nav-color: #ffffff;
  --nav-hover: #1E65B5;
  --nav-active: #1E65B5;
  --accent-color: #30B349;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.55);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #feb900;
}

.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  --background-color: #0f1a13;
  --surface-color: #18261d;
} 

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
} 

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
} 

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
} 

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 55px;
  margin-left: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  --background-color: rgba(255, 255, 255, 0.98);
  --heading-color: #1E65B5 !important;
  --nav-color: #1E65B5 !important;
  --nav-hover-color: #30B349 !important;
}

.scrolled .navmenu a,
.scrolled .navmenu a:focus {
  color: #1E65B5 !important;
}

.scrolled .navmenu li:hover>a,
.scrolled .navmenu .active {
  color: #30B349 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-left: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 20px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:#1E65B5;
    font-weight: 700;
  }
} 

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    left: 15px;
    margin-left: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer - ENHANCED
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #0f1a13;
  background: linear-gradient(135deg, rgba(15, 26, 19, 0.95) 0%, rgba(24, 38, 29, 0.95) 100%), 
              url("../imgs/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
  padding: 60px 0 30px;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(15, 26, 19, 0.9) 100%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-about {
  padding-left: 20px !important;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer .footer-about .logo:hover {
  transform: scale(1.05);
}

.footer .footer-about .logo img {
  max-height: 70px;
  margin-left: 6px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer .social-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.footer .social-links a:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(48, 179, 73, 0.3);
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: #fff;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li:hover {
  padding-left: 5px;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-contact p strong {
  color: #fff;
}

.footer .footer-contact p i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer .copyright strong {
  color: #fff;
}

.footer .copyright a {
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer .copyright a:hover {
  color: var(--accent-color);
}

/* Footer Arrow Icon */
.footer-arrow {
  font-size: 0.8rem;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer-links ul a:hover .footer-arrow {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Sections - Enhanced
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 76px;
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles - Enhanced - FIXED: Single Line
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  color: var(--heading-color);
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FIXED: Single line instead of two lines */
.section-title h2:after {
  content: "";
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .section-title h2:after {
    width: 60px;
    margin: 12px auto 0;
  }

  .section-title p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Hero Section - IMPROVED: Better button positioning
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 180px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px), (max-height: 480px) {
  .hero .info {
    padding: 140px 50px 80px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  margin-bottom: 25px;
  text-align: center;
}

/* Carousel Indicators */
.hero .carousel-indicators {
  bottom: 30px;
  z-index: 3;
}

.hero .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.hero .carousel-indicators button.active {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(48, 179, 73, 0.6);
}

.hero .carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

#btn-started {
  background-color: #059652 !important;
}

#btn-started:hover {
  background-color: transparent !important;
  color: #fff;
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* IMPROVED: Better carousel controls design */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  opacity: 0.7;
}

.hero .carousel-control-prev {
  left: 20px;
}

.hero .carousel-control-next {
  right: 20px;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.8;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

.hero-content-wrapper {
  padding-bottom: 50px;
}

.hero .hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding-bottom: 30px;
  }

  .hero .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero .info .btn-get-started {
    width: 100%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero .carousel-control-prev {
    left: 10px;
  }

  .hero .carousel-control-next {
    right: 10px;
  }
}

/*--------------------------------------------------------------
# Welcome Section
--------------------------------------------------------------*/
.welcome {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(48, 179, 73, 0.1), transparent);
  border-radius: 50%;
}

.welcome::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 101, 181, 0.08), transparent);
  border-radius: 50%;
}

.welcome-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  animation: fadeInDown 0.8s ease;
  text-align: center;
  width: 100%;
}

.welcome-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  border-radius: 2px;
}

.welcome-content {
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.welcome-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.welcome-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  border-radius: 20px 20px 0 0;
}

.welcome-icon {
  text-align: center;
  margin-bottom: 30px;
}

.welcome-icon i {
  font-size: 4rem;
  color: var(--accent-color);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.welcome-text {
  font-size: 1.15rem;
  line-height: 2;
  color: #495057;
  margin-bottom: 25px;
  text-align: justify;
  position: relative;
  padding-left: 25px;
}

.welcome-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 25px;
  background: linear-gradient(180deg, var(--heading-color), var(--accent-color));
  border-radius: 2px;
}

.welcome-text strong {
  color: var(--heading-color);
  font-weight: 700;
}

.welcome-text.last {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .welcome {
    padding: 60px 0;
  }

  .welcome-title {
    font-size: 2.2rem;
  }

  .welcome-content {
    padding: 40px 35px;
  }

  .welcome-text {
    font-size: 1.05rem;
  }

  .welcome-icon i {
    font-size: 3.5rem;
  }
}

@media (max-width: 575px) {
  .welcome-title {
    font-size: 1.8rem;
  }

  .welcome-content {
    padding: 30px 25px;
  }

  .welcome-text {
    font-size: 1rem;
    padding-left: 20px;
  }

  .welcome-icon i {
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
# About Section - Enhanced
--------------------------------------------------------------*/
.about {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(30, 101, 181, 0.05), transparent);
  pointer-events: none;
}

.about .inner-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 50px 0px 30px;
  color: var(--heading-color);
  position: relative;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about .inner-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  border-radius: 2px;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
  }
}

.about .our-story {
  padding: 50px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about .our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(48, 179, 73, 0.1), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about .our-story:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.about .our-story p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #495057;
  margin-bottom: 20px;
  position: relative;
}

.about .our-story p b {
  color: var(--heading-color);
  font-weight: 700;
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.about ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.about ul li:hover {
  transform: translateX(5px);
}

.about ul i {
  font-size: 1.3rem;
  margin-left: 1rem;
  line-height: 1.2;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about ul li:hover i {
  transform: scale(1.2);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.about .about-img:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .about .inner-title {
    font-size: 2.2rem;
  }

  .about .our-story {
    padding: 35px;
  }
}

@media (max-width: 575px) {
  .about .inner-title {
    font-size: 1.8rem;
  }

  .about .our-story {
    padding: 25px;
  }

  .about .our-story p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Leadership Section - NEW: Redesigned based on reference image
--------------------------------------------------------------*/
.leadership {
  background: linear-gradient(135deg, #e8f0f7 0%, #f5f8fb 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.leadership .section-title {
  margin-bottom: 35px;
}

.leadership .section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1E65B5;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.leadership .leadership-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
  margin-top: 12px;
}

/* Leadership Card - New Modern Design Based on Reference */
.leadership-card-modern {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 40px;
}

.leadership-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Leader Image Section */
.leader-image-container {
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

/* تعديل لنسخة الموبايل - توسيط صورة القيادة */
@media (max-width: 768px) {
  .leader-image-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .leader-image-circle {
    margin: 0 auto;
  }
  
  .leader-info-box {
    text-align: center;
    width: 100%;
  }
}

.leader-image-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0e4f5 0%, #e8f0f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(30, 101, 181, 0.15);
  transition: all 0.4s ease;
}

.leadership-card-modern:hover .leader-image-circle {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(30, 101, 181, 0.25);
}

.leader-image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #ffffff;
}

/* Leader Content Section */
.leader-content-section {
  flex-grow: 1;
  position: relative;
}

/* Leader Message Title - NEW */
.leader-message-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1E65B5;
  margin-bottom: 25px;
  text-align: left;
}

/* Quote Icon - Using Image */
.leader-quote-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
}

.leader-quote-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Leader Message */
.leader-message-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Highlighted Quote - Now at Bottom */
.leader-highlighted-quote {
  background: #1E65B5;
  color: #ffffff;
  padding: 18px 28px;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 25px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(30, 101, 181, 0.3);
  display: inline-block;
}

/* Leader Info */
.leader-info-box {
  margin-top: 30px;
  padding-top: 20px;
}

.leader-name-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 8px;
}

.leader-position-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 0;
}

/* Contact Info - Hidden for Chairman */
.leader-contact-box {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #1E65B5;
}

.leader-contact-box p {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #495057;
}

.leader-contact-box p:last-child {
  margin-bottom: 0;
}

.leader-contact-box i {
  font-size: 1.1rem;
  color: #1E65B5;
}

.leader-contact-box a {
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.leader-contact-box a:hover {
  color: #1E65B5;
}

/* Responsive Design for Leadership */
@media (max-width: 1199px) {
  .leadership-card-modern {
    flex-direction: column;
    padding: 45px 35px;
    text-align: center;
  }

  .leader-image-circle {
    width: 240px;
    height: 240px;
  }

  .leader-message-title {
    text-align: center;
  }

  .leader-quote-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
  }

  .leader-message-text {
    font-size: 1.15rem;
  }

  .leader-highlighted-quote {
    font-size: 1.2rem;
  }

  .leader-name-title {
    font-size: 1.7rem;
  }

  .leader-position-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .leadership {
    padding: 60px 0;
  }

  .leadership-card-modern {
    padding: 35px 25px;
  }

  .leader-image-circle {
    width: 200px;
    height: 200px;
  }

  .leader-message-title {
    font-size: 1.6rem;
  }

  .leader-quote-icon {
    width: 45px;
    height: 45px;
  }

  .leader-message-text {
    font-size: 1.1rem;
  }

  .leader-highlighted-quote {
    font-size: 1.1rem;
    padding: 15px 25px;
  }

  .leader-name-title {
    font-size: 1.6rem;
  }

  .leader-position-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .leadership .section-title h2 {
    font-size: 2rem;
  }

  .leadership .leadership-subtitle {
    font-size: 1.1rem;
  }

  .leadership-card-modern {
    padding: 30px 20px;
  }

  .leader-image-circle {
    width: 180px;
    height: 180px;
  }

  .leader-message-title {
    font-size: 1.4rem;
  }

  .leader-message-text {
    font-size: 1rem;
  }

  .leader-highlighted-quote {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Services Section - Enhanced
--------------------------------------------------------------*/
.services {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%231E65B5" opacity="0.05"/></svg>');
  pointer-events: none;
}

.services .service-item {
  background: #ffffff;
  padding: 45px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services .service-item:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.services .service-item .icon {
  width: 70px;
  height: 70px;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 3rem;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.1), rgba(48, 179, 73, 0.1));
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
  transform: scale(1.1) rotate(-5deg);
}

.services .service-item:hover .icon:before {
  background: linear-gradient(135deg, rgba(48, 179, 73, 0.2), rgba(30, 101, 181, 0.2));
  transform: scale(1.2);
}

.services .service-item h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  border-bottom: 3px solid rgba(30, 101, 181, 0.2);
  transition: all 0.3s ease;
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.services .service-item p {
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #495057;
  transition: color 0.3s ease;
}

.services .service-item p i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .services .service-item {
    padding: 35px;
  }

  .services .service-item .icon {
    width: 60px;
    height: 60px;
  }

  .services .service-item .icon i {
    font-size: 2.5rem;
  }

  .services .service-item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 575px) {
  .services .service-item {
    padding: 30px 25px;
  }

  .services .service-item h3 {
    font-size: 1.2rem;
  }

  .services .service-item p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Latest News Section
--------------------------------------------------------------*/
.latest-news-section {
  background: #f8f9fa;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.news-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-body {
  padding: 30px;
}

.news-date {
  display: inline-block;
  color: #1E65B5;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: rgba(30, 101, 181, 0.1);
  border-radius: 20px;
}

.news-date i {
  margin-right: 5px;
}

.news-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.news-card:hover h4 {
  color: var(--accent-color);
}

.news-card p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
}

.news-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.news-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.news-link:hover {
  color: var(--heading-color);
}

.news-link:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 20px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 20px;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-left: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Constructions Section (Why Us) - FIXED: Partner icon
--------------------------------------------------------------*/
.constructions .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 15px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.constructions .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.4s ease;
}

.constructions .card-item:hover .card-bg img {
  transform: scale(1.05);
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-icon {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-right: 15px;
  vertical-align: middle;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1;
}

.constructions .card-item:hover .card-icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--heading-color);
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
}

.constructions .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Features Section - Enhanced
--------------------------------------------------------------*/
.features-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.02) 0%, rgba(48, 179, 73, 0.02) 100%);
  pointer-events: none;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(30, 101, 181, 0.3);
}

.feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.feature-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.feature-content {
  padding: 35px 25px;
  position: relative;
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotateY(360deg);
  color: var(--heading-color);
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(48, 179, 73, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon::before {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(30, 101, 181, 0.15), transparent);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-color);
}

.feature-card p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 991px) {
  .feature-card img {
    height: 220px;
  }

  .feature-content {
    padding: 30px 20px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 575px) {
  .feature-card img {
    height: 200px;
  }

  .feature-content {
    padding: 25px 18px;
  }

  .feature-icon {
    font-size: 2.2rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Projects Modern Section - FIXED: Better colors and hover
--------------------------------------------------------------*/
.projects-modern {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 26, 19, 0.92), rgba(24, 38, 29, 0.95)), 
              url("../imgs/hero-section/slide-2.jpeg") center/cover no-repeat;
  background-attachment: fixed;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

/* Fallback if image doesn't load */
@supports not (background-attachment: fixed) {
  .projects-modern {
    background-attachment: scroll;
  }
}

/* Decorative background elements */
.projects-modern::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(48, 179, 73, 0.15), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.projects-modern::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 101, 181, 0.1), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.projects-modern .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 19, 0.85), rgba(24, 38, 29, 0.90));
  backdrop-filter: blur(2px);
}

.projects-modern .content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.projects-modern .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.8s ease;
  color: #ffffff;
}

.projects-modern .section-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.2s backwards;
  color: rgba(255, 255, 255, 0.95);
}

.stats {
  margin-bottom: 50px;
}

/* FIXED: Better stat box colors and visibility */
.stat-box {
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.15), rgba(48, 179, 73, 0.1));
  backdrop-filter: blur(15px);
  padding: 40px 25px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #30B349, #1E65B5);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-box i {
  font-size: 3.5rem;
  color: #30B349;
  margin-bottom: 20px;
  display: block;
  transition: all 0.4s ease;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 10px rgba(48, 179, 73, 0.5));
}

.stat-box:hover i {
  transform: scale(1.15) rotateY(360deg);
  color: #FFD700;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
}

.stat-box h3 {
  font-size: 3rem;
  margin: 0;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  color: #ffffff;
  letter-spacing: 1px;
}

.stat-box p {
  margin: 15px 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stat-box:hover {
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.25), rgba(48, 179, 73, 0.15));
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-box:hover h3 {
  transform: scale(1.1);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FIXED: Button hover states with visible text */
.main-btn, .second-btn {
  padding: 15px 45px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-btn::before, .second-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.main-btn:hover::before, .second-btn:hover::before {
  width: 300px;
  height: 300px;
}

.main-btn {
  background: #1E65B5;
  color: #fff !important;
  border: 2px solid #1E65B5;
}

.second-btn {
  background: #fff;
  color: #1E65B5 !important;
  border: 2px solid #fff;
}

.main-btn:hover {
  background: #184f8c;
  border-color: #184f8c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #fff !important;
}

.second-btn:hover {
  background: #f8f9fa;
  border-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #1E65B5 !important;
}

@media (max-width: 991px) {
  .projects-modern {
    padding: 80px 0;
  }

  .projects-modern .section-title {
    font-size: 2.2rem;
  }

  .projects-modern .section-desc {
    font-size: 1.1rem;
  }

  .stat-box {
    padding: 35px 20px;
    margin-bottom: 20px;
  }

  .stat-box i {
    font-size: 3rem;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .stat-box p {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .projects-modern {
    padding: 60px 0;
  }

  .projects-modern .section-title {
    font-size: 1.8rem;
  }

  .projects-modern .section-desc {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .stat-box {
    padding: 30px 15px;
  }

  .stat-box i {
    font-size: 2.5rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .main-btn, .second-btn {
    width: 100%;
    padding: 12px 35px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.team .member-info {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Contact Section - IMPROVED: New map and phone field
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 4px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form .form-text {
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(48, 179, 73, 0.3);
}

/*--------------------------------------------------------------
# Hero Modern CTA - IMPROVED: Background decorations
--------------------------------------------------------------*/
.hero-modern {
  background: linear-gradient(135deg, #0f1a13 0%, #18261d 100%);
  padding: 6rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Improved decorative elements */
.hero-modern::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(48, 179, 73, 0.15), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 101, 181, 0.12), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

/* Additional decorative icons */
.hero-modern .container::before,
.hero-modern .container::after {
  content: '\f0ad';
  font-family: 'bootstrap-icons';
  position: absolute;
  font-size: 8rem;
  opacity: 0.03;
  z-index: 0;
}

.hero-modern .container::before {
  top: 20%;
  right: 5%;
  content: '\f431';
}

.hero-modern .container::after {
  bottom: 20%;
  left: 5%;
  content: '\f1ad';
}

.hero-content {
  animation: fadeIn 1.1s ease-out;
  position: relative;
  z-index: 1;
}

.hero-modern h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-modern p.lead {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.hero-modern p.strong-text {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.hero-btn {
  background: #fff;
  color: #0b72b6;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition: 0.35s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
  background: linear-gradient(135deg, #0bb680, #0b72b6);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Additional Utilities
--------------------------------------------------------------*/
.start-now {
  margin-right: 35px;
}

.header .cta-btn, .header .cta-btn:focus {
  color: var(--contrast-color);
  background-color: #1E65B5;
  font-size: 14px;
  padding: 8px 15px;
  margin-left: 8px;
  border-radius: 5px;
  transition: 0.3s;
}

.header .cta-btn:hover {
  color: #059652;
  background-color: #fff !important;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.lang-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn.active {
  background: #30B349;
  border-color: #30B349;
  color: #ffffff;
}

.scrolled .lang-btn {
  background: rgba(30, 101, 181, 0.1);
  border-color: #1E65B5;
  color: #1E65B5;
}

.scrolled .lang-btn:hover {
  background: #1E65B5;
  color: #ffffff;
  border-color: #1E65B5;
}

.scrolled .lang-btn.active {
  background: #30B349;
  border-color: #30B349;
  color: #ffffff;
}

.select-wrapper {
  position: relative;
}

.service-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .header .logo img {
    max-height: 45px;
  }

  .hero .info h2 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .leadership .section-title h2 {
    font-size: 2rem;
  }

  .hero-modern h2 {
    font-size: 2rem;
  }

  .hero-modern p.lead {
    font-size: 1.1rem;
  }

  .hero-modern p.strong-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .stat-box {
    margin-bottom: 15px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .second-btn {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Projects Page Styles - صفحة المشاريع
--------------------------------------------------------------*/

/* Page Title Section */
.projects-page .page-title {
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.projects-page .page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.85), rgba(48, 179, 73, 0.75));
  z-index: 1;
}

.projects-page .page-title .container {
  position: relative;
  z-index: 2;
}

/* Section Title */
.projects-page .section-title {
  text-align: center;
  padding: 80px 0 40px 0;
}

.projects-page .section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1E65B5;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.projects-page .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  border-radius: 2px;
}

.projects-page .section-title p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #555;
}

/* Project Cards - Premium Modern Design */
.project-card-clean {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 35px 30px !important;
}

.project-card-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card-clean:hover::before {
  opacity: 1;
}

.project-card-clean:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Icon Section - Modern Style */
.project-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.1), rgba(48, 179, 73, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-icon-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.2), rgba(48, 179, 73, 0.2));
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.project-card-clean:hover .project-icon-modern::before {
  width: 100%;
  height: 100%;
}

.project-icon-modern i {
  font-size: 40px;
  background: linear-gradient(135deg, #1E65B5, #30B349);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.project-card-clean:hover .project-icon-modern {
  transform: scale(1.1);
}

/* Card Title - Premium Typography */
.project-card-clean h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.project-card-subtitle {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 25px;
  display: block;
}

/* Project Info Grid - Icon Style */
.project-info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.project-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #495057;
  padding: 8px 0;
}

.project-info-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #30B349;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.project-info-label {
  font-weight: 600;
  color: #1E65B5;
  min-width: 90px;
}

.project-info-value {
  color: #495057;
  flex: 1;
}

/* Details Button - Premium Style */
.project-details-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
}

.project-details-btn:hover {
  background: linear-gradient(135deg, #1E65B5, #30B349);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 101, 181, 0.4);
  color: #ffffff;
}

.project-details-btn i {
  margin-left: 8px;
}

/* Project Type Badge */
.project-type-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.1), rgba(48, 179, 73, 0.1));
  color: #1E65B5;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 101, 181, 0.2);
}

/* Background Image Section */
#bg-black-img {
  background-image: linear-gradient(135deg, rgba(30, 101, 181, 0.85), rgba(48, 179, 73, 0.75)), 
                    url(../imgs/projects/1.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#bg-black-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: movePattern 20s linear infinite;
  opacity: 0.3;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.card-details {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Projects Gallery Section */
.projects-page #projects {
  background: linear-gradient(135deg, rgba(48, 179, 73, 0.08), rgba(30, 101, 181, 0.08));
  padding: 100px 0;
  position: relative;
}

/* Portfolio Items */
.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: #fff;
}

.portfolio-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-content img {
  width: 100%;
  height: auto;
  transition: all 0.6s ease;
  display: block;
}

.portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.95), rgba(48, 179, 73, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio-info a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
  transform: scale(0);
}

.portfolio-content:hover .portfolio-info a {
  transform: scale(1);
}

.portfolio-info a:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: #fff;
  transform: scale(1.2) rotate(-10deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animation Classes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Animation */
.project-card-clean {
  animation: fadeInUp 0.6s ease backwards;
}

.project-card-clean:nth-child(1) { animation-delay: 0.1s; }
.project-card-clean:nth-child(2) { animation-delay: 0.2s; }
.project-card-clean:nth-child(3) { animation-delay: 0.3s; }
.project-card-clean:nth-child(4) { animation-delay: 0.4s; }
.project-card-clean:nth-child(5) { animation-delay: 0.5s; }
.project-card-clean:nth-child(6) { animation-delay: 0.6s; }

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-page .page-title {
  background-position: center center;
  background-size: cover;
  padding: 140px 0 100px 0;
  position: relative;
}

.contact-page .page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.contact-page .page-title .container {
  position: relative;
  z-index: 2;
}

.contact-page .page-title h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.contact-page .breadcrumbs {
  margin-top: 20px;
}

.contact-page .breadcrumbs ol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-page .breadcrumbs li {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
}

.contact-page .breadcrumbs li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.contact-page .breadcrumbs li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-page .breadcrumbs li.current {
  color: #30B349;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-page .breadcrumbs li:not(:last-child)::after {
  content: '►';
  margin-left: 15px;
  color: #fff;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Center breadcrumbs container */
.contact-page .breadcrumbs {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-page .page-title h1 {
    font-size: 2.2rem;
  }

  .contact-page .breadcrumbs ol {
    padding: 10px 20px;
    gap: 10px;
  }

  .contact-page .breadcrumbs li {
    font-size: 0.9rem;
  }

  .contact-page .breadcrumbs li:not(:last-child)::after {
    margin-left: 10px;
  }
}

@media (max-width: 575px) {
  .contact-page .page-title {
    padding: 100px 0 70px 0;
  }

  .contact-page .page-title h1 {
    font-size: 1.8rem;
  }

  .contact-page .breadcrumbs ol {
    padding: 8px 15px;
    gap: 8px;
  }

  .contact-page .breadcrumbs li {
    font-size: 0.85rem;
  }
}

.contact-info-section .info-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-info-section .info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1E65B5 0%, #30B349 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-info-section .info-item:hover::before {
  transform: scaleX(1);
}

.contact-info-section .info-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(30, 101, 181, 0.15);
  border-color: #1E65B5;
}

.contact-info-section .info-item i {
  font-size: 56px;
  color: #1E65B5;
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.1) 0%, rgba(48, 179, 73, 0.1) 100%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.contact-info-section .info-item:hover i {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #1E65B5 0%, #30B349 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(30, 101, 181, 0.3);
}

.contact-info-section .info-item h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info-section .info-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  border-radius: 3px;
}

.contact-info-section .info-item p {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.8;
  font-weight: 500;
}

.contact-info-section .info-item a {
  color: #1E65B5;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

.contact-info-section .info-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  transition: width 0.3s ease;
}

.contact-info-section .info-item a:hover::after {
  width: 100%;
}

.contact-info-section .info-item a:hover {
  color: #30B349;
}

/* CEO Contact Card */
.ceo-contact-section {
  background: #f8f9fa;
}

.ceo-contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ceo-image-circle {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #1E65B5;
  box-shadow: 0 5px 20px rgba(30, 101, 181, 0.3);
}

.ceo-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-contact-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.ceo-title {
  font-size: 1.1rem;
  color: #1E65B5;
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo-contact-info {
  margin: 20px 0;
}

.ceo-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.ceo-contact-info i {
  color: #30B349;
  font-size: 1.2rem;
}

.ceo-contact-info a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ceo-contact-info a:hover {
  color: #1E65B5;
}

.ceo-message {
  font-style: italic;
  color: #6c757d;
  border-left: 4px solid #1E65B5;
  padding-left: 20px;
  margin-top: 20px;
  line-height: 1.8;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-page .page-title {
    padding: 100px 0 60px 0;
  }

  .ceo-contact-card {
    padding: 30px 20px;
  }

  .ceo-image-circle {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .ceo-contact-card h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .ceo-title {
    text-align: center;
  }

  .ceo-message {
    padding-left: 15px;
  }

  .contact-info-section .info-item {
    padding: 40px 25px;
  }

  .contact-info-section .info-item i {
    font-size: 48px;
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 575px) {
  .contact-info-section .info-item {
    padding: 35px 20px;
  }

  .contact-info-section .info-item i {
    font-size: 42px;
    width: 75px;
    height: 75px;
  }

  .contact-info-section .info-item h3 {
    font-size: 1.2rem;
  }

  .contact-info-section .info-item p {
    font-size: 1rem;
  }

  .ceo-contact-card {
    padding: 25px 15px;
  }

  .ceo-image-circle {
    width: 120px;
    height: 120px;
  }
}

/* Enhanced Section Title for Contact Page */
.contact-info-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-info-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  border-radius: 4px;
}

.contact-info-section .section-title p {
  font-size: 1.15rem;
  color: #6c757d;
  line-height: 1.8;
  max-width: 800px;
  margin: 30px auto 0;
}

@media (max-width: 768px) {
  .contact-info-section .section-title h2 {
    font-size: 2rem;
  }

  .contact-info-section .section-title p {
    font-size: 1.05rem;
  }
}

@media (max-width: 575px) {
  .contact-info-section .section-title h2 {
    font-size: 1.7rem;
  }

  .contact-info-section .section-title p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Projects Page Responsive
--------------------------------------------------------------*/
/* Projects Page Title Styles */
.projects-page .page-title {
  background-position: center center;
  background-size: cover;
  padding: 140px 0 100px 0;
  position: relative;
}

.projects-page .page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 101, 181, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.projects-page .page-title .container {
  position: relative;
  z-index: 2;
}

.projects-page .page-title h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.projects-page .breadcrumbs {
  margin-top: 20px;
}

.projects-page .breadcrumbs ol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.projects-page .breadcrumbs li {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
}

.projects-page .breadcrumbs li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.projects-page .breadcrumbs li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.projects-page .breadcrumbs li.current {
  color: #30B349;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.projects-page .breadcrumbs li:not(:last-child)::after {
  content: '►';
  margin-left: 15px;
  color: #fff;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Center breadcrumbs container */
.projects-page .breadcrumbs {
  text-align: center;
}

/* Responsive adjustments for projects page */
@media (max-width: 768px) {
  .projects-page .page-title {
    padding: 100px 0 60px 0;
  }

  .projects-page .page-title h1 {
    font-size: 2.2rem;
  }

  .projects-page .breadcrumbs ol {
    padding: 10px 20px;
    gap: 10px;
  }

  .projects-page .breadcrumbs li {
    font-size: 0.9rem;
  }

  .projects-page .breadcrumbs li:not(:last-child)::after {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .projects-page .page-title h1 {
    font-size: 2.5rem;
  }

  .projects-page .section-title h2 {
    font-size: 2.2rem;
  }

  #bg-black-img {
    padding: 80px 30px;
  }

  .project-card-clean {
    margin-bottom: 30px;
    padding: 30px 25px !important;
  }

  .project-icon-modern {
    width: 70px;
    height: 70px;
  }

  .project-icon-modern i {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .projects-page .page-title {
    padding: 100px 0 60px 0;
  }

  .projects-page .page-title h1 {
    font-size: 2rem;
  }

  .projects-page .section-title {
    padding: 60px 0 30px 0;
  }

  .projects-page .section-title h2 {
    font-size: 1.8rem;
  }

  .projects-page .section-title p {
    font-size: 1.05rem;
  }

  #bg-black-img {
    padding: 60px 20px;
  }

  .project-card-clean {
    padding: 25px 20px !important;
  }

  .project-icon-modern {
    width: 65px;
    height: 65px;
  }

  .project-icon-modern i {
    font-size: 32px;
  }

  .project-card-clean h5 {
    font-size: 1.3rem;
  }

  .project-card-subtitle {
    font-size: 0.95rem;
  }

  .project-info-item {
    font-size: 0.9rem;
  }

  .project-details-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .projects-page .page-title h1 {
    font-size: 1.75rem;
  }

  .projects-page .section-title h2 {
    font-size: 1.6rem;
  }

  .projects-page .page-title .breadcrumbs ol li {
    font-size: 0.95rem;
  }

  .projects-page #projects {
    padding: 60px 0;
  }

  .portfolio-info a {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .project-card-clean {
    padding: 20px 18px !important;
  }

  .project-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .project-icon-modern i {
    font-size: 28px;
  }

  .project-card-clean h5 {
    font-size: 1.2rem;
  }

  .project-card-subtitle {
    font-size: 0.9rem;
  }

  .project-type-badge {
    font-size: 0.8rem;
    padding: 5px 14px;
  }

  .project-info-item {
    font-size: 0.85rem;
  }

  .project-info-label {
    min-width: 70px;
    font-size: 0.85rem;
  }

  .project-details-btn {
    padding: 11px 18px;
    font-size: 0.95rem;
  }
}

/* Enhanced Projects Section Title - "Our Key Projects" */
.projects-page .container-fluied .section-title {
  margin-bottom: 60px;
  text-align: center;
}

.projects-page .container-fluied .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.projects-page .container-fluied .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  border-radius: 4px;
}

.projects-page .container-fluied .section-title p {
  font-size: 1.15rem;
  color: #6c757d;
  line-height: 1.8;
  max-width: 1000px;
  margin: 30px auto 0;
  text-align: center;
}

/* Projects Cards Enhanced Border Effect */
.projects-page .project-card-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1E65B5 0%, #30B349 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.projects-page .project-card-clean:hover::before {
  transform: scaleX(1);
}

/* Projects Gallery Section Title */
.projects-page #projects .section-title h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.projects-page #projects .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1E65B5, #30B349);
  border-radius: 4px;
}

/* Mobile Responsive for Enhanced Titles */
@media (max-width: 768px) {
  .projects-page .container-fluied .section-title h2 {
    font-size: 2rem;
  }

  .projects-page .container-fluied .section-title p {
    font-size: 1.05rem;
  }

  .projects-page #projects .section-title h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 575px) {
  .projects-page .container-fluied .section-title h2 {
    font-size: 1.7rem;
  }

  .projects-page .container-fluied .section-title p {
    font-size: 1rem;
  }

  .projects-page #projects .section-title h2 {
    font-size: 1.6rem;
  }

  .projects-page .breadcrumbs ol {
    padding: 8px 15px;
    gap: 8px;
  }

  .projects-page .breadcrumbs li {
    font-size: 0.85rem;
  }
}

/* تنسيق الخط الفاصل أسفل العنوان */
.leader-title-divider {
  border: none;
  border-top: 3px solid #30B349;
  width: 100px;
  margin: 10px 0 20px 0;
}

/* تعديل للموبايل - جعل الخط في المنتصف */
@media (max-width: 768px) {
  .leader-title-divider {
    margin: 10px auto 20px auto;
  }
}
