 /* :root {
    --primary: #c5b249; 
    --secondary: #697c8c; 
    --accent: #d4c15e; 
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --section-padding: 6rem 0;
    --max-width: 1400px;
} */

 :root {
     /* ============================================
        OFFICIAL PALETTE — "Sky & Slate"
        Institutional light sky-blue with a
        slate-navy accent for official highlights.
        ============================================ */
     --primary: #0B7FC4;
     /* Sky Blue */
     --primary-dark: #0B4F7A;
     /* Deep Slate Navy */
     --secondary: #3E9BD4;
     /* Light Sky Blue */
     --accent: #1E93DC;
     /* Bright Sky Accent */
     --gold-light: #B8DFF5;
     /* Pale Sky */
     --light: #F3F8FC;
     /* Very light sky */
     --dark: #152B3F;
     /* Slate */
     --gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
     --section-padding: 2rem 0;
     --max-width: 1400px;

     /* Modern Structural Variables */
     --border-radius-lg: 24px;
     --border-radius-md: 16px;
     --border-radius-sm: 8px;

     /* Shadows */
     --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
     --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
     --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
     --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
     --shadow-primary: 0 10px 30px -8px rgba(11, 127, 196, 0.35);
 }

 html {
     font-size: 16px;
 }

 @media (max-width: 992px) {
     html {
         font-size: 15px;
     }
 }

 @media (max-width: 768px) {
     html {
         font-size: 14px;
     }
 }


 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Cairo', 'Inter', sans-serif;
     background-color: var(--light);
     color: var(--dark);
     overflow-x: hidden;
     line-height: 1.8;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

 .team {
     padding: var(--section-padding);
     background: white;
     max-width: var(--max-width);
     margin: 0 auto;
 }

 .team-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 3rem;
 }

 .team-member {
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 3rem;
     margin-bottom: 5rem;
     background: white;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     overflow: hidden;
 }

 .member-image {
     position: relative;
 }

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

 .member-image .social-links {
     position: absolute;
     bottom: 20px;
     left: 20px;
     display: flex;
     gap: 1rem;
 }

 .member-image .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.9);
     color: var(--secondary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .member-image .social-links a:hover {
     background: var(--primary);
     color: white;
 }

 .member-info {
     padding: 3rem 2rem 3rem 0;
 }

 .member-info h3 {
     font-size: 2rem;
     color: var(--secondary);
     margin-bottom: 0.5rem;
 }

 .member-info .position {
     color: var(--primary);
     font-weight: 700;
     margin-bottom: 1.5rem;
     font-size: 1.2rem;
 }

 .member-info .bio {
     color: #666;
     margin-bottom: 2rem;
     line-height: 1.8;
 }

 .member-contact p {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     color: var(--secondary);
     margin-bottom: 0.8rem;
 }

 .member-contact i {
     color: var(--primary);
 }

 .members-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2.5rem;
 }

 .member-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
 }

 .member-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 @media (max-width: 768px) {
     .members-row {
         flex-direction: column !important;
     }

     .member-card {
         flex-direction: column !important;
         padding: 10px;
     }

     .card-image {
         flex: none !important;
         width: 100% !important;
         height: auto !important;
     }

     .card-image img {
         width: 100% !important;
         height: auto !important;
         border-radius: 10px 10px 0 0 !important;
     }

     .card-body {
         padding: 15px !important;
     }

     .card-body h4 {
         text-align: center;
     }

     .card-body p {
         text-align: center;
     }

     .card-body .position {
         text-align: center;
     }

     .card-body .bio {
         text-align: center;
     }

     .card-body div:last-child {
         justify-content: center;
     }
 }

 .card-image {
     height: 250px;
     overflow: hidden;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .member-card:hover .card-image img {
     transform: scale(1.1);
 }

 .card-body {
     padding: 1.5rem;
     text-align: center;
 }

 .card-body h4 {
     font-size: 1.4rem;
     color: var(--secondary);
     margin-bottom: 0.3rem;
 }

 .card-body .position {
     color: var(--primary);
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .card-body .bio {
     color: #666;
     margin-bottom: 1.5rem;
     font-size: 0.95rem;
     line-height: 1.7;
 }

 .btn-outline {
     color: var(--secondary);
     border: 2px solid var(--secondary);
     padding: 0.6rem 1.5rem;
     font-size: 0.9rem;
     margin-top: 1rem;
 }

 .btn-outline:hover {
     background: var(--secondary);
     color: white;
 }

 @media (max-width: 992px) {
     .team-member {
         grid-template-columns: 1fr;
     }

     .member-info {
         padding: 2rem;
     }
 }

 @media (max-width: 768px) {
     .team-container {
         padding: 0 1.5rem;
     }

     .members-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 576px) {
     .members-grid {
         grid-template-columns: 1fr;
     }
 }

 /* التصميم الموسع للهيدر */
 header {
     background-color: rgba(255, 255, 255, 0.92);
     color: var(--dark);
     padding: 1rem 0;
     box-shadow: 0 4px 18px -6px rgba(11, 79, 122, 0.12);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     position: sticky;
     top: 0;
     z-index: 2100;
     /* Higher than overlay (1999) */
     transition: all 0.3s ease;
     width: 100%;
 }

 @media (max-width: 768px) {
     header {
         padding: 0.8rem 0;
     }
 }

 header.scrolled {
     background-color: #ffffff;
     box-shadow: 0 6px 30px -8px rgba(11, 79, 122, 0.16);
     padding: 0.8rem 0;
 }

/* Official Utility / Top Bar */
.top-bar {
     background: #E7F1F9;
     color: #35556F;
     font-size: 0.85rem;
     border-top: 3px solid var(--accent);
     border-bottom: 1px solid rgba(11, 79, 122, 0.12);
 }

.top-bar-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1.5rem;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0.55rem 2rem;
}

.top-bar-contact {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 0.5rem 2rem;
}

 .top-bar-item {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     color: #35556F;
 }

 .top-bar-item i {
     color: var(--primary);
     font-size: 0.8rem;
 }

.top-bar-lang {
     display: flex;
     align-items: center;
}

 .top-bar .lang-toggle-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.35rem 1rem;
     background: rgba(11, 127, 196, 0.08);
     border: 1px solid rgba(11, 127, 196, 0.28);
     border-radius: 50px;
     color: var(--primary-dark);
     text-decoration: none;
     font-weight: 700;
     font-size: 0.85rem;
     transition: all 0.3s ease;
 }

 .top-bar .lang-toggle-btn:hover {
     background: var(--primary);
     border-color: var(--primary);
     color: #fff;
 }

