*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}

/* جعل الـ Navbar شفاف في البداية */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* تغيير لون الخلفية عند التمرير */
.navbar.scrolled {
    background-color: #f8f4e0 !important; /* اللون عند التمرير */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar .navbar-brand img{
    width: 37px;
    height: 50px;

}

/* تنسيق اللوجو */
.navbar .navbar-brand span {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #ff3c89;
}

/* زر التبديل للـ Navbar */
.navbar-light .navbar-toggler {
    color: #ff3c89;
    border: none;
    outline: none !important;
    box-shadow: none;
    font-size: 25px;
    margin-bottom: -12px;
}

/* تنسيق عناصر القائمة */
.navbar-nav li {
    font-size: 20px !important;
    color: #556075 !important;
    font-weight: 500 !important;
}

/* تأثير اللون عند التحويم والعنصر النشط */
.navbar-nav .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #333 !important;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff3c89 !important;
}

/* تأثير الخط السفلي */
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ff3c89;
    visibility: hidden;
    width: 0 ;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* عند التحويم والعنصر النشط يظهر الخط */
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
    visibility: visible;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    background-color: #00000000 !important;
    color: rgb(51, 51, 51) !important;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    appearance: none;
    border-radius: 6px;
    transition: border-color 0.15sease-in-out, box-shadow 0.15sease-in-out;
}










.hero {
    position: relative;
    text-align: center;
    padding: 150px 20px;
    background-size: contain;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}
.hero .img_bg{
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 110%;
    min-width: 100%;
    filter: brightness(75%);
    z-index: -20;
}
.hero .container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero h1 {
    font-size: 70px;
    font-weight: bold;
}
.strawberries {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.strawberries img {
    position: absolute;
    width: 80px;
}
#videoContainer {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9); /* خلفية شفافة */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#videoContainer.show {
    opacity: 1;
    visibility: visible;
}

