* {
    font-family: "Tajawal", sans-serif;
    color: #fff;
}

header {
    background: #252525;
}

.navbar {
    border-radius: 0px 0px 20px 20px;
}
.navbar-brand img {
    height: 55px;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;

    color: #7d0000 !important;
}

.nav-link:hover {
    color: #252525 !important;
}

.navbar {
    background: rgba(204, 204, 204, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ====== Hero Section ====== */
/* الحاوية العامة */
.hero-section {
    padding: 40px 20px;
    text-align: center;
}

/* حاوية الصور */
.hero-images {
    position: relative;
    width: 100%;
    /* max-width: 900px; */
    margin: auto;
}

/* الصورة الأساسية */
.hero-image {
    width: 100%;
    display: block;
    border-radius: 5px;
}

/* الصورة الثانية فوق الأولى */
.top-image {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 70%; /* حجم الصورة الثانية */
    transform: translate(-50%, -60%);
    z-index: 2;
    mix-blend-mode: lighten; /* أو multiply حسب النتيجة */
}

/* الصورة الأولى بالخلف */
.bottom-image {
    width: auto; /* الحجم الطبيعي */
    height: auto; /* بدون تمدد */
    display: block;
    max-width: 100%; /* يمنع خروجها خارج الشاشة */
    margin: 15px auto 0; /* تمركز + المسافة */
}

/* النص */
.hero-description {
    margin-top: 120px;
    font-size: 18px;
    color: #d5d5d5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
    .top-image {
        width: 75%;
        transform: translate(-50%, -55%);
    }
}

@media (max-width: 768px) {
    .top-image {
        width: 80%;
        transform: translate(-50%, -50%);
    }
    .hero-description {
        font-size: 16px;
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .top-image {
        width: 90%;
        transform: translate(-50%, -45%);
    }
    .hero-description {
        font-size: 15px;
    }
}

.why-choose-us {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    background-color: rgba(204, 204, 204, 1);
}

.section-titlee {
    text-align: center;
    margin-bottom: 60px;
    color: #252525;
    font-weight: 900;
    position: relative;
}

.section-titlee span {
    color: rgba(197, 182, 159, 1);
}

.section-titlee:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: rgba(197, 182, 159, 1);
    margin: 15px auto;
    border-radius: 2px;
}

.feature-card {
    background: rgba(204, 204, 204, 1);
    border-radius: 5px;
    border: 3px solid rgba(210, 92, 88, 1);
    padding: 30px 25px;
    margin-bottom: 30px;

    height: 100%;
    /* border-top: 5px solid var(--secondary-color); */
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(210, 92, 88, 0.241);
    transition: all 0.3s ease;
}

.feature-number {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(210, 92, 88, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.feature-icon {
    font-size: 50px;
    color: rgba(210, 92, 88, 1);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #252525;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* تخصيص للأجهزة المحمولة */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 40px;
        font-size: 28px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 20px;
    }
}

/* تخصيص للأجهزة اللوحية */
@media (max-width: 992px) and (min-width: 769px) {
    .feature-card {
        padding: 25px 20px;
    }
}

/*  end why-choose-us */

.custom-hero-section {
    position: relative;
    padding: 80px 0;
}

.custom-hero-bg {
    background: url("../imge/bg3.png") center/cover no-repeat;
    position: absolute;
    inset: 0;
    z-index: -1;

    /* تكبير الخلفية قليلاً */
    background-size: 110%; /* يمكنك رفعها إلى 120% لو عايز تكبير أكبر */
}

/* طبقة سوداء شفافة فوق الخلفية */
.custom-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); /* درجة الشفافية (0.35 مناسب) */
    z-index: 1;
}

/* Images Wrapper */
.custom-images-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Images Style */
.custom-image {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    /* تكبير الخلفية لتصبح أكبر من الصور */
    .custom-hero-bg {
        background-size: 180%; /* يمكنك تعديل الرقم حسب شكل الخلفية */
        background-position: top center;
    }

    /* ضبط الصور */
    .custom-images-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .custom-image {
        width: 45%;
        max-width: 250px; /* لتقليل حجم الصور في الموبايل */
    }

    /* إضافة padding لتوسيع المساحة */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 80px;
        position: relative;
    }

    /* نفس طبقة الشفافية فوق الخلفية */
    .custom-hero-bg::before {
        background: rgba(
            0,
            0,
            0,
            0.85
        ); /* زيادة بسيطة للشفافية لتظهر الخلفية أوضح */
    }
}

