/**
* Template Name: Valera
* Template URL: https://bootstrapmade.com/valera-free-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/* 200 - Extra Light */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* 300 - Light */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* 400 - Regular (الأساسي) */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 500 - Medium */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* 600 - Semi Bold */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 700 - Bold */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 800 - Extra Bold */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* 900 - Black */
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "Cairo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cairo", sans-serif;
  --nav-font: "Cairo", sans-serif;

  --bs-primary: #C9B37E;
  --bs-primary-rgb: 201, 179, 126;

  --bs-secondary: #54585e;
  --bs-secondary-rgb: 39, 97, 167;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  /* --primary-color: #000820; */
  --primary-color: #3e4144;
  --secondary-color: #C9B37E;

  --bg-dark: #000000;
  --bg-services: #000000;
  --primary-gold: #C9B37E;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --accent-glow: rgba(201, 179, 126, 0.15);

  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #555555;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #4b4e51;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #C9B37E;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  /* The default color of the main navmenu links */
  --nav-hover-color: #C9B37E;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff7f5d;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: hsl(240, 100%, 0%);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3e2c40;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #000000;
  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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.glass-background {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.text-shadow {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.btn-cta {
  padding: 14px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  /* الزر يستخدم اللون الثانوي الجديد */
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--primary-color) !important;
  /* النص بلون غامق للتباين */
  box-shadow: 0 8px 20px rgba(201, 179, 126, 0.3);
}

.btn-cta:hover {
  transform: translateY(-5px);
  background: transparent;
  color: var(--secondary-color) !important;
  box-shadow: 0 15px 30px rgba(201, 179, 126, 0.4);
}

/* --- Navbar --- */
.navbar {
  transition: all 0.4s ease;
  padding: 12px 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-bottom: 1px solid var(--glass-border) !important;
}


.nav-link {
  color: #fff;
  margin: 0 10px;
  position: relative;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: #C9B37E !important;
  text-shadow: 0 0 20px rgba(201, 179, 126, 0.3);
}


/* تخصيص زر القائمة (الهمبرغر) */
.navbar-toggler {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* 1. إزالة البوردر والظل عند الضغط (Focus) */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* 2. تغيير الأيقونة بناءً على حالة القائمة */
/* الحالة الافتراضية: أيقونة المنيو */
.navbar-toggler .bi-list {
  display: block;
}

.navbar-toggler .bi-x {
  display: none;
}

/* عندما تكون القائمة مفتوحة (إزالة فئة collapsed) */
.navbar-toggler:not(.collapsed) .bi-list {
  display: none;
}

.navbar-toggler:not(.collapsed) .bi-x {
  display: block;
  font-size: 2.5rem;
  /* تكبير أيقونة الإغلاق قليلاً لتناسب الحجم */
}


/* Creative Overlay Layer */
.hero-overlay {
  background: color-mix(in srgb, #000000, transparent 20%);
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.nav-pills .nav-link {
  padding: 14px 10px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.nav-pills .nav-link.active {
  background: var(--primary-gold) !important;
  color: var(--bg-dark) !important;
  border-color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(201, 179, 126, 0.4);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .nav-pills .nav-link {
    padding: 18px 30px;
    font-size: 1.1rem;
  }
}

/* تحسينات قسم تعرف على عالمي - About Section Tabs */
.tab-content-wrapper {
  min-height: 400px; /* ارتفاع أدنى ثابت لجميع التبويبات */
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

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

/* ضبط حجم الصورة في تبويب "من أنا" لتناسب الحاوية */
#v-pills-me .value-card img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
}

/* تبويب "خدمة التحويل" - محاذاة وتوسيط */
/* نقاط الهايلايت */
#v-pills-conversion .d-flex.align-items-center span {
  color: rgba(255, 255, 255, 0.85);
}

/* صندوق شرط التوثيق */
#v-pills-conversion .border-start {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

/* أيقونة النجمة والإشارة */
#v-pills-conversion .position-relative i {
  transition: 0.3s ease;
}

#v-pills-conversion .position-relative:hover i.bi-patch-check-fill {
  transform: scale(1.06);
}

#v-pills-conversion .position-relative:hover i.bi-star-fill {
  transform: rotate(8deg) scale(1.1);
}

/* تبويب "خدماتنا" - بطاقات متساوية الارتفاع */

/* تبويب "أقسام المحتوى" - بطاقات متساوية الحجم */

/* تنسيق أزرار التبويبات لضمان اتساق العرض */
.tabs-container .nav-pills .nav-link {
  min-width: 160px;
  text-align: center;
  white-space: nowrap;
  padding: 15px 25px;
  margin: 0 8px;
}

/* إضافة تأثير انسيابي عند التبديل بين التبويبات */
.tab-pane {
  animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Value Cards */
.value-card {
  height: 100%;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
}

.value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-gold);
}

