/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/site.scss ***!
  \*************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap);
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/site.scss (1) ***!
  \*****************************************************************************************************************/
@charset "UTF-8";
:root {
  --black-color: #14171a;
  --orange-color: rgb(255, 107, 53);
  --grey-color: #f7f7f7;
  --green: #1450a3;
  --boday-font: "Cairo", sans-serif;
  --biggest-font: 1.75rem;
  --bigger-font: 1.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --font-regular: 500;
  --font-medium: 600;
  --font-semi-bold: 700;
}

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

body {
  direction: rtl;
  text-align: right;
  font-family: var(--boday-font);
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}

/* Logo styling */
/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  width: 90px;
  height: 90px;
  transform: translateX(-22px);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}
.company-info p {
  font-size: 14px;
  transform: translateY(-12px);
  color: var(--text-light);
  font-weight: 400;
}

/* Top Bar */
.top-line {
  background: #f8f8f8;
  border-bottom: 1px solid #ececec;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-line .contact-info {
  display: flex;
  gap: 25px;
}

.top-line .contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-line .contact-info i {
  color: #999;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: #333;
  color: #333;
  transform: translateY(-1px);
}

/* Main Header */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 54, 93, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icons a {
  color: #333;
  font-size: 18px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 3px;
}

.lang-selector img {
  height: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .logo-container {
    gap: 5px;
  }
  .company-name h6 {
    font-size: 15px;
  }
  .company-name span {
    font-size: 12px;
  }
  .menu-toggle {
    display: block;
  }
}
/* Main Navigation */
.main-nav {
  background-color: #fff;
  padding: 0 20px;
  overflow-x: auto;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  list-style-type: none;
  padding: 10px 0;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover {
  color: #205781;
}

.main-nav a.active {
  color: #205781;
  font-weight: 700;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.3s;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.menu-close {
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
}

.side-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.side-menu a {
  display: block;
  padding: 12px 15px;
  color: #333;
  font-size: 14px;
}

.side-menu a.active {
  color: #205781;
  border-right: 3px solid #205781;
  background-color: #f9f9f9;
}

/* Bottom Navigation for Mobile */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #eee;
  z-index: 100;
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #777;
}

.nav-item a {
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-item i {
  font-size: 16px;
  margin-bottom: 3px;
}

.nav-item.active {
  color: #205781;
}

.nav-item.active a {
  color: #046a38;
}

/* Hero Banner with Swiper */
.hero-banner {
  width: 100%;
  height: 400px;
  position: relative;
  color: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}

/* Swiper Container */
.hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-banner h1 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-banner p {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: inline-block;
  background-color: #205781;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
  background-color: rgba(0, 102, 255, 0.2823529412);
  transform: translateY(-3px);
}

/* Swiper Pagination */
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.7;
  background-color: #fff;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #205781;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 28px;
  }
  .hero-banner p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero-banner {
    height: 350px;
  }
  .hero-banner h1 {
    font-size: 24px;
  }
  .hero-banner p {
    font-size: 14px;
  }
}
/* Products Section */
.products-heading {
  text-align: center;
  margin-bottom: 30px;
}

.products-heading h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.products-heading p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.product-card {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.product-info p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.product-cta {
  display: inline-block;
  background-color: #205781;
  color: #fff;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.product-cta:hover {
  background-color: rgba(0, 102, 255, 0.2823529412);
}

/* Features Section */
.features-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.features-heading {
  text-align: center;
  margin-bottom: 30px;
}

.features-heading h2 {
  font-size: 28px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 36px;
  color: #205781;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  color: #666;
  font-size: 14px;
}

/* Projects Section */
.projects-section {
  margin-bottom: 40px;
}

.projects-heading {
  text-align: center;
  margin-bottom: 30px;
}

.projects-heading h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.projects-heading p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
}

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}

.project-overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.project-overlay p {
  font-size: 14px;
  opacity: 0.8;
}

