@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --main-title-: #00752d;
    --section-: #edf0f1;
    --main-color-: #00bb47;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    margin: 0;
    padding: 0;
    user-select: none;
}

/* شاشة اللودنج */
.loader-wrapper {
    position: fixed;
    /* يغطي الشاشة */
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color-);
    z-index: 9999;
    font-size: 3em;
    font-weight: 600;
    user-select: none;
    color: #fff;
    transition: opacity 1.5s linear;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: transparent;
    mask: repeating-linear-gradient(90deg,
            transparent 0,
            transparent 6px,
            black 7px,
            black 8px);
}


.loader-letter {
    display: inline-block;
    opacity: 0;
    animation: loader-letter-anim 6s infinite linear;
    z-index: 2;
}

.loader-letter:nth-child(1) {
    animation-delay: 0.1s;
}

.loader-letter:nth-child(2) {
    animation-delay: 0.205s;
}

.loader-letter:nth-child(3) {
    animation-delay: 0.31s;
}

.loader-letter:nth-child(4) {
    animation-delay: 0.415s;
}

.loader-letter:nth-child(5) {
    animation-delay: 0.521s;
}

.loader-letter:nth-child(6) {
    animation-delay: 0.626s;
}

.loader-letter:nth-child(7) {
    animation-delay: 0.731s;
}

.loader-letter:nth-child(8) {
    animation-delay: 0.837s;
}

.loader-letter:nth-child(9) {
    animation-delay: 0.942s;
}

@keyframes loader-letter-anim {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
        text-shadow: 0 0 4px #fff;
        transform: scale(1.1) translateY(-2px);
    }

    20% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
    }
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
    /* عشان تبقى مش متاحة بعد الاختفاء */
}

/* المحتوى */
#content {
    display: none;
    padding: 40px;
    text-align: center;
}

/* Sections */
.section {
    margin: 50px 0 50px;
}

/* Navbar */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    z-index: 10;
    text-transform: uppercase;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    position: relative;
}

nav a::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: var(--main-color-);
    transition: width 0.3s linear;
}

nav a:not(.logo):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 600px;
}

.hero .left {
    flex: 2;
    background: url(imges/BACK.jpg) no-repeat center/cover;
    position: relative;
}


