* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

.imgs{ 
  display: flex;
  flex-direction: row;
 gap: 30px; flex-wrap: wrap;
 margin-bottom: 20px;
}

.imgs div{
  max-width: 200px ; 
  max-height: 200px;
  min-height: 200px;
   min-width: 200px; 
   margin: auto;
   border-radius: 20px;
   box-shadow: 10px 10px 10px gray;
   transition: transform 0.3s ease-in-out ;
}

.imgs img{
  width: 98%;
  margin: auto;
  max-height: 200px;
  min-height: 200px;
  border-radius: 20px;
}

.imgs div:hover{
  transform: translateY(-10px);
}

.core{
  width: 50%;
  margin: 0px auto 10px auto;
  height: 200px;
  border-radius: 20px;

}

.core img{
width: 50%;
height: 200px;
border-radius: 20px;
}
 @media (max-width: 800px) {
   
  .core{
    width: 80%;
  }

  .core img{
    width: 98%;}
 }

*::selection {
  color: white;
  /* لون النص المحدد */
  background: #df700f9a;
  /* لون خلفية التحديد */
}
p{
  line-height: 1.8rem;
}
body {
  font-family: "Almarai", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  direction: rtl;
  background-color: #000000;
  /* background-image: url(../imgs/logo.png); */
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  display: none;

}

.dropbtn {
  background-color: #ff305b;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #ff305b;
  ;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top, #424242, #1d3e6e);
  padding: 15px;
  color: white;

}

.navbarphone {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 5px;

}

.logo {
  font-size: 26px;
  font-weight: bold;
  margin-right: 5px;
  color: white;
  text-decoration: none;
}

.logo p {
  font-size: small;
  font-weight: 50px;
}

.logo img {
  width: 80px;
  /* height: 70px; */
  /* margin-bottom: -20px; */
  /* filter: invert(1); */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.icons a {
  text-decoration: none;
  margin-left: 10px;
}


.icons i {
  color: #fff;
  font-size: 25px;
}


.icons button:hover {
  background-color: #0400e6;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 10px 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: rgba(26, 90, 228, 0.2);
  border-radius: 5px;
  color: white;
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(to bottom, #1d3e6e, #121212);
  display: none;
  list-style: none;
  padding: 10px;
  text-align: right;
  min-width: 160px;
  border-radius: 5px;
}

.nav-links li:hover .dropdown {
  display: block;
}

.dropdown li {
  padding: 8px 12px;
}

.dropdown li a {
  display: block;
  padding: 8px 10px;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background: linear-gradient(to bottom, #424242, #1d3e6e);
  transition: right 0.5s;
  padding-top: 60px;
  overflow-x: hidden;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 4;
  text-align: right;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
}


.offcanvas-menu a {
  padding: 15px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  transition: 0.3s;
}

.offcanvas-menu a:hover {
  background-color: #575757;
  border-radius: 5px;
}

.offcanvas-menu .closebtn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 36px;
  cursor: pointer;
  color: white;
}

.offcanvas-dropdown {
  display: none;
  background: #222;
  list-style: none;
  padding: 10px;
  text-align: right;
  border-radius: 5px;
  pointer-events: auto;
}

.offcanvas-menu .dropdown-toggle {
  cursor: pointer;
  padding: 15px;
  display: block;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.offcanvas-dropdown a {
  pointer-events: auto;
}


.offcanvas-menu .dropdown-toggle:hover+.offcanvas-dropdown,
.offcanvas-menu .dropdown-toggle:focus+.offcanvas-dropdown {
  display: block;
  pointer-events: auto;
}

/* الباك جرواند */
.hero-content {
  background: linear-gradient(to bottom, #424242, #1d3e6e);

  padding: 60px 20px;
  text-align: center;

}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  width: 60%;
  margin: 40px auto;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}


.button-1 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #df710f;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  margin: 5px ;
}

.button-1 i {
  margin: 5px;
  font-size: 20px;
}


/* .primary-btn, .secondary-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.primary-btn {
    background-color: #143783;
    color: white;
}
.primary-btn:hover {
  background-color: #0400e6;
  color: white;
} 
.secondary-btn {
    background-color: white;
    color: #333;
} */



footer {
  background: linear-gradient(to bottom, #424242, #1d3e6e);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
}


.footer-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
}


.footer-section p,
.footer-section ul {
  font-size: 16px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}


.footer-section-contact p {
  color: white;
  margin: 12px;

}


.footer-section-contact a {
  color: white;
  text-decoration: none;
}

.footer-section-contact a:hover {
  color: #0018f0;
}



.footer-section ul li a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ff9800;
}


.footer-section.social {
  text-align: center;
  margin-top: 10px;
}


/* .icons a:hover {
    color: #ff9800;
} */


.icon-footer {
  display: flex;
  gap: 5px;
  align-items: center;
}

.icon-footer a {
  text-decoration: none;
  margin-left: 10px;
}

/* .facebook{
    display: inline-flex;
     justify-content: center; 
    align-items: center;
    background-color:#fff  ; 
    padding: 10px;
     border-radius: 8px;
     width: 30px;
     height: 30px;

} */
.whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #25D366;
  padding: 10px;
  border-radius: 8px;
  width: 30px;
  height: 30px;
}

/* .twitter{
    display: inline-flex;
     justify-content: center; 
     align-items: center;
      background-color: #1DA1F2 ; 
      padding: 10px; 
      border-radius: 8px;
     width: 30px;
     height: 30px;
 } */
/* .instagram{
    display: inline-flex;
     justify-content: center; 
     align-items: center;
      background-color: #E4405F ; 
      padding: 10px; 
      border-radius: 8px;
     width: 30px;
     height: 30px;
 } */
.icon-footer i {
  color: #fff;
  font-size: 25px;
}

/* .facebook .fa-facebook{
    color:#1877F2 ;
    font-size: 25px;
} */
.whatsapp .fa-whatsapp {
  color: #ffffff;
  font-size: 25px;

}

/* .twitter .fa-twitter{
    color:#ffffff ;
    font-size: 25px;
}
.instagram .fa-instagram{
    color:#ffffff ;
    font-size: 25px;
} */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}


/*  */

/* fixed footer */

.fixed-footer {
  display: none;
}