/* Contact Section */
.contact-section {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info {
  flex: 1;
}

.contact-heading {
  margin-bottom: 20px;
}

.contact-heading h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.contact-heading p {
  color: #666;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  color: #205781;
}

.contact-text h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.contact-text p {
  color: #666;
  font-size: 14px;
}

.contact-map {
  flex: 1;
  height: 300px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

/* whatsapp - تصميم محسن */
#whatsapp a {
  text-decoration: none;
}

#whatsapp .wtsapp {
  position: fixed;
  transition: all 0.5s ease;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 35px;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

/* تأثير النبض */
#whatsapp .wtsapp::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

/* تأثير الدوران للأيقونة */
#whatsapp .wtsapp i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* نص الواتساب المخفي */
#whatsapp .wtsapp-text {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background-color: #25d366;
  padding: 6px 20px;
  border-radius: 30px 0 0 30px;
  font-size: 16px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* تأثير التحويم */
#whatsapp .wtsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

#whatsapp .wtsapp:hover i {
  animation: shake 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* عرض النص عند التحويم في الأجهزة غير المحمولة */
@media (min-width: 768px) {
  #whatsapp .wtsapp:hover .wtsapp-text {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  #whatsapp .wtsapp:hover {
    border-radius: 50%;
  }
}
/* تحسين شكل الزر في الشاشات الكبيرة */
@media (min-width: 992px) {
  #whatsapp .wtsapp {
    font-size: 40px;
    width: 70px;
    height: 70px;
    left: 30px;
    bottom: 30px;
  }
  #whatsapp .wtsapp::before {
    width: 85px;
    height: 85px;
  }
}
/* تحسين شكل الزر في الشاشات الصغيرة */
@media (max-width: 576px) {
  #whatsapp .wtsapp {
    font-size: 30px;
    width: 55px;
    height: 55px;
    left: 17px;
    bottom: 50px; /* ترك مساحة للتنقل السفلي */
  }
  #whatsapp .wtsapp::before {
    width: 65px;
    height: 65px;
  }
}
/* تأثير النبض */
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.8);
    opacity: 0;
  }
}
/* تأثير الاهتزاز */
@keyframes shake {
  10%, 90% {
    transform: rotate(-10deg);
  }
  20%, 80% {
    transform: rotate(10deg);
  }
  30%, 50%, 70% {
    transform: rotate(-10deg);
  }
  40%, 60% {
    transform: rotate(10deg);
  }
}
/* Footer */
.footer {
  background-color: #fff;
  padding: 40px 20px 20px;
  border-top: 1px solid #f0f0f0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #666;
  font-size: 14px;
}

.footer-bottom {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1fr);
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: #777;
}

/* Developer Info */
.developer-info {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
}

.developer-info a {
  color: #046a38;
  font-weight: 500;
}

/* Media Queries */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .main-header {
    backdrop-filter: none !important;
    padding: 10px 15px;
  }
  .logo img {
    height: 50px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .bottom-nav {
    display: block;
  }
  .top-line {
    padding: 6px 0;
    font-size: 12px;
  }
  .container {
    padding: 0 15px;
    flex-direction: column;
    gap: 8px;
  }
  .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    order: 2;
  }
  .contact-info span {
    font-size: 11px;
  }
  .social-links {
    order: 1;
    gap: 6px;
  }
  .social-links a {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .hero-banner h1 {
    font-size: 24px;
  }
  .hero-banner p {
    font-size: 16px;
  }
  .contact-section {
    flex-direction: column;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-right {
    flex-direction: column;
    gap: 5px;
  }
  .footer {
    padding: 20px 15px;
  }
  .top-line {
    padding: 5px 0;
  }
  .container {
    padding: 0 10px;
    gap: 6px;
  }
  .contact-info {
    display: none !important;
    gap: 8px;
    text-align: center;
  }
  .contact-info span {
    font-size: 10px;
    flex-direction: column;
    gap: 2px;
  }
  .contact-info i {
    font-size: 10px;
  }
  .social-links a {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .contact-info span:nth-child(3) {
    display: none;
  }
}
@media (max-width: 360px) {
  .contact-info span:nth-child(2) {
    display: none;
  }
  .contact-info {
    justify-content: center;
  }
}
@media (max-width: 320px) {
  .top-line {
    display: none;
  }
}
/* أنماط صفحة ساندويش بانل - كامل */
/* ===== العناصر العامة ===== */
.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 50px;
}

/* ===== قسم المقدمة ===== */
.product-intro {
  padding: 60px 0;
}

.product-intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.intro-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 3px;
  background-color: #205781;
}

