:root {
    --green-color: #55B030;
    --brown-color: #F39200;
    --zety-color: #33443c;
}

@font-face {
  font-family: 'Rubik';
  src: url('../includes/fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('../includes/fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('../includes/fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* استخدم الخط */
body {
  font-family: 'Rubik', sans-serif;
}


* {
    font-family: "Rubik", sans-serif;
}
a{
    text-decoration: none;
}
.fa-bars {
    color: var(--green-color);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 !important;
}
.paragraph{
    max-width: 800px;
    margin: auto;
    font-weight: 500;
    font-size: 18px;
}
.move-links {
    background-color: var(--green-color);
    color: white;
    padding: 30px 0px;
    text-align: center;
}
.move-links a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: .5s;
}
.move-links a:hover{
    color:var(--brown-color) !important;
}
.nav-bg {
    background-color: #ffffff80 !important;
    backdrop-filter: blur(5px);
    transition: all 2s;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
}

.logo {
    width: 170px;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block
}

@media screen and (min-width:769px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0
    }
}

@media (min-width:770px) and (max-width:993px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        left: 0;
        top: 30px
        
    }
}
@media (max-width:770px)  {
    .dropend:hover>.dropdown-menu {
        padding: 0px 20px;
        
    }
}


.navbar-nav .dropdown-menu {
    border: 0 !important;
    background-color: #ffff;
    animation: fadeUp 0.8s ease;
    -webkit-animation: fadeUp 0.8s ease;
    transition: 1s;
}

.dropdown-menu .dropdown-item {
    color: #79b623;
}

.dropdown-menu .dropdown-item:focus {
    background-color: #79b623;
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(-7px);
        -webkit-transform: translateY(-7px);
        -moz-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -o-transform: translateY(-7px);
    }
}


.link-hover {
    font-size: 18px;
    color: var(--brown-color);
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.nav-link.active {
    color: var(--green-color) !important;
}

.link-hover:focus,
.link-hover:hover {
    color: var(--green-color);
}

.link-hover:focus:after,
.link-hover:hover:after {
    width: 100%;
    left: 0%;
}

.link-hover:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #6b3e0a;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.social-icon {
    color: #fff;
}

.header-icon {
    color: #fff;
}



.carousel-item {
    height: 80vh;
    width: 100%;
    position: relative;
}

.intro-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    animation: image 2s ease-in-out;
    -webkit-animation: image 2s ease-in-out;
}

.layer-intro a {
    animation: btn 2s;
    -webkit-animation: btn 2s;
}

@keyframes image {
    0% {
        transform: scale(1.2) rotate(5deg);
        -webkit-transform: scale(1.2) rotate(5deg);
        -moz-transform: scale(1.2) rotate(5deg);
        -ms-transform: scale(1.2) rotate(5deg);
        -o-transform: scale(1.2) rotate(5deg);
    }

    100% {
        transform: translatey(0px);
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -ms-transform: translatey(0px);
        -o-transform: translatey(0px);
    }
}

@keyframes text {
    0% {
        transform: translatey(-100px);
        -webkit-transform: translatey(-100px);
        -moz-transform: translatey(-100px);
        -ms-transform: translatey(-100px);
        -o-transform: translatey(-100px);
    }

    100% {
        transform: translatey(0px);
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -ms-transform: translatey(0px);
        -o-transform: translatey(0px);
    }
}

@keyframes btn {
    0% {
        transform: translatey(100px);
        -webkit-transform: translatey(100px);
        -moz-transform: translatey(100px);
        -ms-transform: translatey(100px);
        -o-transform: translatey(100px);
    }

    100% {
        transform: translatey(0px);
        -webkit-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -ms-transform: translatey(0px);
        -o-transform: translatey(0px);
    }
}



@media (max-width:992px) {
    .layer-intro h1 {
        color: var(--bg-color);
        font-size: 2rem;
    }

    .layer-intro p {
        color: var(--bg-color);
        /* padding: 3px; */
        font-size: 15px;
        width: 70%;
        margin: auto;
    }

    .header-icon {
        color: #fff;
        font-size: 12px;
    }
}



