/*==================================================
    GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

/*==================================================
    ROOT
==================================================*/

:root{

/*    --primary:#1b7f5c;*/
    --primary:#B57EDC;
/*    --primary-dark:#13664a;*/
    --primary-dark:#B57EDC;
    --secondary:#f8f9fa;
    --dark:#222;
    --text:#555;
    --white:#fff;
    --shadow:0 12px 35px rgba(0,0,0,.08);
    --radius:15px;
    --transition:.35s;

}

/*==================================================
    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}
/*body{

    padding-top:90px;

}*/
img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;

}

section{

    padding:0 0 0 0;

}

/*==================================================
    TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5{

    font-weight:700;
    color:#111;


}

.display-3{

    line-height:1.2;

}

.text-success{

    color:var(--primary)!important;

}
.progress-bar-bg{

    background-color:var(--primary)!important;

}
.text-muted{

    color:#777!important;

}

/*==================================================
    BUTTONS
==================================================*/

.btn{

    border-radius:50px;
    padding:14px 32px;
    transition:.3s;

}

.btn-success{

    background:var(--primary);
    border-color:var(--primary);

}

.btn-success:hover{

    background:var(--primary-dark);
    border-color:var(--primary-dark);
    transform:translateY(-3px);

}

.btn-outline-dark:hover{

    transform:translateY(-3px);

}

/*==================================================
    TOP BAR
==================================================*/

.bg-dark{

    background:#1a1a1a!important;

}

/*==================================================
    NAVBAR
==================================================*/

.navbar{

    padding:0 0 0 0 !important;
    transition:.35s;
    background:#fff!important;
    z-index:999;

}

.navbar-brand{

    font-size:34px;
    font-weight:700;
    color:var(--primary)!important;

}

.nav-link{

    margin-left:18px;
    font-weight:500;
    color:#333!important;
    position:relative;

}

.nav-link::after{

    content:"";
    position:absolute;
    bottom:-6px;
    left:0;

    width:0;
    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}
.navbar.scrolled{

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1050;

    background: #fff !important;

    padding: 12px 0;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    animation: slideDown .35s ease;

}
@keyframes slideDown{

    from{

        transform: translateY(-100%);

    }

    to{

        transform: translateY(0);

    }

}
/*.navbar.scrolled{

    box-shadow:0 10px 25px rgba(0,0,0,.08);
    padding:12px 0;

}*/

/*==================================================
    HERO
==================================================*/

.hero{

    position: relative;

/*    min-height: 100vh;*/
    min-height: 80vh;

    display: flex;

    align-items: center;

    background-image: url("image/bg-image-new01.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    overflow: hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:rgba(27,127,92,.05);

    border-radius:50%;

    right:-250px;
    top:-200px;

}

.hero h1{

    font-size:40px;

    margin-top:15px;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    color:#666;

}

.hero-image{

    animation:float 5s ease-in-out infinite;

    max-height:600px;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
    SECTION TITLES
==================================================*/

section h6{

    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

}

section h2{

    font-size:42px;
    margin-top:12px;
    margin-bottom:20px;

}

/*==================================================
    ABOUT
==================================================*/

.about-image{

    border-radius:20px;
    box-shadow:var(--shadow);

}

/*==================================================
    GLOBAL CARD
==================================================*/

.card{

    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.card img{

    transition:.5s;

}

.card:hover img{

    transform:scale(1.05);

}

/*==================================================
    IMAGE STYLING
==================================================*/

.rounded{

    border-radius:20px!important;

}

.shadow{

    box-shadow:var(--shadow)!important;

}

/*==================================================
    UTILITIES
==================================================*/

.bg-light{

    background:#f8fafb!important;

}

.text-center p{

    max-width:700px;
    margin:auto;

}

.container{

    position:relative;
    z-index:2;

}
/*==================================================
    PRODUCT SECTION
==================================================*/

#products .card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:all .35s ease;

}

#products .card img{

    height:260px;
    width:100%;
    object-fit:cover;
    transition:.5s;

}

#products .card:hover img{

    transform:scale(1.08);

}