.intro-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.intro-text strong {
  color: #205781;
}

.intro-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

/* ===== قسم الأنواع ===== */
.product-types {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 3px;
  background-color: #205781;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.type-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.type-image {
  height: 200px;
  overflow: hidden;
}

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

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

.type-info {
  padding: 20px;
}

.type-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #205781;
}

.type-info p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.type-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed #eee;
  padding-top: 15px;
}

.type-specs li {
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

.type-specs li span {
  font-weight: 600;
  color: #333;
  margin-left: 5px;
}

/* ===== معرض الصور ===== */
.product-gallery {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-link {
  display: block;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon {
  color: #fff;
  font-size: 30px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

/* ===== الأسئلة الشائعة ===== */
.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f8f8;
}

.faq-question h3 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  color: #205781;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  display: none;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background-color: #f9f9f9;
}

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

/* ===== قسم الطلب والتواصل ===== */
.call-to-action {
  background: linear-gradient(rgba(32, 87, 129, 0.9), rgba(32, 87, 129, 0.9));
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: #fff;
  color: #205781;
}

.cta-btn.primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ===== مقالات ذات صلة ===== */
.related-articles {
  padding: 60px 0;
  background-color: #f9f9f9;
  margin-bottom: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
  height: 180px;
  overflow: hidden;
}

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

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

.article-info {
  padding: 20px;
}

.article-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.article-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #333;
}

.article-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.article-link {
  color: #205781;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

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

.article-link:hover {
  color: #133a56;
}

.article-link:hover i {
  transform: translateX(-5px);
}

/* ===== تصميم متجاوب ===== */
@media (max-width: 992px) {
  .product-intro-content {
    flex-direction: column;
  }
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .types-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .intro-text h2 {
    font-size: 28px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .intro-text h2 {
    font-size: 24px;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .cta-content h2 {
    font-size: 24px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
}
/* تنسيق صفحة المقالات */
/* العناصر العامة */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 3px;
  background-color: #205781;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* المقالات المميزة */
.featured-articles {
  padding: 60px 0;
  margin-bottom: 50px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.featured-article {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-5px);
}

.featured-article.large {
  grid-row: span 2;
}

.featured-article .article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.featured-article.large .article-image {
  height: 300px;
}

.featured-article .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.article-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #205781;
  color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.featured-article .article-content {
  padding: 20px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.article-meta span {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-article h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.featured-article.large h3 {
  font-size: 24px;
}

.featured-article p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #205781;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #133a56;
}

/* جميع المقالات */
.all-articles {
  padding: 60px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-card .article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.article-info {
  padding: 20px;
}

.article-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-info p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-stats {
  display: flex;
  gap: 15px;
}

.article-stats span {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-link {
  color: #205781;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-link:hover {
  color: #133a56;
}

.article-link i {
  transition: transform 0.3s ease;
}

.article-link:hover i {
  transform: translateX(-5px);
}

/* زر تحميل المزيد */
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background-color: #205781;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  background-color: #133a56;
  transform: translateY(-3px);
}

/* النشرة الإخبارية */
.newsletter-section {
  background: linear-gradient(135deg, #205781 0%, #133a56 100%);
  padding: 60px 0;
  color: #fff;
  margin-top: 50px;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 16px;
  opacity: 0.9;
}

.newsletter-form {
  min-width: 400px;
}

.newsletter-form form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #fff;
  color: #205781;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* تصميم متجاوب */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-article.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    height: 250px;
  }
  .banner-content h1 {
    font-size: 32px;
  }
  .search-sort {
    flex-direction: column;
    gap: 15px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-article.large {
    grid-column: span 1;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form form {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .page-banner {
    height: 200px;
  }
  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .article-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
/* شريط التصفح */
.breadcrumb {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #6c757d;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .current {
  color: #6c757d;
}

/* تخطيط الصفحة */
.article-page {
  padding: 40px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* المحتوى الرئيسي */
.article-main {
  background: #fff;
}

/* رأس المقال */
.article-header {
  margin-bottom: 30px;
}

.category {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 14px;
  margin-bottom: 15px;
}

.article-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 20px;
}

.meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #6c757d;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

/* الصورة الرئيسية */
.featured-img {
  margin: 30px 0;
}

.featured-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* محتوى المقال */
.article-body {
  font-size: 16px;
  line-height: 1.8;
}

.intro {
  font-size: 18px;
  font-weight: 500;
  color: #495057;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-right: 4px solid #007bff;
  margin-bottom: 30px;
}

/* فهرس المحتوى */
.toc {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.toc h2 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.toc ul {
  list-style: none;
}

.toc li {
  margin-bottom: 8px;
}

.toc a {
  color: #007bff;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.toc a:hover {
  text-decoration: underline;
}

/* أقسام المحتوى */
.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

.content-section h3 {
  font-size: 1.4rem;
  color: #34495e;
  margin: 25px 0 15px 0;
}

.content-section p {
  margin-bottom: 15px;
  text-align: justify;
}

.content-section ul,
.content-section ol {
  margin: 15px 0;
  padding-right: 25px;
}

.content-section li {
  margin-bottom: 8px;
}

/* صور المحتوى */
.content-image {
  margin: 25px 0;
  text-align: center;
}

.content-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.img-caption {
  font-size: 14px;
  color: #6c757d;
  margin-top: 10px;
  font-style: italic;
}

/* صندوق التحذير */
.warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-right: 4px solid #ffc107;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

/* العلامات */
.tags {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.tags h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 16px;
}

.tags ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags a {
  background: #e9ecef;
  color: #495057;
  padding: 6px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 14px;
}

.tags a:hover {
  background: #007bff;
  color: white;
}

/* معلومات الكاتب */
.author {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.author-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 16px;
}

.author-info p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}

/* الشريط الجانبي */
.sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

/* ودجت الشريط الجانبي */
.widget {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.widget h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #007bff;
}

/* فهرس التنقل */
.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-nav a {
  color: #495057;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.toc-nav a:hover {
  background: #e9ecef;
  color: #007bff;
}

/* المقالات ذات الصلة */
.related {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related article {
  display: flex;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.related article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.related h4 {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.3;
}

.related a {
  color: #2c3e50;
  text-decoration: none;
}

.related a:hover {
  color: #007bff;
}

.related .meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #6c757d;
}

/* ودجت التواصل */
.contact {
  background: #007bff;
  color: white;
  text-align: center;
}

.contact h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact p {
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-btn {
  display: inline-block;
  background: white;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.contact-btn:hover {
  background: #f8f9fa;
}

/* قسم المقالات المقترحة */
.suggested {
  background: #f8f9fa;
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-title p {
  color: #6c757d;
  font-size: 16px;
}

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

.articles-grid article {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.articles-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.articles-grid .category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 123, 255, 0.9);
  color: white;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.articles-grid .content {
  padding: 20px;
}

.articles-grid h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.articles-grid h3 a {
  color: #2c3e50;
  text-decoration: none;
}

.articles-grid h3 a:hover {
  color: #007bff;
}

.articles-grid p {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.articles-grid .meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #6c757d;
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .article-header h1 {
    font-size: 1.8rem;
  }
  .meta-info {
    flex-direction: column;
    gap: 10px;
  }
  .featured-img img {
    height: 250px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 15px;
  }
  .article-page {
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .article-header h1 {
    font-size: 1.5rem;
  }
  .content-section h2 {
    font-size: 1.5rem;
  }
  .intro {
    font-size: 16px;
    padding: 15px;
  }
  .author-info {
    flex-direction: column;
    text-align: center;
  }
  .related article {
    flex-direction: column;
  }
  .related img {
    width: 100%;
    height: 120px;
  }
}
/* تحسينات SEO */
img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

a {
  color: #007bff;
}

a:hover {
  color: #0056b3;
}