.mission-vision-section {
    background: linear-gradient(180deg, #1e1e1e, #3a3a3a);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c6b79d;
}

.section-text {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 450px;
    margin: auto;
}

img {
    border-radius: 10px;
    max-height: 350px;
    object-fit: cover;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-text {
        font-size: 1rem;
    }

    img {
        max-height: 260px;
    }
}
/* Vision Section Style */
.vision-box {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.vision-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.vision-text {
    position: absolute;
    bottom: 25px;
    right: 25px;
    text-align: right;
}

.vision-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e8d8b9;
    margin-bottom: 10px;
}

.vision-desc {
    color: #fff;
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-title {
        font-size: 1.6rem;
    }

    .vision-text {
        bottom: 15px;
        right: 15px;
    }
}

.testimonials-section {
    position: relative;
    background-image: url("../imge/bg4.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}

.testimonials-section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.6);
    top: 0;
    left: 0;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.testimonials-title span {
    color: #e6caa8;
}

.testimonials-desc {
    max-width: 750px;
    margin: auto;
    color: #ddd;
    line-height: 1.9;
    font-size: 1.1rem;
}

.testimonial-item {
    padding: 20px;
}

.stars {
    color: gold;
    font-size: 1.4rem;
}

.client-name {
    font-size: 1.4rem;
    color: #fff;
}

.client-img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #fff;
}

/* Arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-desc {
        font-size: 1rem;
    }

    .client-img {
        width: 110px;
        height: 110px;
    }
}

/* ===========================
   Section background
=========================== */
.gym-section {
    background: #d3d3d3;
    padding: 50px 0;
}

/* ===========================
   Custom container with angled edges
=========================== */
.container-custom {
    background: #252525;
    color: #e5d5b0;
    border-radius: 4px;
    transform: skew(-5deg);
}

.container-custom > * {
    transform: skew(3deg);
}

/* ===========================
   Illustration
=========================== */
.gym-illustration {
    max-width: 230px;
}

/* ===========================
   Logo text
=========================== */
.logo-text {
    font-size: 45px;
    font-weight: 900;
    color: #e5d5b0;
}

/* ===========================
   Title & Subtitle
=========================== */
.title {
    font-size: 28px;
    color: #e5d5b0;
}

.subtitle {
    font-size: 16px;
    color: #cfcfcf;
}

/* ===========================
   Input styling (final version)
=========================== */
.custom-input.form-control {
    background: transparent !important;
    border: 1px solid #c6b79d !important;
    color: #c6b79d !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
}

.custom-input {
    background: transparent;
    border: 1px solid #c6b79d; /* اللون الذهبي */
    color: #c6b79d;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 0; /* زوايا حادة */
    outline: none;
}

.custom-input::placeholder {
    color: #c6b79d !important;
    opacity: 0.8;
}

.custom-input:focus {
    border-color: #e5d5b0;
    box-shadow: none;
}

/* ===========================
   Submit button
=========================== */
.submit-btn {
    background: transparent;
    border: 1px solid #c6b79d;
    color: #c6b79d;
    font-weight: bold;
    border-radius: 0;
    padding: 8px 20px;
}

.submit-btn:hover {
    background: #c6b79d;
    color: #000;
}

/* ===========================
   Responsive adjustments
=========================== */
@media (max-width: 768px) {
    .title {
        font-size: 22px;
    }
    .logo-text {
        font-size: 35px;
    }
    .container-custom {
        width: 80%;
    }
}

.footer-section {
    background-image: url("../imge/Shape.png");
    background-repeat: no-repeat;
    background-size: 100% auto; /* أفضل دقة بدون تمدد */
    background-position: top center; /* محاذاة مثل التصميم */
    padding-top: 120px; /* مساحة لإظهار الصورة أعلى البوكس */
    position: relative;
    background-color: #333;
}

/* Black box */
.footer-box {
    background: #252525;
    border: 2px solid #c8b995;
    border-radius: 15px;
    margin-top: 50px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 800;
    color: #d7c6a3;
}

/* Email input */
.footer-input {
    background: transparent !important;
    border: 1px solid #c8b995 !important;
    color: #c8b995 !important;
    border-radius: 6px !important;
}

.footer-input::placeholder {
    color: #c8b995 !important;
}

/* Button */
.footer-btn {
    background: transparent !important;
    border: 1px solid #c8b995 !important;
    color: #c8b995 !important;
    border-radius: 6px !important;
}

.footer-btn:hover {
    background: #c8b995 !important;
    color: #000 !important;
}

/* Footer links */
.footer-links li {
    list-style: none;
}

.footer-links a {
    color: #d15452;
    font-weight: bold;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d7c6a3;
}

/* Social Icons */
.social-icons li {
    list-style: none;
    color: #d15452;
}
.social-icons i {
    color: #d15452 !important;
    font-size: 22px !important;
}

.social-icons li:hover {
    color: #ff6c6a;
}

.footer-line {
    border-color: #c2c2c2;
}

/* Middle Logo text */
.footer-middle-logo {
    font-size: 20px;
    font-weight: 800;
    color: #d7c6a3;
}
/* وضع الروابط + الأيقونات جنب بعض في الشاشات الكبيرة */
.footer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* في الشاشة الصغيرة تصبح فوق بعض */
@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column; /* يصبحون فوق بعض */
        gap: 20px;
    }

    .footer-section {
        background-image: url("../imge/Shape.png");
        background-repeat: no-repeat;
        background-size: 150% auto; /* أفضل دقة بدون تمدد */
        background-position: top center; /* محاذاة مثل التصميم */
        padding-top: 120px; /* مساحة لإظهار الصورة أعلى البوكس */
        position: relative;
        background-color: #333;
    }

    /* Black box */
    .footer-box {
        background: #252525;
        border: 2px solid #c8b995;
        border-radius: 15px;
        margin-top: 15px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo {
        font-size: 30px;
    }
}

