
    /* CSS للقسم الرئيسي */
    html, body {
  max-width: 100%;
    /* overflow-x: hidden; */
}

    .about-one, .events-one {
    overflow: hidden; /* يمنع أي عنصر داخل هذه الأقسام من توسيع الشاشة عرضاً */
    width: 100%;
    position: relative;
}
    .events-one {
        
        /* background-color: #146c43; */
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
        font-family: var(--oxpins-font);
        color: var(--oxpins-gray);
        font-size: 15px;
        line-height: 30px;
        font-weight: 500;
        direction: rtl;
        box-sizing: border-box;
        position: relative;
        display: block;
        /* background-color: var(--oxpins-extra); */
        padding: 120px 0;
        z-index: 1;

        width: 100%;
        height: 100%;
    }

    /* Container */
  .events-one .container {
    width: 100%;
    max-width: 100px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


    /* Section Title */
    .section-title {
        margin-bottom: 60px;
        text-align: center;
    }

    .section-title__tagline {
        font-size: 14px;
        color: var(--oxpins-base);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
        display: block;
        font-weight: 600;
    }

    .section-title__title {
        font-size: 36px;
        color: var(--oxpins-black);
        margin: 0;
        font-weight: 700;
        line-height: 1.3;
    }

    /* Grid System - تم التعديل */
 .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
}

    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .col-xl-6, .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mb-2 {
        margin-bottom: 30px !important;
    }

    /* للعنصر الثالث - يجعله يأخذ عرض كامل */
    .col-full-width {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .col-full-width .feature-one__single {
        width: 40%;
        height: 80px;
        margin: 0 auto;
    }

    /* Animation Classes */
    .wow {
        visibility: visible;
    }

    .slideInLeft {
        animation-name: slideInLeft;
    }

    .slideInRight {
        animation-name: slideInRight;
    }

    .animated {
        animation-duration: 2500ms;
        animation-fill-mode: both;
    }

    /* Feature Cards */
    .feature-one__single {
        /* background: var(--oxpins-white); */
        /* border-radius: var(--oxpins-bdr-radius); */
        padding: 30px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
        height: 100%;
        border: 1px solid var(--oxpins-bdr-color);
        

    }



    .feature-one__single-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: 0;
    }

    .feature-one__top {
        position: relative;
        z-index: 1;
    }

    .feature-one__top-inner {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .feature-one__top-icon {
        width: 70px;
        height: 70px;
background-color: #146c43;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--oxpins-white);
        font-size: 30px;
        transition: all 0.3s ease;
    }

    .feature-one__single:hover .feature-one__top-icon {
        transform: scale(1.1);
        background: #146c43; /* أخضر غامق عند hover */
    }

    .feature-one__top-title-box {
        flex: 1;
    }

    .feature-one__top-title {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

    .feature-one__top-title a {
        color: var(--oxpins-black);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
    }

    .feature-one__top-title a:hover {
        color: var(--oxpins-base);
    }

    .feature-one__single--two .feature-one__top-title a:hover {
        opacity: 0.9;
    }

    .fa {
        color: white;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
    }

    .fa-gift:before { content: "\f06b"; }
    .fa-sms:before { content: "\f7cd"; }
    .fa-university:before { content: "\f19c"; }
    .fa-globe:before { content: "\f0ac"; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .col-lg-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .col-full-width .feature-one__single {
            width: 100%;
        }
        
        .section-title__title {
            font-size: 30px;
        }
    }
@media (max-width: 768px) {

    .about-one__img-border,
    .about-one__bg-box {
        right: 0;
        left: 0;
        margin: auto;
        width: 90%;
        max-width: 320px;
    }

}

    @media (max-width: 768px) {
        .col-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .events-one {
            padding: 80px 0;
        }
        
        .section-title__title {
            font-size: 26px;
        }
        
        .feature-one__top-inner {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .feature-one__top-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
        
        .col-full-width .feature-one__single {
            width: 90%;
        }
    }

    @media (max-width: 576px) {
        .section-title__title {
            font-size: 22px;
        }
        
        .feature-one__single {
            padding: 20px;
        }
        
        .feature-one__top-title {
            font-size: 18px;
        }
        
        .col-full-width .feature-one__single {
            width: 100%;
        }
    }





    /* girrl */


    
/* عند الشاشات ≤ 995px */
@media (max-width: 995px) {

    /* إخفاء عمود الصورة بالكامل */
    .about-one .col-lg-6:first-child {
        display: none !important;
    }

    /* خلي النص يأخذ العرض كامل */
    .about-one .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    /* تحسين محاذاة العناوين */
    .about-one .text-end {
        text-align: center !important;
    }

    .about-one .border-bottom {
        margin-left: auto;
        margin-right: auto;
    }
}
/* توقيف الانميشن للتلفون */
@media (max-width: 995px) {

    .about-one *,
    .events-one * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
/* ------------------------ */



 :root {
    --green: #198754;
    --dark-green: #146c43;
    --light-green: #20c997;
    --primary: #198754; /* إضافة المتغير المطلوب */
}

.about-one {
    font-family: "Cairo", sans-serif;
    direction: rtl;
}

/* الشكل فوق الصورة كما طلبت */
.about-one__img-border {
    position: absolute;
    top: -30px;
    right: -30px;
    height: 600px;
    width: 430px;
    border: 6px solid var(--primary);
    border-bottom-right-radius: 300px;
    border-bottom-left-radius: 300px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* الأشكال المتحركة بسيطة */
.heart {
    position: absolute;
    z-index: 10;
    animation: float 3s infinite ease-in-out;
}

.heart-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0.5s;
}

.heart-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--light-green);
    border-radius: 50%;
    z-index: 10;
    animation: float-dot 4s infinite ease-in-out;
}


.geometric-shape.circle {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, var(--light-green), transparent);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 3s infinite ease-in-out;
}


/* الحالة الافتراضية: مخفي */
.about-one__image-animate,
.about-one__bg-box,
.about-one .col-lg-6:last-child {
    opacity: 0;
    transition: all 1s ease-out;
}

/* حركات البداية المختلفة */
.about-one__image-animate {
    transform: translateX(-80px); /* الصورة من اليسار */
}

.about-one__bg-box {
    transform: scale(0.9); /* يكبر تدريجيًا */
}

.about-one .col-lg-6:last-child {
    transform: translateX(80px); /* النص من اليمين */
}

/* عند ظهور القسم */
.about-one.visible .about-one__image-animate {
    opacity: 1;
    transform: translateX(0);
}

.about-one.visible .about-one__bg-box {
    opacity: 1;
    transform: scale(1);
}

.about-one.visible .col-lg-6:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* تطبيق الحركة على الصورة */
.about-one__image-animate {
    animation: slideFromLeft 1.2s ease-out forwards;
}

/* Responsive مع Bootstrap */
@media (max-width: 1200px) {
    .about-one__img-border {
        height: 550px;
        width: 380px;
        top: -25px;
        right: -25px;
    }
      .about-one__bg-box {
        width: 100%;
        height: 100%;
        bottom: 8%;
        right: 4%;
    }
    
}

@media (max-width: 992px) {
    .about-one__img-border {
        height: 500px;
        width: 350px;
        top: 20px;
        right: 20px;
    }
    .about-one__bg-box {
        width: 100%;
        height: 100%;
        bottom: 6%;
        right: 3%;
    }
    .heart, .dot, .geometric-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-one__img-border {
        height: 450px;
        width: 320px;
        top: 15px;
        right: 15px;
        border-width: 5px;
    }
     .about-one__bg-box {
        width: 100%;
        height: 100%;
        bottom: 5%;
        right: 2%;
    }
}

@media (max-width: 576px) {
    .about-one__img-border {
        height: 400px;
        width: 280px;
        top: 10px;
        right: 10px;
        border-width: 4px;
    }
     .about-one__bg-box {
        width: 100%;
        height: 100%;
        bottom: 3%;
        right: 1%;
    }
}



.about-one__img-border  {
    position: absolute;
    top: -30px;
    right: -30px;
    height: 600px;
    width: 330px;
    border-radius: 10px;
    border: 10px solid var(--primary);
    border-bottom-right-radius: 300px;
    border-bottom-left-radius: 300px;
    z-index: 4;
    opacity: 0.3;
}
.about-one .col-lg-6:first-child {
    z-index: 5;
    padding-right: 30px;
}

/* المربع الخلفي تحت الصورة */
.about-one__bg-box {
    position: absolute;
    bottom: -70px;          /* يطلع من تحت الصورة */
    right: -40px;
     width: 100%;        /* أكبر من الصورة بحوالي 10% */
    height: 100%;    
    background-image: url("images/shapes/events-one-shape-1.png");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 1;             /* تحت الصورة */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0.4;
    /* background-color: rgba(218, 255, 241, 0.589); */
    /* margin-right: 30px; */
}

/* @media (max-width: 992px) {
    .about-one {
        text-align: center;
    }

    .about-one .row {
        flex-direction: column; 
    }

    .about-one__img-border {
     opacity: 0;
    }

    .about-one__bg-box {
        width: 900;
        height: 120%;
        bottom: -10%;
        right: -10%;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-one__image-animate {
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
    }

    .heart, .dot, .geometric-shape {
        display: none;
    }} */

    /* الإعدادات العامة للصورة والمربع */
.about-one__img-border {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 300px;
    border-bottom-right-radius: 300px;
    z-index: 4;
    opacity: 0.3;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 600px;
    width: 330px;
    border: 10px solid var(--primary);
}

.about-one__bg-box {
    position: absolute;
    bottom: -70px;
    right: -40px;
    width: 100%;
    height: 100%;
    background-image: url("images/shapes/events-one-shape-1.png");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0.4;
    background-color: rgba(218, 255, 241, 0.199);
}











