* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --se-color: #0e5b85;
  --primary-color: green;
  --padding-top: 60px;
  --padding-bottom: 60px;
  --article-padding: 400px;
  --last-padding: 32px;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* small screen */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* medium screen */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* large screen */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* start scrool */

/* تنسيق الشريط الكامل */
::-webkit-scrollbar {
  width: 8px;
}

/* خلفية المسار */
::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

/* مقبض السحب */
::-webkit-scrollbar-thumb {
  background-color: #0e5b85;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

/* عند تمرير الماوس على الشريط */
::-webkit-scrollbar-thumb:hover {
  background-color: ;
}

/* اختياري: الزاوية بين الشريطين (للمربعات) */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* end scrool */


/* start header */

#header {
  display: flex;
  align-items: center;
  padding: 20px 18px;
  background: #e3e6f3;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  position: relative;
  padding: 6px 20px;
  list-style: none;
  text-align: center;
}

#navbar li a {
  color: #1a1a1a;
  font-size: 17.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (max-width: 850px) {
  #navbar li a {
    font-size: 17.5px;
  }

  #navbar li {
    padding: 0 15px;
  }
}

#navbar li:not(:last-child) a:hover,
#navbar li a.active {
  color: var(--se-color);
}

#navbar li:not(:last-child) a:hover::before,
#navbar li a.active:after {
  content: "";
  position: absolute;
  top: 26px;
  left: 20px;
  background-color: var(--se-color);
  width: 30%;
  height: 2px;
}

@media (max-width: 1260px) {

  #navbar li:not(:first-child):not(:last-child) a:hover::before,
  #navbar li:not(:first-child):not(:last-child) a.active:after {
    top: 49px;
    left: 40px;
  }

}

@media (max-width: 851px) {

  #navbar li:not(:first-child):not(:last-child) a:hover::before,
  #navbar li:not(:first-child):not(:last-child) a.active:after {
    top: 42px;
  }
}

@media (max-width: 898px) {
  #navbar li:nth-child(8) a:hover::before {
    top: 68px !important;
  }
}

@media (max-width: 850px) {
  #navbar li:nth-child(8) a:hover::before {
    top: 42px !important;
  }
}

@media (max-width: 806px) {
  #navbar li:nth-child(8) a:hover::before {
    top: 68px !important;
  }
}

@media (max-width: 799px) {
  #navbar li:not(:last-child) a:hover::before #navbar li a.active:after {
    top: 39px !important;
    left: 67px !important;
  }

  #navbar li:not(:last-child) a:hover::before,
  #navbar li a.active:after {
    top: 39px !important;
    left: 85px !important;
  }

  #navbar li:nth-child(8) a:hover::before {
    top: 68px !important;
  }
}

.head-cart {
  font-size: 1.3rem;
}

#mobile {
  display: none;
}

#close {
  display: none;
}

@media screen and (max-width: 799px) {
  #header ul {
    background-color: aqua;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    width: 300px;
    position: fixed;
    top: 0;
    right: -300px;
    padding: 120px 0 0 10px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    background-color: #e3e6f3;
    transition: all 0.4s ease;
  }

  #header ul li a {
    font-size: 20px;
    padding: 10px;
    letter-spacing: 1.6px;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    position: relative;
    padding: 15px 20px;
    list-style: none;
    text-align: center;
    margin-bottom: 25px !important;
    margin: -19px;
    width: 89%;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    font-size: 23px !important;
    position: absolute;
    top: -584px;
    right: -13px;
    transition: ease 0.5s;
  }

  #close:hover {
    transform: rotate(500deg);
  }

  .lg-bag {
    display: none;
  }
}

/* mobile iphon 13 pro max */
@media screen and (max-width: 477px) {
  #header {
    padding: 10px 30px;
  }

  #navbar {
    width: 225px;
  }
}

/* end header */

/* start fr-section */
.fr-section {
  max-width: 1200px;
  margin: auto;
  margin-top: 47px;
}

.fr-section h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 45px;
}

.fr-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.fr-section .less {
  display: grid;
  grid-template-columns: 272px;
  gap: 20px;
}