.pricing-section {
    background: #252525;
    color: #fff;
    padding: 60px 0;
}

/* Section Titles */
.pricing-title {
    font-size: 28px;
}

.pricing-subtitle {
    color: #cfcfcf;
}

/* Main Cards */
.price-card {
    background: #252525;
    padding-bottom: 20px;
    text-align: center;
    border: 1px solid #444;
}

.price-img {
    height: 170px;
    object-fit: cover;
}

.price-header {
    margin-top: 15px;
    font-size: 18px;
}

.price-tag {
    font-size: 26px;
    margin: 10px 0;
    font-weight: bold;
}

/* List */
.price-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.price-list li {
    margin: 6px 0;
    font-size: 14px;
}

/* Button */
.price-btn {
    background: transparent;
    border: 1px solid #ff5f5f;
    color: #ff5f5f;
    padding: 6px 25px;
    border-radius: 0;
}

.price-btn:hover {
    background: #ff5f5f;
    color: #000;
}

/* Special Red Card */
.special-card {
    background: #c95c54;
    padding: 25px 20px;
    border: none;
}

.price-btn-dark {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 25px;
}

.price-btn-dark:hover {
    background: #fff;
    color: #000 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .price-img {
        height: 150px;
    }
}
.pricing-card {
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
}

.price {
    font-size: 28px;
    font-weight: bold;
}

.subscribe-btn {
    background: #e5d0c4;
    border: none;
    padding: 8px 25px;
    color: #000;
    font-weight: bold;
    border-radius: 3px;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background: #cbb6a8;
}

/* شريط التفاصيل */
.details-header {
    padding: 10px;
    background: #252525;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #444;
}

.details-header:hover {
    background: #252525;
}

/* منطقة التفاصيل */
.details-body {
    background: #d86663;
    padding: 15px;
    border-radius: 3px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    color: #fff;
    margin-bottom: 6px;
}

.details-toggle i {
    transition: 0.3s;
}

/* تدوير السهم عند الفتح */
.details-toggle .collapsed i {
    transform: rotate(180deg);
}

.philosophy-section {
    background: #252525;
    border-top: 1px solid #8c8575;
    border-bottom: 1px solid #8c8575;
    color: #d9cbb0;
}

.section-title {
    color: #e6d7ba;
    font-size: 24px;
    font-weight: 600;
}

.philosophy-icon {
    font-size: 55px;
    color: #d7c7a7;
}

.item-title {
    color: #e6d7ba;
    font-weight: bold;
    font-size: 18px;
}

.item-text {
    color: #cfc7bb;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.7;
}

.payment-section {
    display: flex;
    background: #252525;
    padding: 40px 20px;
    color: #fff;
    direction: rtl;
    align-items: center;
    gap: 40px;
}

