/* ------------------------------------

   RESET & BASE

------------------------------------ */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html, body {

    font-family: 'Open Sans', sans-serif;

    background: #fff;

    color: #444;

    line-height: 1.7;

}



img {

    max-width: 100%;

    display: block;

}



a {

    text-decoration: none;

    transition: .3s ease;

}



/* ------------------------------------

   GLOBAL SPACING SYSTEM

------------------------------------ */

section {

    padding: 40px 0;

}

@media (max-width: 768px) {

    section {

        padding: 40px 0;

    }

}



/* ------------------------------------

   BUTTONS

------------------------------------ */

.btn {

    padding: 16px 32px;

    font-size: 18px;

    border: none;

    border-radius: 6px;

    color: #fff !important;

    position: relative;

    overflow: hidden;

    display: inline-block;

    transform: skew(-8deg);

    font-weight: 600;

}



.btn .skew_14 {

    transform: skew(8deg);

    display: block;

}



.btn-default {

    background: linear-gradient(135deg, #6871f4, #265db9);

}



.btn-default::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #000;

    opacity: 0;

    transition: .3s ease;

}

.btn-default:hover::before {

    opacity: .25;

}



.btn-primary {

    background: #364167;

}



.btn-primary::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #000;

    opacity: 0;

    transition: .3s ease;

}

.btn-primary:hover::before {

    opacity: .25;

}



/* ------------------------------------

   HEADER

------------------------------------ */

.s-header {

    position: absolute;

    top: 25px;

    width: 100%;

    z-index: 1000;

}



.header-logo {

    position: absolute;

    left: 0px;

    top: 50%;

    transform: translateY(-50%);

}

/* --- إصلاح اللوجو على الموبايل --- */
@media (max-width: 768px) {
  .header-logo img {
    max-width: 130px !important; /* حجم أصغر */
  }

  .header-logo {
    left: 10px; /* بدل 0px */
    top: 20px;
    transform: translateY(0); /* نشيل السحب لتحت */
  }
}

/* ------------------------------------

   BANNER

------------------------------------ */

.bg-banner-img {

    background: url('../images/banner-img.jpg') center/cover no-repeat;

    position: relative;

}



.overlay-all {

    background: rgba(10, 12, 30, 0.35);

    padding-bottom: 0;

}



#banner {

    padding: 80px 0 80px;

}



.main-h {

    font-size: 48px;

    line-height: 60px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 15px;

}



.banner-text {

    font-size: 20px;

    line-height: 38px;

    color: #fff;

    margin-bottom: 30px;

}



.top-banner {

    margin-top: 10px;

}



.banner-shap-img {

    background: url('../images/shap-banner.png') center/cover no-repeat;

    height: 120px;

}



/* ====== Responsive hero (banner) ====== */
#banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

/* نص البانر */
#banner #banner-text {
  flex: 1 1 50%;
  min-width: 260px;
  padding-right: 12px; /* مسافة جهة اليمين لأن اتجاه RTL */
}

/* صورة البانر */
#banner .img-card {
  flex: 1 1 45%;
  max-width: 520px;
  min-width: 220px;
  height: auto; /* لا نجبر ارتفاع ثابت هنا */
}

/* نجعل صورة داخل img-card تحافظ على النسبة ومتجاوبة */
#banner .img-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

/* Mobile: اجعل المحتوى عمودياً */
@media (max-width: 992px) {
  #banner .container {
    flex-direction: column-reverse; /* الصورة فوق النص أو تحت حسب تفضيلك */
    text-align: center;
  }

  #banner #banner-text {
    padding-right: 0;
  }

  #banner .img-card {
    width: 100%;
    max-width: 100%;
    height: 260px; /* ارتفاع مناسب للموبايل */
  }

  #banner .img-card img {
    height: 100%;
    object-fit: contain;
  }

  .main-h { font-size: 28px; line-height: 1.1; }
  .banner-text { font-size: 16px; line-height: 1.6; }
}

/* ------------------------------------

   ABOUT SECTIONS

------------------------------------ */

.about_row,

.about_row_2 {

    align-items: center;

    margin-top: 10px;

}



.about_h {

    font-size: 30px;

    font-weight: 700;

    color: #333;

    margin-bottom: 30px;


}



.about_bottom_h {

    font-size: 18px;

    color: #555;

    line-height: 50px;

    margin-bottom: 25px;

}



.pl_90, .pr_90 { padding-left: 48px; padding-right: 48px; }
@media (max-width: 768px) {
  .pl_90, .pr_90 { padding: 0 16px !important; text-align: center; }
}



@media (max-width: 768px) {

    .pl_90, .pr_90 {

        padding: 0 15px;

        text-align: center;

        margin-top: 10px;

    }

}

/* ====== Image cards uniform behavior ====== */
.img-card { height: 320px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,0.06); }
.img-cardB { height: 380px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,0.06); }

.img-card img, .img-cardB img, .tabs-img img, .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .img-card { height: 220px; }
  .img-cardB { height: 260px; }
}

/* ------------------------------------

   TABS SECTION

------------------------------------ */
/* ================================
   TAB SECTION — PREMIUM SAAS STYLE
================================ */

/* الحاوية العامة */
.bhoechie-tab-container {
    padding: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* عمود المحتوى */
.bhoechie-tab-content {
    display: none;
    padding: 20px 35px !important;
    animation: fadeIn .4s ease;
}

.bhoechie-tab-content.active {
    display: block;
}

/* العنوان */
.bhoechie-tab-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #263158;
    margin-bottom: 18px;
    text-align: center;
}

