/* Global Styles */
body {
background: black !important;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;          /* Light gray background */
  color: #333;
  line-height: 3;
  transition: all 0.3s;
{
  font-family: Arial, sans-serif; /* default */
}

html[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', Arial, sans-serif; /* Kurdish/Arabic font */
}
}

html {
  scroll-behavior: smooth;
}

/* Header & Navigation */
header {
  background-color: #8D1616 !important;  /* Red header */
  color: white !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 20px !important;        /* Reduced height */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

header h1 {
  margin: 0;
  font-size: 20px;                     /* Smaller title/logo text */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;                         /* Smaller logo image */
}

nav {
  display: flex;
  align-items: center;
  position: relative;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav > ul > li {
  margin: 0 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 8px !important;         /* Smaller link padding */
  display: block;
  font-size: 14px;                      /* Optional: reduce font size */
  transition: 0.3s;
}

nav a:hover,
nav a.active-link {
  color: #ffcc00;                       /* Gold/yellow hover */
  text-decoration: underline;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #D13434;                  /* Red dropdown */
  min-width: 180px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: #ffcc00;
  color: #D13434;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Flags */
.flags img {
  width: 25px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
}

/* Main Container */
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Headings */
h1, h2 {
  color: #B83030;
  margin-bottom: 20px;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
  color: #444;
}

/* Product Panel */
.product-panel {
  min-height: 200px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.product-content {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.5s;
}

.product-content.active {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Effect */
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu */
@media(max-width:768px){
  nav ul {
    flex-direction: column;
    background: #D13434;
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }

  nav ul.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
  }

  .mobile-menu {
    display: block;
    cursor: pointer;
    font-size: 24px;
    margin-left: 10px;
  }
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 20px;
  color: #555;
  text-align: center;
}

footer a {
  color: #003366;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social-icons {
  display:flex;
  align-items:center;
  margin-left:10px;
}
.social-icons a {
  margin-left:10px;
}
.social-icons img {
  width:25px;
  height:25px;
  cursor:pointer;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}