.fr-section .grid .card {
  background: white;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(14, 91, 133, 0.2);
  overflow: hidden;
  transition: transform 0.3s;
}

.fr-section .grid .card:hover {
  transform: translateY(-5px);
}

.fr-section .grid .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.fr-section .grid .card .card-content {
  padding: 15px;
}

.fr-section .grid .card .card-content h3 {
  margin: 0 0 10px;
  color: #0077b6;
}

.fr-section .grid .card .card-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.fr-section .grid .card .card-content button {
  transition: all 0.3s;
  padding: 9px;
  font-size: 17px;
  letter-spacing: 1.8px;
  color: #ffffff;
  background-color: #0e5b85;
  border-radius: 24px;
  border: none;
}

.fr-section .grid .card .card-content button a {}

/* Responsive tweaks (اختياري) */
@media (max-width: 500px) {
  .fr-section .grid .card .card-content p {
    font-size: 13px;
  }
}

/* end fr-section */

/* start se-section */
.se-section {
  padding-bottom: var(--padding-bottom);
  padding-top: 200px;
}

.se-section h1 {
  text-align: center;
  color:  #2c3e50;
  margin-bottom: 44px;
}

.se-section .wrapper {
  background-color: #f0f8ff;
  position: relative;
  border: 1px solid var(--se-color);
  margin-inline: auto;
  max-width: 1536px;
  width: 90%;
  height: 321px;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
}

@keyframes scrollleft {
  to {
    left: -200px;
  }
}

.se-section .wrapper .item {
  position: absolute;
  left: calc(203px * 8);
  top: 5px;
  background-color: #dbefff;
  width: 212px;
  height: 311px;
  border-radius: 6px;
  animation: scrollleft 30s linear infinite;
  overflow: hidden;
}

.se-section .wrapper .item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.se-section .wrapper .item .img img {
  transition: 0.4s;
  width: 100%;
  height: 189px;
  padding: 10px;
}
.se-section .wrapper .item .img img:hover {
  transform: translateY(-4px);
}

.se-section .wrapper .item .img img:hover {
  transform: scale(1.2);
}

.se-section .wrapper .item .img+p {
  text-align: center;
  font-weight: bold;
  color: #2563eb;
  letter-spacing: 1.2px;
  padding: 10px;
}

.se-section .wrapper .item button {
  transition: all 0.3s;
  padding: 6px;
  font-size: 17px;
  letter-spacing: 1.8px;
  color: white;
  background-color: #4da6ff;
  border-radius: 24px;
  border: none;
  transform: translate(-52px, 10px);
  position: absolute;
  bottom: 21px;
}

.se-section .wrapper .item button:hover {}

.se-section .wrapper .item button a {
  color: white;
  text-align: center;
}

.se-section .wrapper .item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.se-section .wrapper .item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.se-section .wrapper .item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.se-section .wrapper .item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.se-section .wrapper .item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.se-section .wrapper .item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.se-section .wrapper .item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

/* end se-section */

/* start tr-section */
.tr-section {
  max-width: 1200px;
  margin: auto;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.tr-section h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 44px;
}

.tr-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tr-section .grid .card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.tr-section .grid .card:hover {
  transform: translateY(-5px);
}

.tr-section .grid .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tr-section .grid .card .card-content {
  padding: 15px;
}

.tr-section .grid .card .card-content h3 {
  margin: 0 0 10px;
  color: #0077b6;
}

.tr-section .grid .card .card-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.tr-section .grid .card .card-content button {
  transition: all 0.3s;
  padding: 9px;
  font-size: 17px;
  letter-spacing: 1.8px;
  color: #ffffff;
  background-color: #0e5b85;
  border-radius: 24px;
  border: none;
}

.tr-section .grid .card .card-content button a {}

@media (max-width: 500px) {
  .tr-section .grid .card .card-content p {
    font-size: 13px;
  }
}

/* end tr-section */

/* start for-section */
.for-section {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.for-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.for-section .container h1 {
  color: #333;
  margin-bottom: 30px;
}

.for-section .container .box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #e0f0f6;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  width: 600px;
}

.for-section .container .box:hover {
  transform: translateY(-4px);
}