/* جعل الفيديو في وسط الشاشة */
.videoPlay video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* زر إغلاق الفيديو */
.close-btn {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 50px;
    background: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

/* تنسيق النصوص في الـ Hero */
.text {
    width: 654px !important;
    position: absolute;
    z-index: 2;
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* تنسيق العنوان */
.text h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Lora', serif;
    text-align: center !important;
}

.text h2 span{
    color: #ff3c89;
}


/* تنسيق الفقرة */
.text p {
    width: 100%;
    font-size: 18px;
    color: #ffffff !important;
    margin: 15px 0 30px;
    line-height: 1.6;
    height: 61px;
    font-weight: 600;
}
.carousel-item p span{
    color: #ff3c89;
}
/* تنسيق الأزرار */
.botttom {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Lora', serif;
}

/* زر عرض القائمة */
.botttom a {
    text-decoration: none;
    background: #ff4e95;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.7s;
    letter-spacing: 1px;
}

.botttom a:hover {
    background: #fff;
    color: #ff4e95;
    border: 2px solid #ff4e95;
}

/* زر تشغيل الفيديو */
.video {
    background: none;
    border: 2px solid #ff3c89;
    color: #ff3c89;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.7s;
    cursor: pointer;
}

.video:hover {
    background: #ff3c89;
    color: #fff;
    border: 2px solid #fff;
}

.hero .imge{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero .imge img {
    width: 80px; /* حجم أصغر للفواكه */
    position: absolute;
    opacity: 0; /* إخفاء الصور عند البداية */
    animation: falling 2s ease-out forwards, floating 3s infinite ease-in-out 2s;
}

/* أنميشن السقوط */
@keyframes falling {
    0% {
        transform: translateY(-150px); /* بداية من خارج الشاشة */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* وصول إلى المكان المحدد */
        opacity: 1;
    }
}
/* أنميشن التأرجح */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.hero .imge .main {
    width: 600px;
    position: absolute;
    right: 90px;
    bottom: -45px;
    transform: scale(0.5); /* تصغير الحجم عند البداية */
    opacity: 0; /* إخفاء العنصر */
    animation: zoomIn 2s ease-out forwards ,floating 3s infinite ease-in-out 2s;
}

/* أنميشن Zoom-In */
@keyframes zoomIn {
    0% {
        transform: scale(0.5); /* بداية صغيرة */
        opacity: 0;
    }
    100% {
        transform: scale(1); /* العودة للحجم الطبيعي */
        opacity: 1;
    }
}


.hero .imge .blackberry1 { top: 10%; right: 15%; }
.hero .imge .blackberry2 { bottom: -26%; right: 18%;}
.hero .imge .blackberry3 { top: 2%; left: 31%; }
.hero .imge .blackberry4 { bottom: 20%; left: 50%; transform: translateX(-50%); }

/* توزيع الـ Blueberry */
.hero .imge .Blueberry1 { top: 15%; right: 15%; }
.hero .imge .Blueberry2 { bottom: 30%; right: 5%; }
.hero .imge .Blueberry3 { top: 20%; left: 14%; }
.hero .imge .Blueberry4 { bottom: -13%; left: 2%; transform: translateX(-50%); }

/* توزيع الـ Strawberry */
.hero .imge .Strawberry1 { top: -15%; right: 13%; }
.hero .imge .Strawberry2 { bottom: 30%; right: 45%; z-index: -1;}
.hero .imge .Strawberry3 { top: 0%; left: 30%; z-index: -1;}
.hero .imge .Strawberry4 { bottom: -15%; left: 15%; transform: translateX(-50%); z-index: -1;}

.hero .shape{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -37px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

/* جعل التصميم متجاوبًا */
@media (max-width: 768px) {
    
    .hero {
        overflow: hidden;
    }
    .text {
        text-align: center;
        max-width: 100%;
        margin-top: 0;
    }
    
    .botttom {
        justify-content: center;
        padding-top: 15px;
    }

    .hero .container {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
    }

    .text h2 {
        font-size: 57px !important;
        color: #fff8fb;
    }
    .text h2 span{
        color: #ff247a;
    }

    .text p {
        font-size: 20px !important;
        color: #f0f0f0e6;
    }

    .close-btn {
        top: 27px;
        right: 38px;
    }

    .hero .imge .main{
        width: 465px;
        right: -249px !important;
        bottom: 231px;
        filter: brightness(70%);
    }
    .hero .imge .main {
        right: -79px;
    }

    .hero .imge .blackberry1 { top: 10%; right: -8%; }
    .hero .imge .blackberry2 { bottom: -26%; right: -3%;}
    .hero .imge .blackberry3 { top: -15%; left: -8%; }
    .hero .imge .blackberry4 { bottom: 20%; left: 50%; transform: translateX(-50%); }
    
    /* توزيع الـ Blueberry */
    .hero .imge .Blueberry1 { top: 15%; right: 15%; }
    .hero .imge .Blueberry2 { bottom: 30%; right: 5%; }
    .hero .imge .Blueberry3 { top: 20%; left: 14%; }
    .hero .imge .Blueberry4 { bottom: -32%; left: -3%; transform: translateX(-50%); }
    
    /* توزيع الـ Strawberry */
    .hero .imge .Strawberry1 { top: -15%; right: 13%; }
    .hero .imge .Strawberry2 { bottom: 30%; right: 45%; z-index: -1;}
    .hero .imge .Strawberry3 { top: 0%; left: 30%; z-index: -1;}
    .hero .imge .Strawberry4 { bottom: -24%; left: -4%; transform: translateX(-50%); z-index: -1;}


    .carousel-indicators {
        position: absolute;
        right: 0;
        bottom: -50px;
        left: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }
    



}




/* flavors style  */

.flavors {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.flavors .roww {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;    
    margin-bottom: 20px;
}

/* تصميم العناوين */
.flavors h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    color: #45362d;
    font-family: 'Lora', serif;
    margin-bottom: 45px;
}

.flavors h2 span {
    color: #ff3c89;
}

/* تصميم العناصر */
.flavors .coll {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* عند ظهور العنصر */
.flavors .coll.show {
    opacity: 1;
    transform: scale(1);
}

/* تصميم الصور */
.flavors img {
    width: 260px;
    height: 250px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.flavors .coll:nth-child(1) img {
    border-bottom-right-radius: 10px;
}
.flavors .coll:nth-child(2) img {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.flavors .coll:nth-child(3) img {
    border-bottom-left-radius: 10px;
}

/* تصميم أسماء النكهات */
.flavors h4 {
    width: 100%;
    background-color: #ff4c93;
    margin-top: 15px;
    padding: 15px;
    color: #ffffff;
    border-radius: 10px;
    font-size: 25px;
    text-align: center;
}

/* تخصيص شكل النصوص */
.flavors .coll:nth-child(1) h4 {
    border-bottom-left-radius: 100%;
    border-top-left-radius: 0%;
    text-align: end;
    width: 80%;
    margin-left: auto;
}
.flavors .coll:nth-child(3) h4 {
    border-bottom-right-radius: 100%;
    border-top-right-radius: 0%;
    text-align: start;
    width: 80%;
    margin-right: auto;
}

/* تصميم الرابط */
.flavors a {
    color: #ff247a;
    background-color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(255, 36, 122, 0.6);
    animation: pulse 1.5s infinite;
}

/* تأثير عند تمرير الماوس */
.flavors a:hover {
    background-color: #d81b64;
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 36, 122, 0.8);
}

/* تأثير النبض */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


/* أيقونات الخلفية */
.flavors .ice-cream-cone-left,
.flavors .ice-cream-cone-right {
    width: 500px;
    height: 400px;
    position: absolute;
    z-index: -1;
}

.flavors .ice-cream-cone-left {
    top: 10%;
    left: -280px;
}

.flavors .ice-cream-cone-right {
    bottom: -10%;
    right: -280px;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
    .flavors h2 {
        font-size: 45px;
    }
    .flavors img {
        width: 220px;
        height: 210px;
    }
    .flavors .ice-cream-cone-left {
        left: -200px;
    }
    .flavors .ice-cream-cone-right {
        right: -200px;
    }
}

@media (max-width: 768px) {
    .flavors h2 {
        font-size: 40px;
    }
    .flavors .roww {
        flex-direction: column;
        gap: 10px;
    }
    .flavors img {
        width: 200px;
        height: 190px;
    }
    .flavors .coll h4 {
        border-radius: 25px !important;
        border-top-left-radius: 0% !important;
        border-top-right-radius: 0% !important;
        text-align: center !important;
        width: 100% !important;
    }
    .flavors .coll img {
        border-radius: 50% !important;
        border-bottom-right-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
    }
    .navbar-brand {
        padding-top: .3125rem;
        padding-bottom: .3125rem;
        margin-right: 1rem;
        font-size: 1.25rem;
        white-space: nowrap;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    .navbar .navbar-brand span {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.4px;
        color: #ff3c89;
        margin-bottom: -10px;
    }
}

@media (max-width: 480px) {
    .flavors h2 {
        font-size: 35px;
    }
    .flavors img {
        width: 180px;
        height: 170px;
    }
    .flavors .ice-cream-cone-left {
    top: 10%;
    left: -280px;
    width: 221px !important;
    height: 247px !important;
    left: -113px !important;
}
    .flavors .ice-cream-cone-right {
    bottom: -6%;
    right: -77px !important;
    width: 197px !important;
    height: 170px !important;
}
}







/* product_ice_cream style  */

.product_ice_cream{
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.product_ice_cream h2{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 40px;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    color: #2c0012;
}
.product_ice_cream p{
    text-align: center;
    margin: 20px 0;
    width: 70%;
}

.product_ice_cream .swiper {
    width: 80%;
    height: 400px;
}
.product_ice_cream .swiper-slide .imge_product_main {
    width: 300px !important;
    height: 325px !important;
    object-fit: cover;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.product_ice_cream .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.shape_product_ice_cream{
    position: absolute;
    bottom: 33px;
    left: 0;
    width: 340% !important;
    height: 65px !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #ff3c89;
}

@media (max-width: 768px) {
    .product_ice_cream h2 {
        line-height: 1.4;
    }

    .product_ice_cream p {
        width: 100%;
        font-size: 16px !important;
    }

}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: -4px !important;
}






/* carts style  */
.carts{
    padding: 50px 20px;
    position: relative;
    width: 100%;
    overflow: hidden;
    
}
.carts .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 70px;
}
.carts h2{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 40px;
    align-items: center;
    box-sizing: border-box;
}
.carts h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 20%;
    height: 3px;
    background: #d81b64;
    left: 0;
    right: 0;
    top: 100px;
    margin: auto;
}
.carts p{
    text-align: center;
    margin: 20px 0;
    width: 70%;
}

.carts .roww {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.carts .cart-ice img{
    width: 250px;
    height: 290px;
}
.carts .cart:hover {
    transform: translateY(-10px);
}
.carts .cart img {
    width: 100%;
    border-radius: 10px;
}
.carts .book-btn {
    background: #ff4081;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .carts .roww {
        flex-direction: column;
        align-items: center;
    }
    .carts p {
        width: 100%;
        font-size: 16px !important;
    }

}

.cart-ice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 0;
    width: 600px;
    margin: auto;
}

/* Swiper Slider */
.cart-slider {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text Content */
.cart-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cart-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: -5px;
}
.cart-text-important {
    width: 98%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 0;
}
.cart-text-important-div {
    width: 98%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.cart-text p {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin: 5px 0;
}

/* Counter Animation */
.counter {
    font-weight: bold;
    color: #ff3366;
    font-size: 22px;
}

/* Book Now Button */
.book-btn {
    background: #ff3366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.7s;
}

.book-btn:hover {
    background: #ffffff;
    color: #ff3366;
    outline:2px solid #76002d !important;
}

.carts_shape1{
    position: absolute;
    top: 20%;
    left: -140px;
    transform: rotate(90deg);
    z-index: -1;
}

.carts_shape2{
    position: absolute;
    top: 40%;
    right: -160px;
    transform: rotate(-90deg);
    z-index: -1;
}
.carts_shape3{
    width: 300px;
    position: absolute;
    bottom: -84px;
    left: -107px;
    transform: rotate(41deg);
    z-index: -1;
}
.carts_shape4{
    width: 300px;
    position: absolute;
    bottom: -84px;
    left: -107px;
    transform: rotate(41deg);
    z-index: -3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-ice {
        flex-direction: column;
        text-align: center;
        width: 280px;
        gap: 20px;
    }

    .cart-slider, .cart-text {
        width: 100%;
    }
}







.about{
    padding: 100px 0 120px;
    position: relative;
    width: 100%;
    background-color: #e8d2b9;
    overflow: hidden;
}
.shape-top{
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
}
.shape-bottom{
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100%;
    transform: rotate(-180deg);
}
.shape_side{
    position: absolute;
    top: 40%;
    left: -180px;
    transform: rotate(90deg);
}
.shape_side2{
    position: absolute;
    top: 45%;
    left: -180px;
    transform: rotate(90deg);
}
.shape_side3 {
    width: 34%;
    position: absolute;
    bottom: -30%;
    right: -20%;
    transform: rotate(-23deg);
}
.about .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about h2{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 40px;
    align-items: center;
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box;
}
.about h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 20%;
    height: 3px;
    background: #d81b64;
    left: 0;
    right: 0;
    top: 150px;
    margin: auto;
}
.about p{
    text-align: center;
    font-size: 22px;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
    width: 70%;
}

/* General Styles */
.about .roww {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.about .colll {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.about .img_about {
    position: relative; */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: auto;;
}

/* اللوجو في المنتصف */
.about .img_about .imge-about2 {
    width: 60% !important;
    max-width: 200px;
}

/* أنيميشن الدوران */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* تنسيق النصوص */
.about .img_text h4 {
    font-size: 30px;
    font-weight: 600;
    color: #6a0023;
    margin-bottom: 10px;
}

.about .img_text p,
.about .img_text ul {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    text-align: left;
    width: 100%;
}

.about .img_text ul {
    padding-left: 20px;
}

.about .img_text ul li {
    margin-bottom: 10px;
}

/* تحسين التجاوب */
@media (max-width: 768px) {
    .about .roww {
        flex-direction: column;
        text-align: center;
        gap: 45px !important;
    }

    .about .colll {
        max-width: 100%;
    }

    .about .imge-about1 {
        max-width: 300px;
    }

    .about .imge-about2 {
        max-width: 30%;
    }
    .shape_side3 {
        width: 40%;
        position: absolute;
        bottom: 0;
        right: -10%;
        transform: rotate(-23deg);
    }
    .about .img_text ul li {
        text-align: center;
        font-size: 15px !important;
    }


    .contact-section p {
        font-size: 15px !important;
        margin-top: 10px;
    }
}










.contact-section{
    padding: 20px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.contact-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-section h2{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 40px;
    align-items: center;
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box;
}
.contact-section h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 40Px;
    height: 3px;
    background: #d81b64;
    left: 0;
    right: 0;
    top: 70px;
    margin: auto;
}
.contact-section p{
    font-size: 18px;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    font-size: 24px;
    color: #ff4d79;
    transition: 0.3s;
}

.social-link:hover {
    color: #c90045;
}







/* تصميم الأيقونات العائمة */
.floating-social-icons {
    position: fixed;
    bottom: 20px; /* أسفل الصفحة */
    right: 20px; /* يمين الصفحة */
    display: flex;
    flex-direction: column;
    gap: 10px; /* مسافة بين الأيقونات */
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

/* تنسيق الروابط */
.floating-social-icons .social-link {
    font-size: 24px;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}
.floating-social-icons .social-link span{
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translate(-50%, -50%);
    width: 122px;
    background: #ff4081 !important;
    padding: 5px 15px;
    text-align: center;
    border-radius: 19px;
    font-size: 18px;
}

/* تأثير النبض */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}

.floating-social-icons .social-link:hover {
    transform: scale(1.1);
}

/* أيقونة Instagram */
.floating-social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    animation: pulse 1.5s infinite;
}

/* أيقونة WhatsApp */
.floating-social-icons .whatsapp {
    background: #25D366;
    animation: pulse 1.5s infinite;
}

/* إخفاء الأيقونات عند الوصول إلى Contact Us */
.hidden {
    opacity: 0;
    pointer-events: none;
}



.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons .social-link {
    font-size: 24px;
    color: #333;
    transition: 0.3s;
}

.social-icons .social-link:hover {
    color: #000;
}