#products .card-body{

    padding:28px;

}

#products h5{

    margin-bottom:15px;
    font-size:22px;

}

#products p{

    color:#666;
    margin-bottom:0;

}

/*==================================================
    PROCESS SECTION
==================================================*/

.process-box{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    transition:.35s;
    height:100%;
    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.process-box:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.process-box i{

    font-size:58px;
    color:var(--primary);
    margin-bottom:25px;
    transition:.35s;

}

.process-box:hover i{

    transform:rotate(8deg) scale(1.1);

}

.process-box h5{

    margin-bottom:15px;

}

/*==================================================
    WHY CHOOSE US
==================================================*/

.why-item{

    display:flex;
    gap:18px;
    margin-bottom:30px;

}

.why-icon{

    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(27,127,92,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--primary);
    font-size:24px;

    flex-shrink:0;

}

.why-item h5{

    margin-bottom:8px;

}

.why-item p{

    color:#666;
    margin-bottom:0;

}

/*==================================================
    STATISTICS
==================================================*/

.stats{

    background:linear-gradient(135deg,#18734f,#23926b);

    color:#fff;

}

.stats h1{

    color:#fff;
    font-size:60px;
    font-weight:700;

}

.stats p{

    color:#e7e7e7;
    font-size:18px;
    margin-top:10px;

}

.stats .col-lg-3{

    position:relative;

}

.stats .col-lg-3::after{

    content:"";

    position:absolute;

    right:0;
    top:20%;

    width:1px;
    height:60%;

    background:rgba(255,255,255,.25);

}

.stats .col-lg-3:last-child::after{

    display:none;

}

/*==================================================
    ICONS
==================================================*/

.display-4 i{

    color:var(--primary);

    transition:.35s;

}

.display-4:hover i{

    transform:scale(1.1);

}

/*==================================================
    CERTIFICATION BOXES
==================================================*/

.border.rounded-4{

    border:none!important;

    background:#fff;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.border.rounded-4:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.border.rounded-4 i{

    transition:.35s;

}

.border.rounded-4:hover i{

    transform:scale(1.15);

}

/*==================================================
    IMAGE EFFECTS
==================================================*/

img{

    transition:.45s;

}

img:hover{

    transform:scale(1.02);

}

/*==================================================
    HOVER SHADOW
==================================================*/

.shadow-sm{

    transition:.35s!important;

}

.shadow-sm:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.15)!important;

}

/*==================================================
    DIVIDER
==================================================*/

.section-divider{

    width:80px;
    height:4px;
    background:var(--primary);
    margin:20px auto 40px;
    border-radius:50px;

}

/*==================================================
    LIST STYLING
==================================================*/

.check-list{

    padding-left:0;

}

.check-list li{

    margin-bottom:14px;

    color:#555;

}

.check-list i{

    color:var(--primary);

    margin-right:10px;

}

/*==================================================
    ANIMATION
==================================================*/

.fade-up{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(35px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
/*==================================================
    TESTIMONIALS
==================================================*/

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.testimonial-card .stars{

    color:#ffc107;
    font-size:18px;
    margin-bottom:15px;

}

.testimonial-card p{

    color:#666;
    margin-bottom:25px;

}

.testimonial-card h6{

    margin-bottom:5px;
    font-weight:600;

}

/*==================================================
    CONTACT
==================================================*/

#contact{

    background:#fafafa;

}

#contact form{

    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-control{

    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:12px 18px;
    box-shadow:none;

}

textarea.form-control{

    height:180px;
    resize:none;

}

.form-control:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(27,127,92,.15);

}

iframe{

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}
.padding-bottom{
    padding-bottom: 3%;
}
/*==================================================
    CTA
==================================================*/