/* الفقرة */
.bhoechie-tab-content p {
    font-size: 17px;
    color: #555;
    line-height: 32px;
    margin-bottom: 25px;
    text-align: right;
}

/* صورة داخل الكارد */
.tabs-img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.tabs-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* mobile */
@media (max-width: 768px) {
  .tabs-img { height: 220px; }
}

/* ============ TABS MENU – MODERN CLEAN DESIGN ============ */

.bhoechie-tab-menu .list-group-item {
    padding: 18px 12px;
    border: none;
    text-align: center;
    background: #f6f6f9;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;      /* النص في النص عموديًا */
    justify-content: center;  /* النص في النص أفقيًا */
    transition: 0.25s ease;
}

/* Hover */
.bhoechie-tab-menu .list-group-item:hover {
    background: #e2e2f3;
}

/* Active (اللون الجديد 1B1A3B) */
.bhoechie-tab-menu .list-group-item.active {
    background: #1B1A3B !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(27, 26, 59, 0.25);
}

/* إزالة أي ستايل قديم */
.bhoechie-tab-menu .list-group-item span {
    margin: 0;
    padding: 0;
}

/* ================================
   TAB LIST (RIGHT)
================================ */

.bhoechie-tab-menu {
    padding-right: 0;
}

.bhoechie-tab-menu .list-group {
    width: 100%;
}

.bhoechie-tab-menu .list-group-item {
    background: #f6f6f9;
    padding: 18px 10px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 17px;
    color: #444;
    text-align: right;
    transition: .25s ease;
}

.bhoechie-tab-menu .list-group-item:hover {
    background: #e6e8ff;
}

.bhoechie-tab-menu .list-group-item.active {
    background: linear-gradient(135deg, #5568ff, #8d5cf6);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(85,104,255,0.25);
}

/* make tab layout column on small screens */
@media (max-width: 992px) {
  .bhoechie-tab{ flex-direction: column; gap: 16px; }
  .bhoechie-tab-menu{ width: 100%; order: -1; } /* القائمة فوق المحتوى */
  .bhoechie-tab > .bhoechie-tab-content{ width: 100%; }
}

/* ================================
   ANIMATION
================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE تحسين
================================ */
@media (max-width: 768px) {
    .bhoechie-tab-menu {
        margin-bottom: 30px;
    }
    .tabs-img {
        height: 250px;
    }
}

/* ------------------------------------

   CTA (BOOK NOW)

------------------------------------ */

.book_now_aera .book_now {

    padding: 30px 60px;

    background: #f7f7fa;

    border-radius: 15px;

    margin-top: 10px;

}



.book_now_aera h4 {

    font-size: 24px;

    font-weight: 700;

    color: #364167;

}



.book_now_aera p {

    font-size: 16px;

    color: #364167;

    margin-top: 10px;

}


/* تنسيق الفوتر ليكون بعرض الصفحة */
.our_footer_area {
    background-color: #f4f6f9; /* لون خلفية رمادي فاتح */
    /* إذا كنت تفضل لوناً داكناً مثل البراند استخدم: background-color: #1c3c8a; */
    
    width: 100%; /* عرض كامل */
    padding: 30px 0; /* مسافة بسيطة فوق وتحت المحتوى */
    border-top: 1px solid #e0e0e0; /* خط خفيف يفصله عن المحتوى اللي فوقه */
    margin-top: 50px; /* مسافة تفصله عن القسم السابق */
}

/* تنسيق النصوص */
.footer-h {
    font-size: 16px;
    margin: 5px 0; /* تقليل المسافة بين السطور */
    color: #364167; /* لون النص كحلي */
}

/* تنسيق الروابط داخل الفوتر */
.footer-h a {
    color: #364167;
    text-decoration: none;
    font-weight: 600;
}

/* تنسيق أيقونات السوشيال ميديا */
.bigpixi-footer-social {
    margin-top: 15px;
}

.bigpixi-footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff; /* خلفية بيضاء للأيقونة */
    border-radius: 50%; /* جعلها دائرية */
    text-align: center;
    margin: 0 5px;
    color: #364167;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* ظل خفيف */
    transition: all 0.3s ease;
}

.bigpixi-footer-social a:hover {
    background: #364167; /* عند الوقوف عليها تصبح كحلي */
    color: #fff;
    transform: translateY(-3px); /* حركة بسيطة للأعلى */
}

/* إصلاح أيقونات FontAwesome */
.footer-h i {
    margin-left: 8px; /* مسافة صغيرة بين الأيقونة والكلام */
    color: #265db9;
}
/* ------------------------------------

   RESPONSIVE

------------------------------------ */

@media (max-width: 992px) {

    #banner {

        text-align: center;

    }

}



@media (max-width: 768px) {

    .main-h {

        font-size: 34px;

        line-height: 48px;

    }



    .banner-text {

        font-size: 18px;

        line-height: 32px;

    }



    .our_footer_area {

        text-align: center;

    }

}


@media (max-width: 768px) {
  .bhoechie-tab-container {
    padding: 20px 16px !important; /* تقليل البادينج */
  }

  .bhoechie-tab {
    width: 100% !important;  /* يمنع الضيق */
    display: block !important;
  }
}


@media (max-width: 768px) {
  .bhoechie-tab-content, 
  .bhoechie-tab-menu {
    width: 100% !important;
  }
}


@media (max-width: 768px) {
  .img-cardB {
    height: 230px !important;
  }

  .img-card {
    height: 200px !important;
  }
}

