

.nav-btn {
    @apply text-gray-700 hover:text-[#6B7A5B] font-medium relative;
}

.mobile-btn {
    @apply block w-full text-right text-gray-700 hover:text-[#6B7A5B]
            font-medium py-2 px-4 rounded-lg hover:bg-gray-50;
    display: inline;
    
}
.bg-grid-pattern {
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, #d8d8d031 1px, transparent 1px),
        linear-gradient(to bottom, #d8d8d031 1px, transparent 1px);
    background-size: 38px 38px;

        



}


.hero-sction {
    margin-top: 100px;
    justify-content: center;
}




    
.hero-round {
    
    /* padding-top: 20px; */
    padding-bottom: 100px;
    height: 100vh;
}
.hero-round-edition {
    background-color: #4a6741;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 100%;
    width: 100%;
    display: flex;
    justify-items: flex-end;
    align-items: flex-end;

    
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size:50%;
    /* background-size:100%; */
    background-attachment: fixed;
    background-position: left bottom;

}

@media (max-width: 1025px) {

    .hero-round {
    
    
    padding-bottom: 100px;
    height: 90vh;
    
    }
    .hero-round-edition {
        background-size:80%;
        background-attachment: fixed;
        background-position: center center;

    }


}

/* Buttons */
    .buttons {
        display: flex;
        gap: 16px;
        flex-direction: row-reverse;
        margin-top: 8px;
        justify-content: flex-end;
    }
    .btn-primary {
        background: #4a6741;
        color: #fff;
        border: none;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-direction: row-reverse;
        font-family: inherit;
        transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
        box-shadow: 0 4px 16px rgba(74,103,65,0.3);
        
    }
    .btn-primary:hover {
        background: #3b5a33;
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(74,103,65,0.4);
    }
    .btn-primary .arrow {
        font-size: 18px;
        transition: transform 0.3s;
    }
    .btn-primary:hover .arrow {
        transform: translateX(-4px);
    }

    .btn-secondary {
        background: transparent;
        color: #4a6741;
        border: 2px solid #4a6741;
        padding: 14px 30px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        transition: background 0.3s, color 0.3s, transform 0.15s;
    }
    .btn-secondary:hover {
        background: #4a6741;
        color: #fff;
        transform: translateY(-2px);
    }

    /* Contact Bar */
    .contact-bar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        margin-top: 10px;
    }
    .contact-bar .phone-num {
        font-size: 17px;
        font-weight: 700;
        color: #2c2c2c;
        letter-spacing: 0.5px;
        direction: ltr;
    }
    .contact-bar .phone-label {
        font-size: 12px;
        color: #888;
        text-align: right;
        display: block;
        margin-bottom: 2px;
    }
    .contact-bar .phone-icon {
        width: 44px;
        height: 44px;
        background: #4a6741;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        box-shadow: 0 3px 12px rgba(74,103,65,0.3);
        transition: background 0.3s, transform 0.2s;
        cursor: pointer;
    }
    .contact-bar .phone-icon:hover {
        background: #3b5a33;
        transform: scale(1.08);
    }

    /* about */
    .about-experince {
        left:50%;
        top:50%;
        transform:translate(-50%, -50%);
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border-radius: 20px;
        /* clip-path: polygon(100% 36%, 100% 100%, 0% 100%, 0% 36%, 50% 0%);
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        */
        background-color: rgb(235, 236, 234);;
    }


    /*  */
    /* لو عايز تكبير حجم السهم وتغيير سمكه */
    .swiper-button-next,
    .swiper-button-prev {
                
        width: 3rem;            
        height: 3rem;
        background-color: rgba(255,255,255,0.8); 
        border-radius: 50%;     
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 2rem;      
        font-weight: 700;  
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: #6B7A5B; /* لون الخلفية عند المرور */
        color: #fff;               /* السهم أبيض */
        transform: scale(1.1);     /* تكبير بسيط عند المرور */
        
    }

/* ===== Modern Olive Scrollbar ===== */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #6B7A5B #ffffff;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #6B7A5B;
  border-radius: 999px;
  border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #556B2F;
}



.custom-swiper-btn {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.9);
    color: #6B7A5B;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all .3s ease;
}

