

body {
  font-family: 'Roboto', sans-serif;
  background: #000000;
  color: #f0f0f0;
}

  


    /* Navbar Styling */
    .navbar {
      display: flex;
      justify-content: space-between; /* توزيع بين اليسار واليمين */
      align-items: center; /* محاذاة عمودية في الوسط */
      background-color: #000000;
      padding: 10px 0px;
      color: #ffffff;
      position: relative;
      z-index: 999;
    }

    /* Left Section: Logo and Social Links */
    .left-section {
      display: flex;
      align-items: center;
    }
    .left-section .logo{
      display: flex;
      align-items: center;
    }
    .logo img {
      width: 50px;
      margin-right: 10px;
    }

    .logo-text {
      font-size: 24px;
      font-weight: bold;
    }

    .social-links-nav {
      display: flex;
      margin-left: 20px;
    }

    .social-links-nav a {
      color: #ffffff;
      margin-right: 10px;
      font-size: 18px;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .social-links-nav a:hover {
      color: #0056b3;
    }

    /* Navigation Links */
    .links {
      display: none; /* إخفاء على الشاشات الصغيرة */
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #000000;
      width: 100%;
      padding: 10px 0;
      z-index: 1000;
    }

    .links.active {
      display: flex;
    }

    .links a {
      color: #ffffff;
      text-decoration: none;
      padding: 10px;
      text-align: center;
    }


    /* Menu Icon */
    .menu-icon {
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }
    

    /* Responsive Design */
    @media screen and (min-width: 768px) {
      .links {
        display: flex;
        flex-direction: row;
        position: static;
        background-color: transparent;
        width: auto;
      }


      .menu-icon {
        display: none; /* إخفاء زر القائمة على الشاشات الكبيرة */
      }

      .social-links-nav {
        margin-left: 40px;
      }
    }
/* Sections */

header {
  background: url('./img/beach.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.073);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 3.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease;
}

header p {
  font-size: 1.5em;
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
section {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px 20px;
  max-width: 1100px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

h2 {
  color: #00bcd4;
}

p {
  font-size: 1.1em;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  /* background: rgba(0, 212, 255, 0.1); */
  margin: 10px 0;
  padding: 15px;
  /* border-left: 5px solid #00bcd4; */
  text-align: left;
  font-size: 1.1em;
  transition: background 0.3s;
}

ul li:hover {
  background: rgba(0, 212, 255, 0.2);
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  width: 22%;
  padding: 20px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  text-align: center;
  transition: transform 0.3s;
}

.stat:hover {
  transform: scale(1.1);
}

.stat h3 {
  font-size: 2.5em;
  color: #00bcd4;
}

.stat p {
  color: #dcdcdc;
}

/* Footer */
footer {
  background: #1e1e1e;
  color: #dcdcdc;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: row;
      align-items: center;
  }

  .navbar a {
      display: block;
      text-align: left;
      padding: 2px;
      width: 100%;
  }

  .navbar .links a {
      display: block;
      text-align: left;
      padding: 40px 0px;
      width: 100%;
      font-size: 18px
  }
}


/* Footer */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.container{
max-width: 1170px;
margin:auto;
}
.row{
display: flex;
flex-wrap: wrap;
}
ul{
list-style: none;
}
.footer{
background-color: #24262b;
  padding: 70px 0;
}
.footer-col{
 width: 25%;
 padding: 0 15px;
}
.footer-col h4{
font-size: 18px;
color: #ffffff;
text-transform: capitalize;
margin-bottom: 35px;
font-weight: 500;
position: relative;
text-align: left;
}
.footer-col h4::before{
content: '';
position: absolute;
left:0;
bottom: -10px;
background-color: #1014ff;
height: 2px;
box-sizing: border-box;
width: 50px;
}
.footer-col ul li:not(:last-child){
margin-bottom: 10px;
}
.footer-col ul li a{
font-size: 16px;
text-transform: capitalize;
color: #ffffff;
text-decoration: none;
font-weight: 300;
color: #bbbbbb;
display: block;
transition: all 0.3s ease;
}
.footer-col ul li a:hover{
color: #ffffff;
padding-left: 8px;
}
.footer-col .social-links a{
display: inline-block;
height: 40px;
width: 40px;
background-color: rgba(255,255,255,0.2);
margin:0 10px 10px 0;
text-align: center;
line-height: 40px;
border-radius: 50%;
color: #ffffff;
transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
color: #24262b;
background-color: #ffffff;
}

/* المنتج */





/*responsive*/
@media(max-width: 767px){
.footer-col{
  width: 50%;
  margin-bottom: 30px;
}
}
@media(max-width: 574px){
.footer-col{
  width: 100%;
}
}