.value-card:hover .icon-box {
  background: var(--primary-gold);
  color: var(--bg-dark);
  box-shadow: 0 10px 20px rgba(201, 179, 126, 0.3);
}

.value-card .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201, 179, 126, 0.1), transparent);
  border: 1px solid rgba(201, 179, 126, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--primary-gold);
  transition: 0.3s;
}

.value-card:hover .icon-box {
  background: var(--primary-gold);
  color: var(--bg-dark);
  box-shadow: 0 10px 20px rgba(201, 179, 126, 0.3);
}


/* Background elements */
.modern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #171717 0%, #000000 100%);
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-glow);
  filter: blur(80px);
  /* border-radius: 50%; */
  z-index: -1;
  animation: move 25s infinite alternate;
}

.blob-1 {
  top: -10%;
  right: -10%;
  background: rgba(201, 179, 126, 0.08);
}

.blob-2 {
  bottom: -10%;
  left: -10%;
  /* background: rgba(0, 82, 204, 0.1); */
  background: rgba(201, 179, 126, 0.08);
  animation-duration: 30s;
}

.blob-3 {
  top: -10%;
  left: -10%;
  background: rgba(201, 179, 126, 0.08);
}

.blob-4 {
  bottom: -10%;
  right: -10%;
  /* background: rgba(0, 82, 204, 0.1); */
  background: rgba(201, 179, 126, 0.08);
  animation-duration: 30s;
}

@keyframes move {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(100px, 100px) scale(1.2);
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.text-shadow-sm {
    /* الظل: تحريك 1px لليمين، 1px للأسفل، تغبيش 2px، ولون أسود شفاف بنسبة 30% */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 3);
}
.services {
  
  background-color: #000000;
}

.mt-n5 {
  margin-top: -4rem;
}

.btn-custom {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  flex: 1;
}

.btn-details {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--glass-border);
}

.btn-details:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-order {
  background: var(--primary-gold);
  color: var(--bg-dark);
  border: 1px solid var(--primary-gold);
}

.btn-order:hover {
  background: #e0ca91;
  box-shadow: 0 0 15px rgba(201, 179, 126, 0.4);
  color: var(--bg-dark);
  transform: scale(1.02);
}


/* Stats Section Styling */
.stat-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(201, 179, 126, 0.1);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(201, 179, 126, 0.3));
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #fff;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* --- Modal Glassmorphism Styling --- */
.modal-content {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 30px !important;
  color: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.modal-header {
  border-bottom: 1px solid var(--glass-border);
  padding: 25px 30px;
}

.modal-title {
  color: var(--primary-gold);
  font-weight: 800;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.modal-body {
  padding: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-list li i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.modal-footer {
  border-top: 1px solid var(--glass-border);
  padding: 20px 30px;
  gap: 16px;
  justify-content: center;
}

.modal-footer .btn-custom {
  flex: none;
  min-width: 140px;
}



/* Contact Section Styling */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: rgba(201, 179, 126, 0.1);
  border: 1px solid rgba(201, 179, 126, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.4rem;
  margin-inline-end: 20px;
  flex-shrink: 0;
}

.info-details p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.8);
  /* Dark Map Effect */
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  /* font-size: 14px; */
  text-align: center;
  padding: 2rem 0;
  position: relative;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-top: 1px solid var(--glass-border) !important;
}

.footer .social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201, 179, 126, 0.1), transparent);
  border: 1px solid rgba(201, 179, 126, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  font-size: 16px;
  color: var(--primary-gold);
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
  box-shadow: 0 10px 20px rgba(201, 179, 126, 0.3);
}