.for-section .container .box img {
  width: 250px;
  height: 144px;
  border-radius: 12%;
}

@media (max-width: 655px) {
  .for-section .container .box {
    width: 100%;
  }
}

.for-section .container .box h2 {
  text-align: center;
  padding: 0px 5px;
  color: var(--se-color);
}

@media (max-width: 473px) {
  .for-section .container .box {
    flex-direction: column;
  }
}

.for-section .container .box a {
  color: var(--se-color);
}

.for-section .container .box a:hover {
  text-decoration: underline;
}

/* end for-section */


/* start footer */
.footer {
  margin-top: 50px;
  height: fit-content;
  background-color: #333;
  width: 100%;
}

.footer .container {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 900px) {
  .footer .container {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

.footer .footer-text {
  margin-top: 15px;
}

.footer p:first-child {
  padding: 10px;
  font-size: 20px;
  letter-spacing: 3px;
}

.footer p:nth-child(2) {
  padding: 10px;
  font-size: 20px;
  letter-spacing: 3px;
}

.footer p a {
  color: #ccc;
}

.footer p:last-child {
  color: var(--se-color);
  padding: 10px;
  font-size: 20px;
  letter-spacing: 3px;
}

.footer .social-m {
  margin-top: 15px;
}

.footer .social-m .srv {
  display: flex;
}

@media (max-width: 473px) {
  .footer .social-m .srv {
    flex-direction: column;
  }
}

.footer h2 {
  text-align: center;
  padding: 7px;
  font-size: 26px;
  letter-spacing: 1.5px;
  color: #ccc;
  font-weight: 500;
  margin-top: -3px;
}

.footer a {
  color: black;
}

.footer i {
  font-size: 50px;
  margin: 10px;
  transition: all 1s;
  transform: translateX(-12px);
  color: #bf0b0bba;
}

.footer .i-one:hover {
  color: blue;
}

.footer .i-two:hover {
  color: red;
}

.footer .i-three:hover {
  color: yellow;
}

.footer .i-four:hover {
  color: red;
}

.footer .i-five:hover {
  color: palevioletred;
}

.footer .i-six:hover {
  color: blue;
}

/* end footer */

/* **** */
/* start for-eat */
.for-eat {
  margin-top: 200px;
}

/* end for-eat */

/* start article */
.article-section .container {
  margin-top: 63px;
}

.article-section .text {
  border: 1px solid #eee;
}

.article-section .text h1 {
  text-align: center;
}

.article-section .text p {
  font-size: 19px;
  letter-spacing: 1.1px;
  margin-top: 17px;
}

.article-section .text h3 {
  text-align: center;
  margin-top: 15px;
}

.article-section .text h4 {
  font-size: 19px;
  margin-top: 23px;
}

/* end article */
















/* **** */

/* start pairent policy */

/* start p-content */

.pairent {
  max-width: 1200px;
  margin: auto;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  min-height: calc(100vh - 80px);
}

.pairent .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 367px;
}

.pairent .p-content {
  width: 620px;
}

@media (max-width: 992px) {
  .pairent .p-content {
    width: 100%;
    margin: 10px auto;
  }
}

/* end privacy-content */

/* start article */
.pairent .p-content {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 8px rgba(14, 91, 133, 0.25), inset 0 0 5px rgba(14, 91, 133, 0.1);
}

.pairent .grid .time {
  display: flex;
  padding: 20px;
  color: var(--se-color);
}

.pairent .grid svg {
  width: 17px;
  position: relative;
  top: -1px;
  margin-left: 5px;
}

.pairent .p-content img {
  width: 100%;
  height: 450px;
}

.pairent .p-content h1 {
  color: var(--se-color);
  font-family: "Changa", sans-serif;
  letter-spacing: 2px;
  font-size: 36px;
  padding: 10px;
  margin-bottom: 32px;
}

@media (max-width: 585px) {
  .pairent .p-content h1 {
    letter-spacing: 1px;
    font-size: 31px;
    padding: 10px;
    font-weight: 400;
  }
}

.pairent .p-content p {
  font-family: "Noto Kufi Arabic", sans-serif;
  padding: 10px;
  line-height: 23px;
  font-size: 17px;
}

.pairent .p-content h2 {
  letter-spacing: 1.5px;
  font-size: 36px;
  padding: 10px;
  color: var(--se-color);
  margin-top: 20px;
  margin-bottom: 34px;
}

.pairent .p-content h3 {
  letter-spacing: 1.5px;
  padding: 10px;
  text-decoration: underline;
}

.empty {
  padding-bottom: var(--article-padding);
}

.last {
  padding-bottom: var(--last-padding) !important;
}

.pairent .p-content .privacy a {
  color: var(--se-color);
}

/* end article */


/* start also-content */
.pairent .post {
  border: 1px solid #eee;
}

.pairent .post .tit-blog {
  display: flex;
  justify-content: space-between;
  background-color: #e3e1deb5;
  height: 59px;
  padding: 10px;
  border-radius: 24px;
  border-right: #0e5b85 1.5px solid;
  margin: 15px 10px 28px 10px;
}

.pairent .post .tit-blog h1 {
  color: #1a1a1a;
  letter-spacing: 1.2px;
  margin-top: 3px;
  font-size: 30px;
  font-weight: 450;
}

@media (max-width: 1207px) {
  .pairent .post .tit-blog h1 {
    margin-top: 9px;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .pairent .post .tit-blog h1 {
    margin-top: 8px;
    font-size: 25px;
  }
}

@media (max-width: 360px) {
  .pairent .post .tit-blog h1 {
    margin-top: 12px;
    font-size: 19px;
  }

  .pairent .post .tit-blog button {
    font-size: 14px;
  }
}

.pairent .post .tit-blog button {
  transition: all 0.3s;
  padding: 6px;
  font-size: 17px;
  letter-spacing: 1.8px;
  color: #ffffff;
  background-color: #0e5b85;
  border-radius: 24px;
  border: none;
}

.pairent .post .tit-blog button:hover {
  transform: scale(1.1);
}

.pairent .post .tit-blog a {}

.pairent .post .box {
  display: flex;
  padding: 10px;
}

.pairent .post .box .sub-box {
  margin-right: 10px;
}

.pairent .post .box img {
  width: 250px;
  height: 144px;
  border-radius: 12%
}

.pairent .post .box .time {
  padding: 5px;
}

.pairent .post .box h2 {
  padding: 10px;
  color: #555;
  font-size: 20px;
  letter-spacing: 1.1px;
}

@media (min-width: 993px) {
  .pairent .post .box h2 {
    padding: 0;
    margin-top: 5px;
  }
}

.pairent .post .box h2 {
  transition: 0.4s;
}

.pairent .post .box h2:hover {
  color: var(--se-color);
}

/* end also-content */

/* end pairent */
/* end privacy policy */










/* start about us */
.about {
  padding: 10px;
}

.about .container {}

.about h1 {
  letter-spacing: 1.2px;
  font-size: 37px;
  margin-bottom: 34px;
}

.about p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 27px
}

.about span {
  color: var(--se-color);
}

.about svg {
  width: 25px;
  margin-bottom: -3px;
}

.about h2 {
  letter-spacing: 1.2px;
  font-size: 37px;
  margin-bottom: 34px;
}

.about p a {
  color: var(--se-color);
}

.last-a {
  margin-bottom: 23px;
}

/* end about us */

/* start contact */
.contact {
  box-shadow: 4px 4px 15px rgba(14, 91, 133, 0.2);
  margin: 50px auto;
  width: 700px;
  height: fit-content;
  padding: 10px;
}

.contact h1 {
  color: #333;
  margin-bottom: 44px;
  padding: 13px;
}

.contact p {
  margin-bottom: 16px;
  font-size: 18px;
  padding: 12px;
}

.contact form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact form label {
  margin-bottom: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 21px;
  padding-right: 13px;
}

.contact form input {
  width: 98%;
  height: 50px;
  padding-right: 10px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid #333;
  margin-bottom: 14px;
}

@media (max-width: 743px) {
  .contact {
    width: 95%;
  }

  .contact form {}

  .contact form input {}
}

/* end contact */