@font-face {
  font-family: 'Droid Arabic Kufi';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/DroidKufi-Regular.eot);
  src: url(../fonts/DroidKufi-Regular.eot?#iefix) format('embedded-opentype'),
       url(../fonts/DroidKufi-Regular.woff2) format('woff2'),
       url(../fonts/DroidKufi-Regular.woff) format('woff'),
       url(../fonts/DroidKufi-Regular.ttf) format('truetype');
}
  /* Reset & General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Droid Arabic Kufi';
  background: linear-gradient(to bottom, #e0f7fa, #e0f7fa);
  color: #333;
  text-align: center;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111042;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.logo img{
	border-radius:8px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav nav ul li {
    margin: 15px 0;
}

.mobile-nav nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
}

nav {
  display: none;
}

nav ul {
  list-style: none;
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
}

main {
  margin-top: 38px;
  padding: 20px;
}

/* Hero Section */
.hero {
  background: #004d40;
  color: white;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  line-height: 1.5;
}

/* Social Icons Section */
.social-icons {
  margin: 40px 0;
}

.social-icons h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.icons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  background: #ffffff;
  color: white;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 120px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.icon i {
  font-size: 3em;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon p {
  margin-top: 10px;
  font-size: 1em;
  color: #333;
}

/* Icon Colors */
.facebook {
  background: #3b5998;
}

.facebook p{
  color: #fff; 
}

.tiktok {
  background: #000; 
}

.tiktok p{
  color: #fff; 
}

.instagram {
  background: #e1306c;
}

.youtube {
  background: #ff0000;
}

.icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.icon:hover i {
  transform: scale(1.2);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .icons-container {
    flex-direction: column;
    align-items: center;
  }

  .icon {
    width: 80%;
  }

  nav {
    background: #004d40;
    position: absolute;
    right: 0;
    top: 60px;
    width: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 10px 10px;
  }

  nav ul {
    padding: 20px 0;
  }

  nav ul li {
    margin: 10px 0;
  }
}


/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111042;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.bottom-nav .nav-item {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 0.9em;
  flex: 1;
}

.bottom-nav .nav-item i {
  font-size: 1.5em;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bottom-nav .nav-item:hover i {
  transform: scale(1.2);
  color: #e0f7fa;
}
.image-section {  
  margin: 30px auto;  
  text-align: center;  
}  

.image-section img {  
  width: 80%;  
  max-width: 500px;  
  border-radius: 10px;  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  
  transition: transform 0.3s ease, box-shadow 0.3s ease;  
}  

.image-section img:hover {  
  transform: scale(1.05);  
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);  
}  

.hand{
   cursor: pointer;  /* تظهر اليد عند المرور فوق العنصر */
}


.hidden {
    display: none;
}

.green {
    color: green; /* اللون الأخضر */
}

 
.rtl{
	direction: rtl !important;
	text-align:right;
}

.ltr{
	direction: ltr !important;  
	text-align:left;
}

.language-intro-icon {
    position: absolute; /* تمكين التحكم في الموقع بشكل كامل */
    top: 30px; /* المسافة من الأعلى */
    right: 57px; /* المسافة من اليمين */
    display: flex; /* يجعل العنصر مرنًا */
    justify-content: center; /* توسيط المحتوى أفقياً داخل العنصر */
    align-items: center; /* توسيط المحتوى عموديًا داخل العنصر */
    width: auto; /* الحجم يتغير حسب المحتوى */
    background-color: transparent; /* الخلفية شفافة */
}

.language-intro-icon i {
    color: #fff; /* لون الأيقونة */
    font-size: 24px; /* حجم الأيقونة */
}