.bg-success{

    background:linear-gradient(135deg,#18734f,#23926b)!important;

}

.bg-success h2,
.bg-success p{

    color:#fff;

}

/*==================================================
    FOOTER
==================================================*/

footer{

    background:#111;
    color:#ddd;

}

footer h3,
footer h5{

    color:#fff;
    margin-bottom:20px;

}

footer ul{

    padding:0;

}

footer ul li{

    margin-bottom:12px;

}

footer a{

    color:#ccc;
    transition:.3s;

}

footer a:hover{

    color:#fff;
    padding-left:8px;

}

footer p{

    color:#bbb;

}

footer .btn{

    width:42px;
    height:42px;
    border-radius:50%;
    padding:0;

    display:inline-flex;
    justify-content:center;
    align-items:center;

}

footer .btn:hover{

    background:var(--primary);
    border-color:var(--primary);

}

footer hr{

    opacity:.15;

}

/*==================================================
    BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    bottom:25px;

    right:25px;

    width:52px;
    height:52px;

    border-radius:50%;

    border:none;

    background:var(--primary);

    color:#fff;

    display:none;

    cursor:pointer;

    z-index:999;

    transition:.35s;

}

#backToTop:hover{

    background:var(--primary-dark);
    transform:translateY(-5px);

}

/*==================================================
    SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==================================================
    IMAGE OVERLAY
==================================================*/

.image-hover{

    overflow:hidden;
    border-radius:20px;

}

.image-hover img{

    transition:.6s;

}

.image-hover:hover img{

    transform:scale(1.08);

}

/*==================================================
    SMOOTH FADE
==================================================*/

.reveal{

    opacity:0;
    transform:translateY(50px);
    transition:1s;

}

.reveal.active{

    opacity:1;
    transform:translateY(0);

}
/* ==================================================
        INSERT THE COUNTER SECTION HERE 
==================================================*/
.counter-section{

/*    background:#8570B9;*/
    background:#B57EDC;
    padding:90px 0;

}

.counter-box{

    text-align:center;

/*    color:#fff;*/
    color:#8570B9;
    padding:35px 25px;

}

.counter-box h2{

    font-size:60px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

}

.counter-box h2::after{

    content:"+";

}

.counter-box h5{

    color:#fff;

    font-size:22px;

    margin-bottom:15px;

}

.counter-box p{

    color:rgba(255,255,255,.85);

    margin:0;

    font-size:15px;

}

.counter-box{

    border-right:1px solid rgba(255,255,255,.15);

}

.counter-box:last-child{

    border-right:none;

}

@media(max-width:991px){

.counter-box{

    border-right:none;

}

}
/*=========================================
            TRUST SECTION
=========================================*/
.fw-bold {
    font-weight: 600 !important;
}
.trust-section{

    background:#f5f8fb;

    padding:100px 0;

}

.trust-section h2{

    font-weight:700;

}

.trust-card{

    background:#fff;

/*    border:2px solid #1bc47d;*/
    border:2px solid #B57EDC;

    border-radius:28px;

    padding:15px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.trust-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.icon-circle{

    width:80px;

    height:80px;

    border-radius:50%;

/*    background:#e9faf2;*/
    background:#E6E6FA;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:30px;

    font-size:42px;

/*    color:#19c37d;*/
    color:#B57EDC;

}
.trust-card:hover .icon-circle{

    background:#B57EDC;

    color:#E6E6FA;

}

/*.trust-card.active .icon-circle{

/*    background:#19c37d;*/
    /*background:#B57EDC;

    color:#fff;*/

}*/

.trust-card h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.trust-card:hover h3{

/*    color:#19c37d;*/
    color:#B57EDC;

}

.trust-card p{

    color:#586274;

/*    font-size:20px;*/

    line-height:1.8;

}
.left-right-padding{
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
}
/*========================
    Responsive
=========================*/

@media(max-width:992px){

.trust-card{

    margin-bottom:20px;

}

}

@media(max-width:768px){

.trust-section h2{

    font-size:40px;

}

.trust-card h3{

    font-size:24px;

}

.trust-card p{

    font-size:17px;

}

.icon-circle{

    width:70px;

    height:70px;

    font-size:34px;

}

}

@media(max-width:576px){

.trust-section{

    padding:70px 0;

}

.trust-section h2{

    font-size:32px;

}

}
@media (min-width: 1200px) {
    .display-4 {
        font-size: 2.75rem;
    }
}
/*==================================================
    MOBILE
==================================================*/

@media (max-width:991px){

.hero{

    text-align:center;
    min-height: 800px;
    background-position: center top;

}

.hero h1{

    font-size:44px;

}

.hero-image{

    margin-top:60px;

}

.navbar-nav{

    text-align:center;
    padding-top:20px;

}

.nav-link{

    margin:10px 0;

}

.stats .col-lg-3::after{

    display:none;

}

}

/*==================================================
    TABLET
==================================================*/

@media (max-width:768px){
.hero{

        min-height: auto;

        padding: 100px 0 60px;

        background-position: center center;
        background-size: cover;

    }
section{

    padding:70px 0;

}

section h2{

    font-size:34px;

}

.hero h1{

    font-size:36px;

}

.display-3{

    font-size:36px;

}

.card img{

    height:230px;

}

iframe{

    margin-top:40px;
    height:350px;

}

footer{

    text-align:center;

}

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:576px){

.hero{

    padding:70px 0;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

.btn{

    width:100%;
    margin-bottom:15px;

}

.display-4{

    font-size:42px;

}

.card{

    margin-bottom:20px;

}

#contact form{

    padding:25px;

}

}

/*==================================================
    END
==================================================*/


/*=========================================
    PRODUCT HERO
=========================================*/

.product-hero{

    padding:0 0 0 0;

    background:#f8fafb;

}

.product-hero h1{

    color:#212529;

}

.product-hero p{

    color:#666;

    line-height:1.9;

}

.product-image{

    max-width:520px;

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.4s;

}

.product-image:hover{

    transform:scale(1.03);

}
/*==================================================
    PRODUCT HERO
==================================================*/

/*.product-hero{

    padding:90px 0;

    background:#fafafa;

}
*/
.product-hero-image{

    width:100%;
    max-width:520px;

    border-radius:20px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    transition:.35s ease;

}

.product-hero-image:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 55px rgba(0,0,0,.18);

}
.hero-tag{

    display:inline-block;

    padding:8px 18px;

    background:#eaf8ef;

    color:#198754;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-title{

    font-size:52px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

    color:#222;

}