.hero .right {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.hero .right h1 {
    text-align: center;
    text-transform: capitalize;
    font-size: 45px;
    line-height: 1.2;
    color: #222;
    margin-top: 150px;
}

.hero .right p {
    margin: 20px 0;
    color: #555;
}

.btn {
    display: inline-block;
    background: #00bb47;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s linear;
}

.btn:hover {
    background-color: white;
    color: #00bb47;
    border: 1.5px solid #00bb47;
}

.left .btn2 {
    display: inline-block;
    background: #00bb47;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    transition: all 0.3s linear;
    width: 240px;
}

.left .btn2:hover {
    background-color: rgba(255, 255, 255, 0.525);
    color: #00bb47;

}
.logo{
    z-index: 2000;
}

/* Menu (Desktop) */
.menu {
    display: flex;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero .right {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #00bb47f0;
        ;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu a {
        margin-top: 20px;
        font-size: 25px;
        color: white;
    }

    .left .toggle {
        display: block;
        z-index: 100;
        position: absolute;
        right: 25px;
        top: 20px;
    }

}

/* Desktop adjustments */
@media (min-width: 769px) {

    .left .toggle,
    .menu .toggle-close {
        display: none;
    }

    .menu {
        position: relative;
        right: -20px;
    }

    .left .btn2 {
        display: none;

    }
}

/* Titles */
.title {
    text-align: center;
    position: relative;
}

.title h1 {
    font-size: 70px;
    font-weight: 100;
    text-transform: uppercase;
    color: white;
}

.title span {
    font-size: 45px;
    font-family: "Bangers", system-ui;
    color: white;
}

.contact .container .row i {
    color: #00bb47;
}

/* Services / About / Other Sections ... */
.min {
    margin-top: 40px;
}

.min .col>h3 {
    color: var(--main-title-);
}

.min .row>.col {
    border-radius: 5px;
    margin: 7px;
    transition: all 0.3s linear;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.min .row>.col>.info {
    background: #00bb483f;
    height: 150px;
    padding: 20px;
    transition: background 0.2s linear;
}

.min .row>.col>.info:hover {
    background: var(--main-color-);
}

.min .row>.col>.info i {
    font-size: 46px;
    color: #ffffff;
}

.min .row .years {
    background: url(imges/1.jpg) no-repeat center/cover;
    color: white;
}

.min .row .product {
    background: url(imges/2.jpg) no-repeat center/cover;
    color: white;
}

.min .row .world {
    background: url(imges/3.jpg) no-repeat center/cover;
    color: white;
}

.min .min-title {
    font-size: 200px;
    font-family: 'Pacifico', cursive;
    color: var(--main-title-);
}

.about {
    background: url(imges/aboutback.jpg) no-repeat center/cover fixed;
    padding: 20px;
    cursor: pointer;
}


.about .row {
    background: #00bb483f;
    padding: 40px;
    color: white;
    transition: background 0.3s linear;
}

.about .row .col {
    display: contents;
}

.about .row:hover {
    background: var(--main-color-);
}

.about .row h2 {
    color: white;
    text-transform: uppercase;
}

/* Pickles */
.pickles {
    position: relative;
}

.pickles h2 {
    color: var(--main-title-);
}

.pickles p {
    font-size: 20px;
    width: 300px;
    color: #00bb47;
}

.pickles .plus,
.pickles .plus2,
.pickles .plus3 {
    position: absolute;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}

.pickles .plus {
    left: -12px;
    top: -92px;
}

.pickles .plus2 {
    left: -12px;
    bottom: -50px;
}

.pickles .plus3 {
    right: 0;
    top: -50px;
}

.pickles h4 {
    font-weight: bold;
    display: inline;
}

/* Services */
.service-card {
    padding: 25px;
    transition: all 0.5s linear;
    position: relative;
}

.service-card .info {
    background: #00bb483f;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    color: white;
    cursor: pointer;
}

.service-card:hover .info {
    background: var(--main-color-);
}

.service-card.active {
    background: linear-gradient(90deg, #033f1c, #356716);
    color: #fff;
}


.products {
    background-color: #ebebeb9e;
}

 .link {
    text-decoration: none;
}

 .link i {
    font-size: 30px;
    color: #00752d;
}

.products .row .col {
    background-color: white;
    margin: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s linear;
}

.products .row .col:hover {
    box-shadow: -4px 9px 21px 4px #ddddddc9;
}

.products p {
    font-size: 15px;
    color: #5e5e5e;
    font-weight: 100;
}


.add .container .row .product {
    background: url(imges/add1.jpg);
    background-size: cover;
}

.add .container .row .years {
    background: url(imges/add2.png);
    background-size: cover;

}

.service-box {
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s linear;
    position: relative;
}
.service-box::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 3px; /* سمك الخط */
    background: #27ae60;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center; /* مهم عشان يبدأ من النص */
    transition: transform 0.4s ease;

} 
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}
.service-box:hover::after{
    transform: translateX(-50%) scaleX(1);
    width: 100%;
}


footer {
    background-color: #00bb47;
    color: white;
    padding: 40px;
}

footer ul li {
    list-style-type: none;
}

footer .col {
    margin-top: 20px;
}

footer ul a {
    color: white;
    text-decoration: none;
}
.social a {
text-decoration: none;
}

 .social a i{
    font-size: 30px;
    color: white;
}


  

/* page product */

.filter-list {
    width: 50%;
    display: flex;
    margin-bottom: 50px;
}

.filter-list li {
    display: flex;
    height: 32px;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    width: 130px;
    background-color: #00752d;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s linear;
    margin: 5px;
    padding: 10px;
}

.filter-list li:hover {
    background-color: white;
    color: #00bb47;
    border: 1px solid #00bb47;
}

ul .active {
    background-color: white;
    color: #00bb47;
    border: 1px solid #00bb47;
}

.imges {
    background-color: #ebebeb9e;
}

.imges .row .col {
    background-color: white;
    margin: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s linear;
}

/* contact us */
.contact-info {
  background: #00bb47; /* اللون الأخضر */
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: #fff;
}

iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.Achievements  .shadow-sm {
    transition: all 0.3s ease;
  }
  
 .shadow-sm:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}

    .whatsapp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 999;
      }
      
      /* المربع الأبيض للكلمة */
      .whatsapptext {
        background-color: #fff;
        color: #000;
        font-weight: 600;
        padding: 7px 14px;
        border-radius: 20px;
        font-size: 14px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
      }
      
      /* زر الواتساب */
      .whatsapp-btn {
        background-color: #25D366;
        color: #fff;
        font-size: 26px;
        border-radius: 50%;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        width: 60px;
      }
      
      .whatsapp-btn:hover {
        background-color: #1ebe5d;
      }
      