.footer .copyright {
  border-top: 1px solid rgba(201, 179, 126, 0.3);
  font-size: 14px;
}

.footer .copyright strong {
  color: var(--primary-gold);
}

.footer .credits {
  font-size: 12px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  /* background: var(--background-color); */
  background: rgb(0, 0, 0) !important;
  transition: all 0.6s ease-out;
}
#preloader {
  display: none !important; /* هذا السطر سيخفيه تماماً */
}

#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);
  }
}


/* --- Floating WhatsApp --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* Left for RTL preferred by some, or Right */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: 0.3s;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 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(--contrast-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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 4rem 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
}

.section-title h1 {
  position: relative;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  color: var(--primary-gold);
  text-shadow: 0 0 20px rgba(201, 179, 126, 0.3);
}

.section-title h1:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-gold);
  box-shadow: 0 0 15px var(--primary-gold);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


/* ==========================================================================
   قسم الخدمات الرئيسي (Main Service Cards)
   ========================================================================== */

.service-main-card {
    position: relative;
    margin-bottom: 30px;
}

.card-media {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 1/1; /* يجعل الكاروسيل مربع لتوحيد الشكل */
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    margin: -50px 20px 0; /* تأثير الطفو */
    padding: 2rem 1.5rem;
    border-radius: 1.2rem;
    position: relative;
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   الاستجابة للشاشات (Responsive)
   ========================================================================== */

@media (max-width: 991px) {
    .main-tab-box {
        padding: 2rem !important;
        min-height: auto;
    }
    
    .custom-nav-pills {
        justify-content: flex-start;
        padding: 5px;
    }
}

@media (max-width: 767px) {
    .custom-nav-pills .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .card-info {
        margin: -30px 10px 0;
        padding: 1.5rem 1rem;
    }
}

/* ==========================================================================
   قسم الأسئلة الشائعة - FAQ Section
   ========================================================================== */

.faq-section {
    padding: 80px 0;
    min-height: 100vh;
    background: #0a0a0a; /* خلفية احتياطية في حال لم تظهر الصور */
}

/* حاوية الزجاج الأساسية */
.faq-container {
    background: rgba(255, 255, 255, 0.03); /* شفافية خفيفة جداً */
    backdrop-filter: blur(15px); /* تأثير التغبيش */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* إطار رقيق جداً */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* تنسيق عناصر الأكورديون (المنسدلة) */
.faq-section .accordion-item {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 5px;
}

/* زر السؤال */
.faq-section .accordion-button {
    background-color: transparent !important;
    color: #ffffff !important;
    font-size: 1.1rem;
    padding: 20px;
    box-shadow: none !important; /* إزالة التوهج الأزرق الافتراضي */
    text-align: right; /* لضمان المحاذاة جهة اليمين */
}

/* حالة السؤال عند الفتح */
.faq-section .accordion-button:not(.collapsed) {
    color: #00d2ff !important; /* لون مميز عند الفتح - يمكنك تغييره */
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* تنسيق أيقونة السهم (Chevron) */
.faq-section .accordion-button::after {
    margin-right: auto; /* دفع السهم لليسار في التنسيق العربي */
    margin-left: 0;
    filter: brightness(0) invert(1); /* تحويل لون السهم للأبيض */
    background-size: 1.2rem;
}

/* تنسيق نص الإجابة */
.faq-section .accordion-body {
    color: rgba(255, 255, 255, 0.7); /* لون أبيض شفاف للإجابة لسهولة القراءة */
    line-height: 1.8;
    font-size: 1rem;
    padding: 0 20px 25px 20px;
}