.box-intro {
    animation: text ease 1s;
    -webkit-animation: text ease 1s;
    padding: 50px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    /* margin: auto; */
    /* text-align: center; */
}
.box-intro h1{
    /* color: var(--green-color) !important; */
}
.box-intro h4{
    /* color: var(--green-color)  !important; */
    font-weight: 500 !important;
    font-size: 20px !important;
    /* text-shadow: 0px 0px 10px var(--zety-color); */
}



.layer-intro {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: #00000025; */
    display: flex;
    justify-content: start;
    align-items: center;
}

.layer-intro h1 {
    color: var(--green-color);
    font-weight: bold;
}

.layer-intro span {
    color: var(--green-color);
    font-weight: bold;
}

.layer-intro h4,
.layer-intro h6 {
    color: #000;
    font-size: 17px;
    font-weight: 100;
}

@media (max-width:992px) {
    .carousel-item {
        height: 50vh;
        width: 100%;
    }

}

.carousel-control-prev span,
.carousel-control-next span {
    color: var(--white-color);
    font-size: 30px;
}


.fancy {
    background-color: transparent;
    border: 2px solid var(--green-color);
    border-radius: 0;
    box-sizing: border-box;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    /* float: right; */
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
    overflow: hidden;
    z-index: 10;
    overflow: hidden;
}

.fancy::before {
    content: " ";
    width: 110%;
    height: 105%;
    background: var(--brown-color);
    top: 0%;
    left:-110%;
    position: absolute;
    /* transform: translateX(-100%); */
    transform-origin: center;
    transition:  0.3s linear, width 0.3s linear;
    z-index: -1;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    /* padding-left: 2em; */
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--green-color);
    z-index: 10;
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    border: 2px solid var(--brown-color);
}

.fancy:hover::before {
    left: 0%;
}

.fancy:hover .text {
    color: white;
    /* padding-left: 1.5em; */
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

.header-area {
    /* background: linear-gradient(to right, #F39200 50%, #79b623); */
    background: #F39200;
}

/* header  */


/* About  */

.about-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.text-header {
    position: relative;
    text-align: center;
    padding: 12px 0;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--zety-color);
}

.text-header::after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 3px;
    background: var(--green-color);
    bottom: 0;
    left: calc(50% - 103px);
}

.text-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 150px;
    height: 3px;
    background: var(--green-color);
    bottom: -10px;
    left: calc(50% - 75px);
}

.text-about {
    color: var(--zety-color);
}


/* End -- about  */

.board-image {
    position: relative;
    z-index: 1;
}

/* border: 5px solid #33443c; */
.board-image::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -30px;
    background-color: var(--brown-color);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.info-box {
    padding: 15px;
    text-align: center;
    /* height: 300px !important; */
}

.info-box span {
    font-size: 3rem;
    color: var(--green-color);
}

.info-box h3 {
    font-size: 2rem;
    color: var(--brown-color);
}

.info-box p {
    color: #afafaf;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.info-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
  min-height: 300px;
}

.info-box span i {
  font-size: 40px;
  color: var(--green-color);
  transition: all 0.6s ease;
}

.info-box h3 {
  margin: 15px 0 10px;
  font-size: 22px;
  transition: all 0.5s ease;
}

.info-box p {
  color: #555;
  transition: all 0.5s ease;
}

/* تأثير الخلفية عند hover */
.info-box::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-color), #e0e63f);
  transition: all 0.6s ease;
  z-index: 0;
}

.info-box:hover::before {
  top: 0;
}

/* التأثير عند المرور */
.info-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.info-box:hover span i {
  color: #fff;
  transform: rotate(360deg) scale(1.2);
}

.info-box:hover h3,
.info-box:hover p {
  color: #fff;
  transform: translateY(-5px);
}

/* لضبط الطبقات */
.info-box * {
  position: relative;
  z-index: 1;
}
/* End == sec  */

.product-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    height: 350px;
}

.type-layer {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--brown-color);
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 13px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border: 1px solid #ffffff50;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.type-layer p {
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 13px;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}