@media (max-width: 992px) {
     .top-bar {
          display: none;
     }
}

@media (max-width: 576px) {
     .top-bar-inner {
          padding: 0.5rem 1.5rem;
     }

     .top-bar-hours {
          display: none;
     }
}

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .logo img {
     height: 60px;
     width: auto;
     filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
     transition: height 0.3s ease;
 }

 header.scrolled .logo img {
     height: 50px;
 }

   .logo-text h1 {
     font-size: 1.5rem;
     font-weight: 800;
     margin-bottom: 0.1rem;
     color: var(--dark);
 }

  .logo-text p {
     font-size: 0.8rem;
     opacity: 0.9;
     color: #35556F;
 }

 /* القائمة الموسعة */
 nav {
     display: flex;
     align-items: center;
     gap: 2rem;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 0.5rem;
     margin: 0;
     padding: 0;
     align-items: center;
 }

   .nav-links a {
     color: var(--dark);
     text-decoration: none;
     font-weight: 500;
     font-size: 1rem;
     position: relative;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.75rem 1rem;
     border-radius: 0;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: transparent;
     transition: all 0.3s ease;
 }

   .nav-links a:hover {
     background: rgba(11, 127, 196, 0.07);
 }

  .nav-links a:hover::after {
     background: var(--primary);
 }

 /* Modern Active State - Bottom Border Only */
 .nav-links a.active {
     background: rgba(255, 255, 255, 0.01);
     font-weight: 600;
 }

   .nav-links a.active::after {
     background: var(--primary);
     box-shadow: 0 0 8px rgba(11, 127, 196, 0.4);
 }

 .nav-cta.active:hover {
     background: linear-gradient(135deg, #0E6DA6 0%, #0B7FC4 100%) !important;
 }







/* CTA Button (Complaint) */
 .nav-cta {
     background: linear-gradient(135deg, #0E6DA6 0%, #0B7FC4 100%) !important;
     color: #ffffff !important;
     padding: 0.75rem 1.5rem !important;
     border-radius: 50px !important;
     font-weight: 800 !important;
     box-shadow: 0 4px 15px rgba(11, 127, 196, 0.35) !important;
     margin-left: 0.5rem;
 }

[dir="rtl"] .nav-cta {
     margin-left: 0;
     margin-right: 0.5rem;
}

 .nav-cta:hover {
     background: linear-gradient(135deg, #0B7FC4 0%, #3E9BD4 100%) !important;
     transform: translateY(-3px) !important;
     box-shadow: 0 6px 20px rgba(11, 127, 196, 0.45) !important;
 }

 /* Remove underline and borders from CTA button */
 .nav-links a.nav-cta::after,
 .nav-links a.nav-cta:hover::after,
 .nav-links a.nav-cta.active::after {
     display: none !important;
     content: none !important;
 }

 .nav-links a.nav-cta.active {
     border: none !important;
 }

 /* Dropdown Menu Styles */
 .dropdown {
     position: relative;
 }

 .dropdown-toggle {
     cursor: pointer;
     user-select: none;
 }

 .dropdown-icon {
     font-size: 0.7rem;
     margin-left: 0.25rem;
     transition: transform 0.3s ease;
 }

 .dropdown:hover .dropdown-icon {
     transform: rotate(180deg);
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     right: 0;
     background: white;
     min-width: 220px;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     z-index: 1000;
     margin-top: 0.5rem;
     padding: 0.5rem 0;
     list-style: none;
 }

 [dir="ltr"] .dropdown-menu {
     right: auto;
     left: 0;
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu li {
     margin: 0;
 }

 .dropdown-menu a {
     color: var(--secondary) !important;
     padding: 0.75rem 1.25rem !important;
     display: flex !important;
     align-items: center;
     gap: 0.75rem;
     font-size: 0.95rem !important;
     border-radius: 0 !important;
     background: transparent !important;
     transition: all 0.2s ease !important;
 }

.dropdown-menu a:hover {
     background: linear-gradient(135deg, rgba(11, 127, 196, 0.08) 0%, rgba(30, 147, 220, 0.06) 100%) !important;
     color: var(--primary) !important;
     transform: translateX(-5px) !important;
     padding-right: 1.5rem !important;
}

 [dir="ltr"] .dropdown-menu a:hover {
     transform: translateX(5px) !important;
     padding-right: 1.25rem !important;
     padding-left: 1.5rem !important;
 }

 .dropdown-menu a i {
     color: var(--primary);
     font-size: 1rem;
 }

.nav-cta.active {
     background: linear-gradient(135deg, #5FADE0 0%, #1E93DC 100%) !important;
     border-bottom: none !important;
     color: #0F3E63 !important;
}

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--dark);
     font-size: 1.5rem;
     cursor: pointer;
     padding: 0.5rem;
 }

 @media (max-width: 992px) {
     .mobile-menu-btn {
         display: block;
     }

     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         /* Slide from right */
         left: auto;
         width: 85%;
         /* Make it wider on mobile, almost full width */
         max-width: 320px;
         background: #ffffff !important;
         /* Force solid white */
         /* backdrop-filter removed to fix blurriness */
         flex-direction: column;
         align-items: stretch;
         padding: 6rem 1.5rem 2rem;
         gap: 0;
         transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
         z-index: 2002;
         /* Relative to header */
         overflow-y: auto;
     }

     [dir="ltr"] .nav-links {
         right: auto;
         left: -100%;
         transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
     }

     .nav-links.active {
         right: 0;
     }

     [dir="ltr"] .nav-links.active {
         left: 0;
     }

     /* Overlay for mobile menu */
     .nav-overlay {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: rgba(0, 0, 0, 0.5);
         opacity: 0;
         visibility: hidden;
         transition: all 0.3s ease;
         z-index: 1999 !important;
         /* Below header (2100) */
         /* backdrop-filter: blur(3px) removed */
     }

     .nav-overlay.active {
         opacity: 1;
         visibility: visible;
     }

     .mobile-menu-btn {
         display: block;
         z-index: 1002;
         position: relative;
         color: white;
         /* White icon for dark header */
         /* Dark color by default */
         background: rgba(255, 255, 255, 0.1);
         border-radius: 50%;
         width: 45px;
         height: 45px;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: all 0.3s ease;
     }

     .mobile-menu-btn:hover {
         background: rgba(255, 255, 255, 0.2);
     }

     /* Invert color when menu is open or scrolled header */
     .nav-links.active~.mobile-menu-btn,
     .header.scrolled .mobile-menu-btn {
         background: rgba(255, 255, 255, 0.2);
         color: var(--primary);
     }

     .nav-links li {
         width: 100%;
         margin-bottom: 0.5rem;
         opacity: 0;
         transform: translateX(20px);
         transition: all 0.4s ease;
     }

     .nav-links.active li {
         opacity: 1;
         transform: translateX(0);
     }

     /* Stagger li animations */
     .nav-links.active li:nth-child(1) {
         transition-delay: 0.1s;
     }

     .nav-links.active li:nth-child(2) {
         transition-delay: 0.15s;
     }

     .nav-links.active li:nth-child(3) {
         transition-delay: 0.2s;
     }

     .nav-links.active li:nth-child(4) {
         transition-delay: 0.25s;
     }

     .nav-links.active li:nth-child(5) {
         transition-delay: 0.3s;
     }

     .nav-links.active li:nth-child(6) {
         transition-delay: 0.35s;
     }

     .nav-links a {
         width: 100%;
         display: flex !important;
         /* Force flex display */
         justify-content: flex-start;
         align-items: center;
         padding: 1rem 1.25rem;
         border-radius: 12px;
         font-size: 1.1rem;
         gap: 1rem;
         color: #2c3e50;
         /* Darker, clearer text color */
         font-weight: 600;
         transition: all 0.2s ease;
         background: transparent;
         pointer-events: auto;
         /* Ensure clicks are captured */
         margin-bottom: 0.5rem;
     }

     .nav-links a:hover,
     .nav-links a.active {
         background: #f1f5f9;
         /* Light gray background on hover */
         color: var(--primary);
         padding-right: 1.5rem;
     }

     [dir="ltr"] .nav-links a:hover,
     [dir="ltr"] .nav-links a.active {
         padding-right: 1rem;
         padding-left: 1.5rem;
         /* Slide effect on hover ltr */
         background: linear-gradient(90deg, rgba(11, 127, 196, 0.08), transparent);
     }

     .nav-links a i {
         font-size: 1.25rem;
         min-width: 28px;
         color: var(--primary);
     }

     .nav-links a::after {
         display: none;
     }

     /* Language Switcher Styling - Simple Button */
     .lang-switcher {
         margin-left: 2rem;
     }

     [dir="ltr"] .lang-switcher {
         margin-left: 0;
         margin-right: 2rem;
     }

     .lang-toggle-btn {
         display: flex;
         align-items: center;
         gap: 0.5rem;
         padding: 0.6rem 1.25rem;
         background: rgba(255, 255, 255, 0.15);
         border: 1px solid rgba(255, 255, 255, 0.3);
         border-radius: 50px;
         color: white;
         text-decoration: none;
         font-weight: 600;
         font-size: 0.95rem;
         transition: all 0.3s ease;
     }

.lang-toggle-btn:hover {
     background: white;
     color: var(--primary);
     transform: translateY(-2px);
 }

     /* Mobile styles for lang switcher */
     @media (max-width: 992px) {
         .lang-switcher {
             order: -1;
             margin: 0 0 2rem 0;
             padding-bottom: 1rem;
             border-bottom: 1px solid rgba(0, 0, 0, 0.05);
             width: 100%;
         }

         .lang-switcher-wrapper {
             width: 100%;
         }

         .lang-toggle-btn {
             width: 100%;
             justify-content: center;
             background: transparent;
             border: 1px solid #e2e8f0;
             color: #2c3e50 !important;
             padding: 0.8rem;
             border-radius: 12px;
         }

         .lang-toggle-btn:hover {
             background: #f1f5f9;
             color: var(--primary) !important;
             transform: none;
         }
     }



     /* CTA Button inside menu */
     .nav-cta {
         margin-top: 1rem;
         background: linear-gradient(135deg, #5FADE0 0%, #1E93DC 100%) !important;
         color: #0F3E63 !important;
         justify-content: center !important;
         box-shadow: 0 4px 15px rgba(30, 147, 220, 0.3) !important;
     }

     /* Hide desktop dropdown logic for mobile, show items directly or accordions */
     /* Hide desktop dropdown logic for mobile, show items directly or accordions */
     .dropdown-menu {
         position: static !important;
         /* Force flow layout */
         box-shadow: none !important;
         opacity: 1 !important;
         visibility: visible !important;
         transform: none !important;
         background: transparent !important;
         padding-right: 1.5rem;
         display: none;
         /* Hidden by default, toggled via JS */
         margin-top: 0;
         padding-top: 0.5rem;
     }

     /* Force override for dropdown menu items on mobile */
     /* Force override for dropdown menu items on mobile with high specificity */
     .nav-links .dropdown-menu a {
         color: #5d6d7e !important;
         font-size: 1rem !important;
         padding: 0.8rem 1rem !important;
         background: transparent !important;
         display: flex !important;
     }

     /* Fix hover state for mobile dropdown links */
     .nav-links .dropdown-menu a:hover,
     .nav-links .dropdown-menu a:focus {
         color: #2c3e50 !important;
         /* Dark text on hover */
         background-color: #f1f5f9 !important;
         /* Light gray bg */
     }



     [dir="ltr"] .dropdown-menu {
         padding-right: 0;
         padding-left: 1.5rem;
     }

     .dropdown-toggle {
         justify-content: space-between;
     }

     /* Disable hover open on mobile, only allow click toggle */
     .dropdown:hover .dropdown-menu {
         display: none;
         opacity: 0;
         visibility: hidden;
     }

     /* Only show when explicitly active */
     .dropdown.active .dropdown-menu {
         display: block !important;
         opacity: 1 !important;
         visibility: visible !important;
         transform: none !important;
     }

     @keyframes slideDown {
         from {
             opacity: 0;
             transform: translateY(-10px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

     .lang-btn {
         width: 100%;
         padding: 1rem 1.5rem !important;
         font-size: 1.1rem !important;
         justify-content: center;
     }

     .nav-cta {
         margin-left: 0 !important;
         margin-right: 0 !important;
         margin-top: 0.5rem;
     }

     .nav-links.active {
         transform: translateY(0);
     }

     header.scrolled~.nav-links {
         top: 70px;
     }
 }

 /* Language toggle lives in the official top bar on desktop;
    the in-menu copy is only used inside the mobile drawer. */
 @media (min-width: 993px) {
     .nav-links .lang-switcher {
         display: none;
     }
 }

 /* البانر الرئيسي الموسع */
 .hero {
     height: 90vh;
     min-height: 700px;
     background: url('../images/background.webp') center/cover no-repeat;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 /* Enable zoom animation only on desktop */
 @media (min-width: 768px) {
     .hero {
         animation: zoomEffect 20s infinite alternate;
     }
 }

 /* Zoom keyframes */
 @keyframes zoomEffect {
     0% {
         background-size: 100%;
     }

     100% {
         background-size: 120%;
     }
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(90, 111, 128, 0.5);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 3rem;
     width: 100%;
 }

 .hero-text {
     max-width: 800px;
 }

 .hero h2 {
     font-size: 4rem;
     font-weight: 900;
     margin-bottom: 1.5rem;
     line-height: 1.2;
     color: white;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

 .hero p {
     font-size: 1.4rem;
     max-width: 700px;
     margin-bottom: 3rem;
     color: rgba(255, 255, 255, 0.95);
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 }

 .btn {
     display: inline-block;
     padding: 0.8rem 2.5rem;
     border-radius: 50px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.4s ease;
     border: none;
     cursor: pointer;
     font-size: 1.1rem;
     box-shadow: var(--shadow-md);
 }

 .btn-primary {
     background: var(--primary);
     color: var(--light);
 }

 .btn-primary:hover {
     background: var(--accent);
     transform: translateY(-3px);
     box-shadow: var(--shadow-hover);
 }

 .btn-outline {
     color: white;
     border: 2px solid white;
     margin-left: 1.5rem;
     padding: 0.7rem 2.5rem;
 }

 .btn-outline:hover {
     background: white;
     color: var(--secondary);
     border-color: white;
 }

 /* قسم الخدمات الموسع */
 .services {
     padding: var(--section-padding);
     max-width: var(--max-width);
     margin: 0 auto;
 }

 .section-header {
     text-align: center;
     margin-bottom: 3rem;
     padding: 0 2rem;
 }

 .section-header h2 {
     font-size: clamp(1.75rem, 3vw, 2.25rem);
     color: var(--dark);
     margin-bottom: 1rem;
     position: relative;
     display: inline-block;
     font-weight: 700;
     letter-spacing: -0.02em;
 }

 .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: var(--primary);
     border-radius: 2px;
 }

 .section-header p {
     font-size: 1rem;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;

     padding: 0 3rem;
 }

 .service-card {
     background: white;
     border-radius: var(--border-radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-align: center;
     padding: 3rem 2rem;
     border: 1px solid rgba(0, 0, 0, 0.05);
     position: relative;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--gradient);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.08);
     border-color: rgba(0, 0, 0, 0.1);
 }

 .service-card:hover::before {
     opacity: 1;
 }

 .service-icon {
     width: 90px;
     height: 90px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     color: white;
     font-size: 2.2rem;
     box-shadow: 0 8px 16px rgba(197, 178, 73, 0.25);
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1);
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--secondary);
     font-weight: 600;
 }

 .service-card p {
     color: #666;
     margin-bottom: 1.5rem;
     font-size: 1.05rem;
     line-height: 1.7;
 }

 .service-link {
     color: var(--primary);
     text-decoration: none;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s ease;
     font-size: 0.95rem;
 }

 .service-link:hover {
     color: var(--secondary);
     gap: 1rem;
 }

 /* قسم عن البلدية الموسع */
 .about {
     padding: var(--section-padding);
     background: url('../images/about-bg.jpg') center/cover fixed;
     position: relative;
     color: white;
 }

 .about::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--accent);
 }

 .about-container {
     position: relative;
     z-index: 2;
     max-width: var(--max-width);
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     padding: 0 3rem;
 }

 .about-content h2 {
     font-size: 3rem;
     margin-bottom: 2rem;
     color: var(--primary);
 }

 .about-content p {
     margin-bottom: 2rem;
     line-height: 1.9;
     font-size: 1.1rem;
     opacity: 0.9;
 }

 .about-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     margin-top: 3rem;
 }

 @media (max-width: 767px) {
     .about-container {
         grid-template-columns: 1fr;
         /* Stack content */
         text-align: center;
         padding: 0 1.5rem;
     }

     .about-image {
         order: -1;
         /* Show image before text if needed */
     }

     .about-image img {
         width: 100%;
         height: auto;
         border-radius: 1rem;
     }

     .about-stats {
         grid-template-columns: 1fr;
         /* Stack stats vertically */
         gap: 1rem;
     }
 }

 .stat-item {
     background: rgba(255, 255, 255, 0.1);
     padding: 2rem;
     border-radius: 15px;
     text-align: center;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.4s ease;
 }

 .stat-item:hover {
     transform: translateY(-10px);
     background: rgba(0, 81, 255, 0.2);
 }

 .stat-item h3 {
     font-size: 3rem;
     margin-bottom: 0.5rem;
     color: var(--primary);
     font-weight: 800;
 }

 .stat-item p {
     font-size: 1.1rem;
     opacity: 0.9;
 }

 .about-image {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
     height: 100%;
     min-height: 500px;
 }

 .about-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .about-image:hover img {
     transform: scale(1.05);
 }

 /* قسم الأخبار الموسع */
 .news {
     padding: var(--section-padding);
     max-width: var(--max-width);
     margin: 0 auto;
     margin-top: 1rem;
     background: white;
 }

 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 3rem;
     margin-bottom: 2.5rem;
     padding: 0 3rem;
 }

 .news-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 .news-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.08);
     border-color: rgba(0, 0, 0, 0.1);
 }

 .news-image {
     height: 220px;
     overflow: hidden;
     position: relative;
 }

 .news-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .news-card:hover .news-image::after {
     opacity: 1;
 }

 .news-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

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

 .news-content {
     padding: 1.75rem;
 }

 .news-date {
     display: inline-block;
     background: var(--primary);
     color: white;
     padding: 0.4rem 1.25rem;
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 1.25rem;
 }

 .news-content h3 {
     font-size: 1.4rem;
     margin-bottom: 0.75rem;
     color: var(--secondary);
     line-height: 1.4;
     font-weight: 600;
 }

 .news-content p {
     color: #666;
     margin-bottom: 1.25rem;
     font-size: 1.05rem;
     line-height: 1.7;
 }

 .news-link {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--primary);
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     font-size: 0.95rem;
 }

 .news-link:hover {
     color: var(--secondary);
     gap: 1rem;
 }

 /* الفوتر الموسع */
  footer {
     background: #EAF3FB;
     color: var(--dark);
     padding: 5rem 0 2rem;
     margin-top: 4rem;
     position: relative;
     border-top: 3px solid var(--accent);
 }

 .footer-container {
     max-width: var(--max-width);
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
     padding: 0 3rem;
 }

  .footer-col h3 {
     font-size: 1.5rem;
     margin-bottom: 2rem;
     position: relative;
     padding-bottom: 0.8rem;
     color: var(--dark);
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 60px;
     height: 3px;
     background: var(--accent);
     border-radius: 2px;
 }

 html[dir="ltr"] .footer-col h3::after {
     right: auto;
     left: 0;
 }

  .footer-col p {
     color: #48657E;
     line-height: 1.9;
     margin-bottom: 2rem;
     font-size: 1.1rem;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 1rem;
 }

  .footer-links a {
     color: #35556F;
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.8rem;
     font-size: 1.1rem;
 }

 .footer-links a:hover {
     color: var(--primary);
     transform: translateX(10px);
 }

 .social-links {
     display: flex;
     gap: 1.5rem;
     margin-top: 2rem;
 }

  .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 50px;
     height: 50px;
     background: rgba(11, 127, 196, 0.1);
     border-radius: 50%;
     color: var(--primary);
     transition: all 0.3s ease;
     font-size: 1.3rem;
     text-decoration: none;
 }

 .social-links a:hover {
     background: var(--primary);
     color: #fff;
     transform: translateY(-5px);
 }

  .footer-bottom {
     text-align: center;
     padding-top: 3rem;
     margin-top: 3rem;
     border-top: 1px solid rgba(11, 79, 122, 0.14);
     color: #48657E;
     font-size: 1rem;
     padding: 0 3rem;
 }

 /* تأثيرات الحركة */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .animate {
     opacity: 0;
     animation: fadeInUp 1s ease forwards;
 }

 .delay-1 {
     animation-delay: 0.2s;
 }

 .delay-2 {
     animation-delay: 0.4s;
 }

 .delay-3 {
     animation-delay: 0.6s;
 }

 /* التجاوب */
 @media (max-width: 1200px) {
     :root {
         --max-width: 100%;
         --section-padding: 5rem 2rem;
     }

     .hero h2 {
         font-size: 3.5rem;
     }
 }

 @media (max-width: 992px) {
     .about-container {
         grid-template-columns: 1fr;
     }

     .about-image {
         min-height: 400px;
         order: -1;
     }

     .hero h2 {
         font-size: 3rem;
     }

     .hero p {
         font-size: 1.2rem;
     }

     .section-header h2 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .header-container {
         padding: 0 2rem;
     }

     .nav-links {
         position: fixed;
         top: 0;
         left: -100%;
         width: 80%;
         height: 100vh;
         background: var(--secondary);
         flex-direction: column;
         align-items: flex-start;
         justify-content: center;
         gap: 2rem;
         transition: all 0.5s ease;
         padding: 0 2rem;
         z-index: 999;
     }

     .nav-links.active {
         left: 0;
     }

     .mobile-menu-btn {
         display: block;
         z-index: 1000;
     }

     .hero {
         height: auto;
         padding: 8rem 0;
         min-height: auto;
     }

     .hero h2 {
         font-size: 2.5rem;
     }

     .btn-group {
         display: flex;
         flex-direction: column;
         gap: 1.5rem;
     }

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

     .services-grid,
     .news-grid {
         grid-template-columns: repeat(2, 1fr);
         padding: 0 1rem;
         gap: 1.5rem;
     }

     .section-header {
         padding: 0 1rem;
         margin-bottom: 3rem;
     }
 }

 @media (max-width: 576px) {
     .header-container {
         padding: 0 1.5rem;
     }

     .hero-content {
         padding: 0 1.5rem;
     }

     .hero h2 {
         font-size: 2.2rem;
     }

     .logo img {
         height: 50px;
     }

     .logo-text h1 {
         font-size: 1.5rem;
     }

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

     .footer-container {
         grid-template-columns: 1fr;
         padding: 0 1.5rem;
     }
 }

 /* Pagination Styles */
 .pagination {
     display: flex;
     justify-content: center;
     align-items: center;
     list-style: none;
     padding: 1rem 0;
     margin: 2rem auto 0;
     direction: rtl;
     gap: 8px;
 }

 .pagination .page-item {
     display: inline-block;
 }

 .pagination .page-link {
     display: inline-block;
     padding: 8px 16px;
     font-size: 1rem;
     color: #444;
     border: 1px solid #ccc;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.3s ease;
     background-color: #f9f9f9;
 }

 .pagination .page-link:hover {
     background-color: var(--primary);
     color: #fff;
     border-color: var(--secondary);
 }

 .pagination .active .page-link {
     background-color: var(--primary);
     color: #fff;
     border-color: var(--primary);
     font-weight: bold;
     box-shadow: 0 0 8px rgba(11, 127, 196, 0.35);
 }


 .btn-danger {
     background-color: #dc3545;
     color: white;
     border: none;
 }

 .btn-danger:hover {
     background-color: #c82333;
 }

 /* Form specific styles */
 .request-form-section {
     margin: 4rem auto;
     /* Added top and bottom margin, kept auto for horizontal centering */
     padding: 4rem 3rem;
     /* Retained internal padding for content inside the form */
     max-width: 800px;
     background: white;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .request-form-container {
     padding: 0 3rem;
 }

 .request-form-section .section-header {
     text-align: center;
     margin-bottom: 3rem;
     /* Adjusted for form section */
 }

 .request-form-section .section-header h2 {
     font-size: 3rem;
     color: var(--dark);
     margin-bottom: 1.5rem;
     position: relative;
     display: inline-block;
 }

 .request-form-section .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 120px;
     height: 5px;
     background: var(--primary);
     border-radius: 3px;
 }

 .request-form-section .section-header p {
     font-size: 1.3rem;
     color: var(--secondary);
     max-width: 800px;
     margin: 0 auto;
     opacity: 0.9;
 }

 .form-group {
     margin-bottom: 2rem;
 }

 .form-group label {
     display: block;
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 0.8rem;
 }

 .form-group input[type="text"],
 .form-group input[type="email"],
 .form-group input[type="tel"],
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 1rem 1.2rem;
     border: 1px solid rgba(0, 0, 0, 0.1);
     border-radius: var(--border-radius-sm);
     font-family: 'Cairo', 'Inter', sans-serif;
     font-size: 1rem;
     color: var(--dark);
     transition: all 0.3s ease;
     background-color: #f8fafc;
 }

 .form-group input[type="text"]:focus,
 .form-group input[type="email"]:focus,
 .form-group input[type="tel"]:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(11, 127, 196, 0.15);
     background-color: white;
 }

 .form-group textarea {
     min-height: 150px;
     resize: vertical;
 }

 .form-group select {
     appearance: none;
     /* Remove default arrow */
     -webkit-appearance: none;
     -moz-appearance: none;
     background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%230B7FC4%22%20d%3D%22M5%206l5%205%205-5%202%202-7%207-7-7%202-2z%22%2F%3E%3C%2Fsvg%3E');
     background-repeat: no-repeat;
     background-position: left 1.2rem center;
     /* Position for RTL */
     background-size: 1rem;
     padding-left: 3rem;
     /* Make space for the arrow */
 }

 [dir="rtl"] .form-group select {
     /* Specific for RTL */
     background-position: right 1.2rem center;
     padding-right: 3rem;
     padding-left: 1.2rem;
 }


 .file-upload-wrapper {
     border: 2px dashed #ccc;
     border-radius: 10px;
     padding: 2rem;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     background-color: #f0f0f0;
 }

 .file-upload-wrapper:hover {
     border-color: var(--primary);
     background-color: #e9e9e9;
 }

 .file-upload-wrapper i {
     font-size: 2.5rem;
     color: var(--secondary);
     margin-bottom: 1rem;
 }

 .file-upload-wrapper p {
     font-size: 1.1rem;
     color: #666;
     margin-bottom: 0.5rem;
 }

 .file-upload-wrapper span {
     display: block;
     font-size: 0.9rem;
     color: #888;
 }

 .file-upload-wrapper input[type="file"] {
     display: none;
 }

 #fileList {
     margin-top: 1rem;
     font-size: 0.95rem;
     color: var(--dark);
 }

 .form-actions {
     text-align: center;
     margin-top: 4rem;
 }

 .form-actions button {
     padding: 1rem 3rem;
     border-radius: 50px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.4s ease;
     border: none;
     cursor: pointer;
     font-size: 1.2rem;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     background: var(--primary);
     color: white;
 }

 .form-actions button:hover {
     background: var(--secondary);
     transform: translateY(-5px);
     box-shadow: var(--shadow-primary);
 }

 /* Footer (copied from your provided HTML) */
 footer {
     background: var(--primary-dark);
     color: white;
     padding: 5rem 0 2rem;
     margin-top: 4rem;
     position: relative;
     border-top: 3px solid var(--accent);
 }

 .footer-container {
     max-width: var(--max-width);
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
     padding: 0 3rem;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 60px;
     height: 3px;
     background: var(--accent);
     border-radius: 2px;
 }

 .footer-col p {
     opacity: 0.8;
     line-height: 1.9;
     margin-bottom: 2rem;
     font-size: 1.1rem;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 1rem;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.8rem;
     font-size: 1.1rem;
 }

 .footer-links a:hover {
     opacity: 1;
     color: var(--gold-light);
     transform: translateX(10px);
 }

 .social-links {
     display: flex;
     gap: 1.5rem;
     margin-top: 2rem;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: all 0.3s ease;
     font-size: 1.3rem;
 }

 .social-links a:hover {
     background: var(--accent);
     color: #0F3E63;
     transform: translateY(-5px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 3rem;
     margin-top: 3rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     opacity: 0.7;
     font-size: 1rem;
     padding: 0 3rem;
 }

 /* End of footer styles */

 /* Responsive adjustments for form */
 @media (max-width: 768px) {
     .request-form-container {
         padding: 0 1.5rem;
     }

     .request-form-section .section-header h2 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 576px) {
     .request-form-section .section-header h2 {
         font-size: 2rem;
     }
 }

 /* General Responsive adjustments (copied from your provided HTML) */
 @media (max-width: 1200px) {
     :root {
         --max-width: 100%;
         --section-padding: 5rem 2rem;
     }
 }

 @media (max-width: 992px) {
     .about-container {
         grid-template-columns: 1fr;
     }

     .about-image {
         min-height: 400px;
         order: -1;
     }

     .section-header h2 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .header-container {
         padding: 0 2rem;
     }

     .nav-links {
         position: fixed;
         top: 0;
         left: -100%;
         width: 80%;
         height: 100vh;
         background: var(--secondary);
         flex-direction: column;
         align-items: flex-start;
         justify-content: center;
         gap: 2rem;
         transition: all 0.5s ease;
         padding: 0 2rem;
         z-index: 999;
     }

     .nav-links.active {
         left: 0;
     }

     .mobile-menu-btn {
         display: block;
         z-index: 1000;
     }

     /* Mobile Navigation Full Width */
     .nav-links li {
         width: 100%;
     }

     .nav-links a {
         width: 100%;
         padding: 1rem 1.5rem !important;
         justify-content: flex-start;
         font-size: 1.1rem;
     }

     /* Mobile Dropdown Styles */
     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: rgba(255, 255, 255, 0.05);
         margin: 0;
         padding: 0;
         border-radius: 0;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
     }

     .dropdown.active .dropdown-menu {
         max-height: 500px;
     }

     .dropdown-toggle {
         width: 100%;
         display: flex !important;
         justify-content: space-between;
         align-items: center;
     }

     .dropdown-icon {
         margin-left: auto;
         margin-right: 0;
         transition: transform 0.3s ease;
     }

     .dropdown.active .dropdown-icon {
         transform: rotate(180deg);
     }

     .dropdown-menu a {
         color: rgba(255, 255, 255, 0.9) !important;
         background: transparent !important;
         padding: 0.75rem 1.5rem 0.75rem 2.5rem !important;
         font-size: 1rem !important;
     }

     .dropdown-menu a:hover {
         background: rgba(255, 255, 255, 0.1) !important;
         color: white !important;
         transform: none !important;
         padding-right: 1.5rem !important;
     }

     .dropdown-menu a i {
         color: var(--primary);
     }

     /* Language Switcher Mobile */
     .lang-switcher-wrapper {
         position: fixed;
         bottom: 2rem;
         left: 50%;
         transform: translateX(-50%);
         z-index: 1001;
         margin: 0;
     }

     .lang-switcher-toggle {
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     }

     .lang-switcher-menu {
         bottom: calc(100% + 0.5rem);
         top: auto;
     }

     /* CTA Button Mobile */
     .nav-cta {
         margin: 1rem 0 0 0 !important;
         width: 100%;
         text-align: center;
         justify-content: center;
     }

     .services-grid,
     .news-grid {
         grid-template-columns: repeat(2, 1fr);
         padding: 0 1rem;
         gap: 1.5rem;
     }

     .section-header {
         padding: 0 1rem;
         margin-bottom: 3rem;
     }
 }

 @media (max-width: 576px) {
     .header-container {
         padding: 0 1.5rem;
     }

     .logo img {
         height: 50px;
     }

     .logo-text h1 {
         font-size: 1.5rem;
     }

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

     .footer-container {
         grid-template-columns: 1fr;
         padding: 0 1.5rem;
     }
 }

 .jobs {
     padding: var(--section-padding);
     max-width: var(--max-width);
     margin: 0 auto;
     margin-top: 1rem;
     background: white;
 }

 .jobs-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     padding: 1rem;
 }

 .job-card {
     background: var(--light);
     padding: 1.5rem;
     border: 1px solid var(--border);
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s, box-shadow 0.3s;
     position: relative;
 }

 .job-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .job-title {
     font-size: 1.25rem;
     color: var(--primary);
     margin-bottom: 0.5rem;
 }

 .job-date {
     color: var(--accent);
     font-size: 0.9rem;
     margin-bottom: 0.75rem;
 }

 .job-summary {
     color: var(--dark);
     font-size: 1rem;
     margin-bottom: 1.25rem;
 }

 .job-link {
     color: var(--primary);
     font-weight: bold;
     text-decoration: none;
     font-size: 0.95rem;
     transition: color 0.3s;
 }

 .job-link i {
     margin-right: 5px;
 }

 .job-link:hover {
     color: var(--accent);
 }

 .no-jobs-message {
     text-align: center;
     color: var(--dark);
     padding: 2rem;
     background-color: var(--light);
     border: 1px solid var(--border);
     border-radius: 8px;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Team Social Links */
 .social-links-centered {
     display: flex;
     justify-content: center;
     gap: 1.2rem;
     margin-top: 1.5rem;
 }

 .social-links-centered a {
     color: var(--primary);
     font-size: 1.2rem;
     transition: all 0.3s ease;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--light);
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
 }

 .social-links-centered a:hover {
     background: var(--primary);
     color: white;
     transform: translateY(-3px);
 }

 .president-section {
     margin-bottom: 3rem;
     display: flex;
     justify-content: center;
 }

 .president-card {
     max-width: 500px;
     width: 100%;
 }

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

 /* Alerts */
 .alert {
     padding: 1rem;
     border-radius: 8px;
     margin-bottom: 1rem;
     font-weight: 500;
 }

 .alert-success {
     background-color: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .alert-danger {
     background-color: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 /* Utilities */
 .mt-5 {
     margin-top: 3rem !important;
 }

 .ms-2 {
     margin-left: 0.5rem !important;
 }

 [dir="rtl"] .ms-2 {
     margin-right: 0.5rem !important;
     margin-left: 0;
 }

 .btn-large {
     padding: 1rem 3rem;
     font-size: 1.2rem;
 }

 .mr-45px {
     margin-right: 45px;
 }

 [dir="rtl"] .mr-45px {
     margin-left: 45px;
     margin-right: 0;
 }

 /* ============================================
   INNER PAGE LAYOUT STYLES
   ============================================ */

 /* Breadcrumb Navigation */
 .breadcrumb-nav {
     padding: 1rem 0 0.75rem;
     background: white;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 }

 .breadcrumb-container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 2rem;
 }

 .breadcrumb-list {
     display: inline-flex;
     list-style: none;
     padding: 0;
     margin: 0;
     gap: 0.5rem;
     font-size: 0.875rem;
     flex-wrap: wrap;
     align-items: center;
 }

 .breadcrumb-list li {
     display: flex;
     align-items: center;
 }

 .breadcrumb-list a {
     color: var(--primary);
     text-decoration: none;
     transition: all 0.3s ease;
     font-weight: 500;
 }

 .breadcrumb-list a:hover {
     color: var(--secondary);
     text-decoration: underline;
 }

 .breadcrumb-list .separator {
     color: #cbd5e0;
     margin: 0 0.25rem;
     font-weight: 300;
 }

 .breadcrumb-list .active {
     color: #718096;
     font-weight: 400;
 }

 /* Inner Page Section */
 .inner-page-section {
     padding: 2.5rem 0 4rem;
     background: var(--light);
     min-height: calc(100vh - 200px);
 }

 .inner-content-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .inner-content-container.narrow {
     max-width: 800px;
 }

 /* Page Header */
 .page-header {
     text-align: center;
     margin-bottom: 2rem;
 }

 .page-header h1,
 .page-header h2 {
     color: var(--dark);
     margin-bottom: 0.5rem;
     font-size: clamp(1.5rem, 3vw, 2rem);
     font-weight: 700;
     letter-spacing: -0.02em;
 }

 .page-header p {
     color: #64748b;
     font-size: 1rem;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* Content Card */
 .content-card {
     background: white;
     padding: 2.5rem;
     border-radius: var(--border-radius-lg);
     box-shadow: var(--shadow-md);
     border: 1px solid #F3F8FC;
 }

 @media (max-width: 768px) {
     .breadcrumb-nav {
         padding: 0.75rem 0 0.5rem;
     }

     .breadcrumb-container {
         padding: 0 1.5rem;
     }

     .breadcrumb-list {
         font-size: 0.8125rem;
     }

     .inner-page-section {
         padding: 1.5rem 0 2.5rem;
     }

     .inner-content-container {
         padding: 0 1.5rem;
     }

     .content-card {
         padding: 1.5rem;
     }

     .page-header {
         margin-bottom: 1.5rem;
     }

     .page-header h1,
     .page-header h2 {
         margin-bottom: 0.375rem;
     }

     .page-header p {
         font-size: 0.9375rem;
     }
 }

 /* ============================================
   STANDARDIZED SECTION PADDING CLASS
   ============================================ */

 .section-padding {
     padding: 3rem 0;
 }

 .container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 2rem;
 }

 /* Institutions Section */
 .institutions-section {
     background: white;
 }

 /* Tenders Section */
 .tenders-section {
     background: white;
 }

 /* Lookup Section */
 .lookup-section {
     background: white;
 }

 /* Request Form Section */
 .request-form-section {
     background: white;
 }