.custom-swiper-btn:hover {
    background: #6B7A5B;
    color: white;
}

.custom-swiper-btn::after {
    font-size: 18px !important;
    font-weight: bold;
}



/* ==================================== */
/* 8) Fade In Scale Up 
<div class="opacity-0 fade-in-scale-up">Card 1</div>
<div class="opacity-0 fade-in-scale-down">Card 2</div>
<div class="opacity-0 swing">Icon 1</div>
<div class="opacity-0 shake">Form Error</div>
<div class="opacity-0 wobble">Notification</div>
<div class="opacity-0 pulse-scale">Button Hover</div>
<div class="opacity-0 bounce-in">Alert</div>
<div class="opacity-0 roll-in">Sidebar</div>
<div class="opacity-0 fade-out">Modal Close</div>
<div class="opacity-0 slide-in-left">Nav Item</div>
<div class="opacity-0 slide-in-right">Nav Item</div>


*/

@keyframes fadeInUp { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeInDown { from {opacity:0; transform:translateY(-20px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeInLeft { from {opacity:0; transform:translateX(-20px);} to {opacity:1; transform:translateX(0);} }
@keyframes fadeInRight { from {opacity:0; transform:translateX(20px);} to {opacity:1; transform:translateX(0);} }
@keyframes zoomIn { from {opacity:0; transform:scale(0.8);} to {opacity:1; transform:scale(1);} }

.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.fade-in-down { animation: fadeInDown 0.6s ease-out forwards; }
.fade-in-left { animation: fadeInLeft 0.6s ease-out forwards; }
.fade-in-right { animation: fadeInRight 0.6s ease-out forwards; }
.zoom-in { animation: zoomIn 0.6s ease-out forwards; }

/* Reveal */
.reveal { opacity:0;  } /* مخلي العنصر مخفي من البداية */





/* ===== Gentle Floating ===== */
/* @keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.float { animation: float 3s ease-in-out infinite; } */

/* ===== Slow Rotate ===== */
/* @keyframes slow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.slow-rotate { animation: slow-rotate 8s linear infinite; } */



/* ===== Gentle Horizontal Drift ===== */
/* @keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
.drift { animation: drift 4s ease-in-out infinite; } */

/* 0000 */




/* ===== Gentle Floating ===== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.float { animation: float 3s ease-in-out infinite; }

/* ===== Slow Rotate ===== */
@keyframes slow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.slow-rotate { animation: slow-rotate 8s linear infinite; }

/* ===== Gentle Horizontal Drift ===== */
@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
.drift { animation: drift 4s ease-in-out infinite; }

/* ===== Gentle Floating + Rotate Combo ===== */
@keyframes float-rotate {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.float-rotate { animation: float-rotate 4s ease-in-out infinite; }

/* ===== Gentle Floating + Drift Combo ===== */
@keyframes float-drift {
  0% { transform: translate(0,0); }
  50% { transform: translate(6px,-6px); }
  100% { transform: translate(0,0); }
}
.float-drift { animation: float-drift 5s ease-in-out infinite; }


@keyframes spinBackForth {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(70deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-70deg); }
  100% { transform: rotate(0deg); }
}

.spin-loop {
  display: inline-block; /* مهم لو عنصر inline */
  animation: spinBackForth 3s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* تكبير 20% */
  }
  100% {
    transform: scale(1);
  }
}

.zoom-in-out {
  display: inline-block; /* لو العنصر inline */
  animation: zoomInOut 2s ease-in-out infinite;
}


.infinite-fade-in-up { animation: fadeInUp 2s ease-out infinite; }
.infinite-fade-in-down { animation: fadeInDown 2s ease-out infinite; }
.infintite-zoom-in { animation: zoomIn 2s ease-in-out infinite; }

.infinite-fade-in-left { animation: fadeInLeft 2s ease-out infinite; }
.infinite-fade-in-right { animation: fadeInRight 2s ease-out infinite; }

/* ===== Reveal Base ===== */
.reveal { opacity: 0; } /* مخلي العنصر مخفي من البداية */