.bottom-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffff;
    color: #fff;
    width: 100%;
    height: 50px;
    padding-left: 10px;
    padding-top: 5px;
}

.bottom-layer h3 {
    color: var(--green-color);
    text-align: left;
}

.card-product {
    position: relative;
    overflow: hidden;
}

.card-body {
    text-align: center;
    position: absolute;
    background-color: #ffffffbe;
    backdrop-filter: blur(5px);
    left: 0;
    top: -100%;
    width: 100%;
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-body h3 {
    color: #6b3e0a;
    font-size: 20px;
    margin: 2px;
}

.card-body span {
    color: #33443c;
    font-weight: bold;
    margin: 2px;
}

.card-body p {
    font-size: 13px;
    margin: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.card-product:hover .card-body,
.card-product:focus .card-body {
    top: 0;
    height: 100%;
    opacity: 1;
}

.product-sec {
    position: relative;
    z-index: 1;
}

.product-sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 200px;
    background-image: url(../images/dots.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.product-sec::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background-image: url(../images/dots.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}




/* End -- Product */

/* bg-form */
.bg-form {
    background: white url(../images/map.jpg);
    background-position: top left;
    background-size: contain;
    width: 80%;
    margin: auto;
    margin-bottom: -50px;
    position: relative;
    box-shadow: 1px 1px 10px #33443c;
}

.layer-form {
    background-color: #33443c9c;
    padding: 3rem 0;
}


.fancys {
    background-color: transparent;
    border: 2px solid #79b623;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    /* float: right; */
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancys::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancys .texts {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}

.fancys .top-keys {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancys .bottom-key-11 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancys .bottom-key-22 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancys:hover {
    color: white;
    border: 2px solid #79b623;
    background: #79b623;
}

.fancys:hover::before {
    width: 0.9375rem;
    background: white;
}

.fancys:hover .texts {
    color: white;
    padding-left: 1.5em;
}

.fancys:hover .top-keys {
    left: -2px;
    width: 0px;
}

.fancys:hover .bottom-key-11,
.fancys:hover .bottom-key-22 {
    right: 0;
    width: 0;
}

/* end bg-form */


@media (max-width:992px) {
    .ab-section {
        margin-top: 50px !important;
    }

    .box-intro {
        width: 70%;
        padding: 0px 10px;
    }

    .box-intro h1 {
        font-size: 30px;
    }

    .box-intro h4 {
        font-size: 17px !important;
        margin: auto;
        margin-bottom: 10px;
    }

    .fancy,
    .fancys {
        padding: 0.5em 0.5em;
    }

    .product-sec::after {
        width: 100px;
        height: 100px;
    }

    .product-sec::before {
        width: 100px;
        height: 100px;
    }
    .color-dwon h4 {
        font-size: 12px;
    }
}



.social-nav {
    color: #33443c;
    font-size: 22px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.social-nav:hover {
    color: #79b623;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

.nav-item {
    margin-right: 20px;
    font-weight: 500;
}


.form-control:focus,
.form-select:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: rgb(198, 254, 134);
    outline: 0px;
    box-shadow: rgba(149, 253, 13, 0.25) 0px 0px 0px 0.25rem;
}


.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader {
    width: 100px;
    height: 100px;
    background: #fff;
    background-image: url(../images/fav-icon.png);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    position: relative;
    animation: roll 1s ease-in-out infinite alternate;
    -webkit-animation: roll 1.2s ease-in-out infinite alternate;
}

.loader:after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
}

@keyframes roll {
    0% {
        transform: translateX(-150%) rotate(0deg);
    }

    100% {
        transform: translateX(150%) rotate(360deg);
    }
}


@media (max-width:992px) {
    .link-hover:after {
        content: "";
        pointer-events: none;
        bottom: -2px;
        left: 0;
        position: absolute;
        width: 0%;
        height: 2px;
        background-color: #6b3e0a;
        transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 400ms;
        transition-property: width, left;
    }

    .link-hover:focus:after,
    .link-hover:hover:after {
        width: 15%;
        left: 0%;
    }

    .nav-social {
        display: flex;
        flex-direction: row;

    }
}

/* 
.loader {
    width: 60px;
    height: 30px;
    --c:no-repeat radial-gradient(farthest-side,var(--green-color) 93%,var(--green-color));
    background:
      var(--c) 0    0,
      var(--c) 50%  0,
      var(--c) 100% 0;
    background-size: 8px 8px;
    position: relative;
    animation: l4-0 1s linear infinite alternate;
  }
  .loader:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 12px;
    background: var(--brown-color);
    left: 0;
    top: 0;
    animation: 
      l4-1 1s  linear infinite alternate,
      l4-2 0.5s cubic-bezier(0,200,.8,200) infinite;
  }
  @keyframes l4-0 {
    0%      {background-position: 0  100%,50% 0   ,100% 0}
    8%,42%  {background-position: 0  0   ,50% 0   ,100% 0}
    50%     {background-position: 0  0   ,50% 100%,100% 0}
    58%,92% {background-position: 0  0   ,50% 0   ,100% 0}
    100%    {background-position: 0  0   ,50% 0   ,100% 100%}
  }
  @keyframes l4-1 {
    100% {left:calc(100% - 8px)}
  }
  @keyframes l4-2 {
    100% {top:-0.1px}
  } */


.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}


.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #79b623;
}



.circ{
    width: 100%;
    height: 100%;
}
.circ img {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    height: 100%; 
    width: 100%;
    object-fit: cover;
    margin: auto;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.offers-card {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    height: 100%; 
    width: 100%;
}


.offers-card {
    background-color: #fff !important;
    border-radius: 25px 25px 25px;
    /* cursor: pointer; */
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-up {
    border-radius: 50px;
    position: relative;
    background-color: #ffffff !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    width: 100%;
    height: 100%;
}

.color-up::after {
    position: absolute;
    background-color: var(--brown-color);
    height: 50px;
    width: 50px;
    content: '';
    top: 0;
    right: 0;
    border-bottom-left-radius: 50px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.color-up:hover::after {
    background-color: var(--green-color);
    height: 105%;
    width: 105%;
    opacity: 0.3;
}

.color-dwon {
    background-color: #fff !important;
}

.color-dwon h4 {
    font-size: 14px;
}

.offers-card:hover {
    transform: translatey(-10px);
    -webkit-transform: translatey(-10px);
    -moz-transform: translatey(-10px);
    -ms-transform: translatey(-10px);
    -o-transform: translatey(-10px);
}

.offers {
    position: relative;
    background-color: white !important;
}

.offers::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/he.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100px;
    height: 200px;
    animation: translateYAnimation 7s ease-in-out infinite;
    -webkit-animation: translateYAnimation 5s ease-in-out infinite;
    z-index: -1;
}


/* 
@keyframes translateYAnimation {
    from {
        transform: rotatey(0);
        -webkit-transform: rotatey(0);
        -moz-transform: rotatey(0);
        -ms-transform: rotatey(0);
        -o-transform: rotatey(0);
    }

    to {
        transform: rotatey(360deg);
        -webkit-transform: rotatey(360deg);
        -moz-transform: rotatey(360deg);
        -ms-transform: rotatey(360deg);
        -o-transform: rotatey(360deg);
    }
} */


.bg-sec {
    background-color: #f8f9fa;
    height: 100px;
    width: 100%;
}



.intro-baner {
    height: 50vh;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}


.content-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.content-page h1 {
    color: #fff;
    animation: text ease 1s;
    -webkit-animation: text ease 1s;
}

.content-page span {
    font-size: 14px;
    color: #fff;
    background-color: #79b62398;
    backdrop-filter: blur(3px);
    padding: 15px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    animation: text ease 1.5s;
    -webkit-animation: text ease 1.5s;
}





.contacts .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
}
.contacts .head{
    font-size: 50px;
}
.contacts .head +p{
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 30px;
}
.contacts .information {
    margin: 15px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.contacts .information i{
    font-size: 25px;
    color: var(--brown-color);
}
.contacts .information a{
    color: black;
    font-weight: 500;
}
.contacts .submit{
    padding: 15px 25px ;
    color: white;
    background-color: var(--green-color);
    border-radius: 10px;
    transition: .5s;
    display: block;
    width: 130px;
    margin: auto;
    margin-top: 20px;
}
.contacts .submit:hover{
    background-color: var(--brown-color);
}
.contacts .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--green-color);
    border-radius: 50%;
    border: 2px dotted var(--green-color);
}

.contacts .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 10px 0;
}

.contacts .info-item p,
.info-item a {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #6c757d;
}

.contacts .php-email-form {
    width: 80%;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-radius: 10px;
    margin: auto;
}
.contacts .php-email-form h2 {
    color: var(--brown-color);
}

.contacts .php-email-form .form-group {
    padding-bottom: 20px;
}

.contacts .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contacts .php-email-form input,
.contacts .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contacts .php-email-form input:focus,
.contacts .php-email-form textarea:focus {
    border-color: var(--brown-color);
}

.contacts .php-email-form input {
    height: 44px;
}

.contacts .php-email-form textarea {
    padding: 10px 12px;
}

.product-item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.text-head-sec {
    color: var(--brown-color);
}
.text-head-sec h3{
    font-size: 40px ;
}

.info-det span {
    margin-bottom: 15px !important;
    color: #79b623;
}


.bg-section {
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.bg-section::after {
    position: absolute;
    bottom: 0;
    /* background-image: url(../images/bak.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.1;
    z-index: -1;
}

.carousel-control-prev span.arr-lr,
.carousel-control-next span.arr-lr {
    color: var(--brown-color);
    opacity: 1 !important;
}




.owel-images {
    height: 175px;
    width: 175px;
    margin: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: grayscale(0%);
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
    -webkit-filter: grayscale(0%);
}

.owel-images:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}



.footer {
  background: #0c1a12;
  color: #fff;
  font-family: "Cairo", sans-serif;
}

.footer-logo {
  width: 160px;
}

.footer-desc {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #71c55d;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #71c55d;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #ccc;
  display: flex;
  align-items: center;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #71c55d;
  color: #71c55d;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #71c55d;
  color: #fff;
  transform: translateY(-3px);
}

.footer-divider {
    border-color: rgb(255, 255, 255);
}
.copyright {
    background-color: var(--brown-color);
    max-width: 100%;
    overflow: hidden;
}

.footer-link {
  color: #71c55d;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
}







.squre:hover {
    box-shadow: 0px 0px 4px var(--brown-color);
    background-color: #fff;
}

.break-squer {
    position: relative;
    border: 1px solid #4747476e;
    width: 100%;
}

.break-squer::after {
    position: absolute;
    bottom: -4px;
    left: -1px;
    height: 8px;
    width: 8px;
    background-color: var(--red-color);
    content: '';
}

.break-squer::before {
    position: absolute;
    bottom: -4px;
    right: -1px;
    height: 8px;
    width: 8px;
    background-color: var(--red-color);
    content: '';
}


.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

@media (max-width:992px) {
    .layer-intro h4, .layer-intro h6 {
        color: #000;
        font-size: 17px;
        font-weight: 100;
        width: 90%;
        text-wrap: wrap;
    }
    .contacts .head{
        font-size: 30px;
    }
}


.rev:nth-child(even) {
    background-color: #f8f8f8;
    margin: 10px 0;
    padding: 20px 0;
}

.head {
    color: var(--green-color);
}

.flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer {
  background: #0c1a12;
  color: #fff;
  font-family: "Cairo", sans-serif;
}

.footer-logo {
  width: 160px;
}

.footer-desc {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #71c55d;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
  display: block;
}

.footer-links a:hover {
  color: #71c55d;
  transform: translateX(10px);
}

.footer-contact li {
  margin-bottom: 10px;
  color: #ccc;
  display: flex;
  align-items: center;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #71c55d;
  color: #71c55d;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #71c55d;
  color: #fff;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-link {
  color: black;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
}

.certificate-box{
    border-radius: 20px;
    border: 1px solid #ccc;
    position: relative;
    min-height: 400px !important;
    max-height: 450px !important;
    padding: 0 !important;
    overflow: hidden;
}
.certificate-box div:first-of-type{
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 50%;
    /* padding: 10px; */
    width: 100%;
    overflow: hidden;
}
.certificate-box div:last-of-type{
    padding-left: 10px;

    
}
.certificate-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;    
}
.certificate-box div h3{
    font-size: 25px;
    color: var(--green-color);
}
.certificate-box div p{
    color: #555;
    font-size: 15px;
}
.certificate-box div p:first-of-type{
    color: var(--brown-color);
}
.certificate-box:hover img{
    transform: scale(1.1) rotate(5deg);
}

.main-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.thumb-img {
  width: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .thumb-img {
    width: 80px;
  }
}

.thumb-img:hover {
  transform: scale(1.05);
}
.text-main {
  color: var(--main-color, #2b7a0b);
  font-weight: 600;
  margin-bottom: 10px;
}

.info-det p {
  margin-bottom: 5px;
  color: #555;
  font-size: 15px;
}

.info-det strong {
  color: #222;
}
    .product-details {
      padding: 40px;
    }

    .product-details h2 {
      font-size: 2rem;
      color: var(--green-color);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .product-details p.description {
      color: #555;
      font-size: 1rem;
      margin-bottom: 25px;
      line-height: 1.7;
    }

    .product-info li {
      margin-bottom: 8px;
      font-size: 0.95rem;
      color: #333;
    }

    .product-info strong {
      color: #1b5e20;
    }

    .btn-custom {
      background: var(--green-color);
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      font-weight: 500;
    }

    .btn-custom:hover {
      background: var(--brown-color);
      color: white;
      transform: translateY(-2px);
    }

.float-category{
    position: absolute;
    top: 0;
    left: 30px;
    background-color: var(--brown-color);
    color: white;
    width: 70px;
    height: 65px;
    border-end-end-radius: 30px;
    border-end-start-radius: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    padding-top: 15px;
}
.blur1 {
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: 250px;
  height: 250px;
  background: var(--green-color); /* شفافية خفيفة */
  border-radius: 50%; /* يخليها دايرة ناعمة */
  filter: blur(90px); /* ضباب إضافي ناعم */
  z-index: -1;
}
.blur2 {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 250px;
  height: 250px;
  background: var(--green-color); /* شفافية خفيفة */
  border-radius: 50%; /* يخليها دايرة ناعمة */
  filter: blur(90px); /* ضباب إضافي ناعم */
  z-index: -1;
}
.text-about ul li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}
.text-about h4 {
    color: var(--green-color);
    font-weight: 600;
}
.info-box span {
    font-size: 30px;
    color: var(--green-color);
    display: block;
    margin-bottom: 10px;
}

.info-box h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.info-box p {
    color: #555;
}
.why-egypt-section {
    background-color: white;
}

.why-egypt-section h3 {
    font-weight: 700;
}

.why-egypt-section ul li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}
.core-value{
    background-color: #f9f9f9;
}
/* ====== OPERATIONS SECTION ====== */
.operations-section {
  background-color: #f9f9f9;
}

.operation-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  height: 100%;
}

.operation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.operation-card h4 {
  color: var(--main-color);
  font-weight: 600;
  margin: 15px 0 10px;
}

.operation-card p {
  color: #555;
  line-height: 1.7;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,  #79b832);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 15px;
}

/* ====== SUSTAINABILITY SECTION ====== */
.sustainability-section {
  background: linear-gradient(135deg, #7ac142, #447d25);
  color: #fff;
  position: relative;
  margin: 0;
}

.sustainability-content h3 {
  font-weight: 700;
  color: #fff;
}

.sustainability-content p {
  color: #f9f9f9;
  font-size: 17px;
  line-height: 1.8;
}

.sustainability-content ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.sustainability-content ul li i {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}