.left {
    flex: 1;
}

.mockup {
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.right {
    flex: 1;
    color: #fff;
}

.brand-box {
    border: 2px solid #c9a36a; /* نفس اللون الذهبي تقريباً */
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.title {
    font-size: 32px;
    margin: 5px 0;
}

.desc {
    margin-top: 15px;
    opacity: 0.8;
    font-size: 16px;
}

.stores {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.store-icon {
    height: 55px;
    cursor: pointer;
}
.stores {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* الأيقونات */
.store-icon {
    height: 55px;
    cursor: pointer;
}

/* --- موبايل: ترتيب الأيقونات تحت بعض --- */
@media (max-width: 768px) {
    .stores {
        flex-direction: column;
        align-items: flex-start; /* أو center لو تحب */
        gap: 18px;
        width: 100%;
        margin-top: 20px;
    }

    .store-icon {
        height: 50px;
        width: auto;
    }
}

.about-section {
    padding: 40px 0;
    background: #252525;
}

.about-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 45%;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

/* صورة لاعب كمال الأجسام */
.muscle-img {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 850px;
    max-width: 40%;
    z-index: 9;
}

/* النقاط أسفل السلايدر */
.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #777;
    border-radius: 50%;
    margin: 0 5px;
}

.dots .active {
    background: #d9534f;
}

/* ------- Responsive ------- */

/* ===========================
   الشاشات الكبيرة (أكبر من 1200px)
=========================== */
@media (min-width: 1200px) {
    .muscle-img {
        width: 480px;
        left: -40px;
        bottom: -20px;
    }

    .about-text {
        width: 50%;
        font-size: 20px;
    }
}

/* ===========================
   اللابتوبات (992px - 1199px)
=========================== */
@media (max-width: 1199px) {
    .muscle-img {
        width: 380px;
        left: -20px;
        bottom: -10px;
    }

    .about-text {
        width: 55%;
        font-size: 18px;
    }
}

/* ===========================
   التابلت الأفقي (768px - 991px)
=========================== */
@media (max-width: 992px) {
    .muscle-img {
        width: 260px;
        bottom: -5px;
    }

    .about-text {
        width: 60%;
        font-size: 17px;
    }
}

/* ===========================
   التابلت العمودي (768px)
=========================== */
@media (max-width: 768px) {
    /* إخفاء صورة اللاعب */
    .muscle-img {
        display: none;
    }

    /* النص فوق الصورة */
    .about-text {
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.45);
        text-align: center;
        font-size: 17px;
    }
}

/* ===========================
   الموبايل (480px وأقل)
=========================== */
@media (max-width: 480px) {
    .about-text {
        font-size: 16px;
        padding: 18px;
        line-height: 1.8;
    }
}

.quote-section {
    background: #252525;
    color: #e5d5b0;
}

.images-box {
    min-height: 380px;
}

.img-top {
    width: 60%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.img-bottom {
    width: 60%;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 90px;
}

/* Text Styling */
.quote-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.8;
    color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
    .quote-text {
        font-size: 26px;
        text-align: center;
        margin-top: 30px;
    }

    .img-top {
        width: 95%;
    }

    .img-bottom {
        width: 85%;
        left: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .images-box {
        display: none; /* إخفاء الصور في الموبايل */
    }

    .quote-text {
        font-size: 22px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        text-align: center;
    }
}
.why-us-section {
    background: #252525;
    color: #e5d5b0;
    padding: 80px 0;
}

/* Title */
.why-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.6;
}

/* Feature items */
.feature-item {
    color: #ffffff;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    /* color: #e5d5b0; */
}

.feature-text {
    margin: 0;
    color: #c8c8c8;
}

/* Icons */
.feature-icon {
    font-size: 32px;
    color: #e5d5b0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-title {
        font-size: 30px;
        text-align: center;
        margin-top: 40px;
    }

    .features-box {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 26px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-text {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 28px;
    }
}

.features-section {
    background: #252525;
    color: white;
}

.feature-box {
    background: #222;
    padding-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-title {
    font-size: 15px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-img {
        height: 160px;
    }
    .feature-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-img {
        height: 140px;
    }
    .feature-title {
        font-size: 13px;
    }
}

main.aboutus {
    background-color: #252525;
    background-image: url("../imge/bg5.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh; /* يجعل الخلفية تغطي الصفحة */
}
.about {
    padding: 40px 0;
}