.hero-description{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:30px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:35px;

}

.hero-features div{

    font-weight:500;

    color:#444;

}

.hero-features i{

    color:#198754;

    margin-right:10px;

}

@media (max-width:991px){

    .hero-title{

        font-size:40px;

    }

    .hero-features{

        grid-template-columns:1fr;

    }

}

/*==================================================
    OUR PRODUCTION PROCESS
==================================================*/
.process-step-badge {
  background-color: #B57EDC; /* Replace this hex code with your primary brand color */
  color: #ffffff;
  font-weight: 600;
}

/*==================================================
    RTL (ARABIC)
==================================================*/
[dir="rtl"] body{
    font-family:'Tajawal','Cairo',sans-serif;
}

[dir="rtl"] .navbar-nav{
    padding-right:0;
}

[dir="rtl"] .navbar-nav .nav-item{
    flex-shrink:0;
}

[dir="rtl"] .nav-link{
    white-space:nowrap;
}

[dir="rtl"] .lang-toggle{
    direction:ltr;
}

[dir="rtl"] .ltr-text{
    direction:ltr;
    unicode-bidi:isolate;
    display:inline-block;
}

[dir="rtl"] .navbar > .container{
    flex-direction:row-reverse;
    max-width:100%;
    padding-left:32px;
    padding-right:32px;
}

[dir="rtl"] .hero{
    transform:scaleX(-1);
}

[dir="rtl"] .hero > .container{
    transform:scaleX(-1);
}