/* ==========================================================================
   1) RESET + GLOBAL STYLES
   ========================================================================== */


   @font-face {
    font-family: 'kanzn';
    src: url('../fonts/alkanz.ttf') format('truetype');
   }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}

a {
    text-decoration:none;
}

:root {
  --amicons-size: 1.5rem;
  --amicons-color: #b7863c;
}

/* ==========================================================================
     2) DECORATIVE TOP BORDER (from header.html)
     ========================================================================== */
.top-decorative-border {
  width: 100%;
  height: 40px;
  background-image: url("top-border.png");
  background-repeat: repeat-x;
  background-position: top center;
}

/* ==========================================================================


/*───────────────────────────────────────────────
  1) UNIFY ALL CONTAINERS TO 1200px
───────────────────────────────────────────────*/
.MuiContainer-root.MuiContainer-maxWidthLg,
.sfcontainer {
  /* same width for MUI container and your sfcontainer wrapper */
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  box-sizing: border-box;
}

/*───────────────────────────────────────────────
  2) GRADIENT “SUBTITLE” PANEL
───────────────────────────────────────────────*/
.MuiContainer-root > .MuiPaper-root.sfcontainer {
  /* make the MUI-Paper that you gave .sfcontainer fill its parent fully */
  padding: 0 !important;
  box-shadow: none !important;
  background: none !important;
}
.MuiPaper-root.sfcontainer > .MuiBox-root.css-c7pnka {
  /* style the inner box that holds your Arabic <p> */
  background: linear-gradient(to right, #d29a2b, #347486);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  color: #fff;
  font-family: kanzn, sans-serif;
  font-size: 1.4rem;
  direction: rtl;
}

/*───────────────────────────────────────────────
  3) TABS ROW
───────────────────────────────────────────────*/
.sftabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  /* force same container width + padding */
  width: 100% !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  border: 1px solid rgba(183,134,60,0.15);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-sizing: border-box;
}

/* keep your existing button styling */
.sftab-btn { /* … */ }
/* … rest of your .sftab-btn rules … */

/*───────────────────────────────────────────────
  4) CARD GRID
───────────────────────────────────────────────*/
.sfcard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
  /* same container constraints */
  width: 100% !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* force 4-across layout with equal widths and perfect edges */
.sfcard {
  flex: 1 1 calc((100% - 3 * 20px) / 4);
  max-width: calc((100% - 3 * 20px) / 4);
  min-width: 260px;
  /* your existing card styles… */
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/*───────────────────────────────────────────────
  5) RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────*/
@media (max-width: 1000px) {
  /* 2-across once the viewport can’t fit four */
  .sfcard {
    flex: 1 1 calc((100% - 1 * 20px) / 2);
    max-width: calc((100% - 1 * 20px) / 2);
  }
}

@media (max-width: 600px) {
  /* stack full-width on small screens */
  .sfcard {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/*==================================*/ 
    /* SECTION TITLE */
sfbody {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  direction: ltr;
  color: #203f52;
  padding: 2rem 0;

  text-align: center;
}
.sfcontainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.sfsection-title {
  margin-top: 20px;
  font-size: 2.5rem;
  /* font-weight: bold; */
  color: #203f52;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-family: 'kanzn, sans-serif';
  font-weight: 800px;
  direction: rtl;
}
.sfsection-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #c7993d;
  margin: 0.5rem auto 0;
}
.sfsection-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  background: linear-gradient(to right, #c7993d, #154a6f);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: right;
}
/* TABS */
.sftabs {
  display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 100% !important;
    border: 1px solid rgba(183, 134, 60, 0.15);
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}
.sftab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 12px;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border: 1px solid rgb(183, 134, 60);
  background-color: #ffffff;
  color: rgb(183, 134, 60);
  flex-shrink: 0;
}
.sftab-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.sftab-btn.active {
  background: rgb(183, 134, 60) !important;
  color: #fff !important;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
;
}

/* Odd active tab: gold, Even active tab: teal */
.sftab-btn.active:nth-child(odd) {
  position: relative;
  background: rgb(183, 134, 60) !important;
  color: #fff !important;
}
.sftab-btn.active:nth-child(even) {
  background: rgb(32, 72, 82) !important;
  color: #fff !important;
}

.sftab-btn:nth-child(odd):hover:not(.active) {
  background: rgba(183, 134, 60, 0.2) !important;
}

.sftab-btn:nth-child(even):hover:not(.active) {
  background: rgba(32, 72, 82, 0.2) !important;
}

/* Alternate tab button text color */
.sftab-btn:nth-child(odd) {
  color: rgb(183, 134, 60);
}
.sftab-btn:nth-child(even) {
  color: rgb(32, 72, 82);
}

/* When active, keep white text for both */
.sftab-btn.active {
  color: #fff !important;
}
/* CARD GRID */

@media screen and (max-width: 768px) {
  /* 1) Turn the grid into a single‐column stack */
  .sfcard-grid {
    display: flex;
    flex-direction: column;
    align-items: center;  /* centers in case you leave a max-width */
    gap: 20px;
  }

  /* 2) Let each card go full‐width (or nearly) on narrow screens */
  .sfcard {
    width: 100% !important;      /* fill its container */
    max-width: 100%;             /* don’t exceed it */
    margin: 0;                   /* remove any side margins */
  }
}

.sfcard-grid {
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;

  /* padding: 20px; */
  width: 100% !important;
}
.sfcard {
  width: 260px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  direction: ltr;
}
.sfcard img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.sfcard-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sfcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sfcard-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(183, 134, 60);
  flex: 1;
  margin-right: 8px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}
.sfinfo-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #154a6f;
}
.sfinfo-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.sfcard-text {
  font-size: 0.9375rem;
  color: #00000099;
  margin-top: 8px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  flex: 1;
}
.sfchip {
  align-self: flex-start;
  background-color: #fdf1d5;
  color: #c7993d;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  margin-top: 12px;
}
/* DOWNLOAD BUTTON */
.sfdownload-btn {
  display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, sans-serif;
    line-height: 1.75;
    text-transform: capitalize;
    font-size: 14px;
    background-color: rgb(183, 134, 60);
    color: white;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-weight: 600;
    box-shadow: rgba(183, 134, 60, 0.3) 0px 4px 15px;
    min-width: 240px;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
}
.sfdownload-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* CATEGORY CONTENT - TRANSITIONS */
.sfcategory-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.sfcategory-content.active {
  max-height: 2000px; /* large enough to show content */
  opacity: 1;
}
/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .sfsection-subtitle {
    font-size: 1rem;
    padding: 8px;
  }
  .sftab-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .sfcard-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .sfcard-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== */
 #mainheader{
     overflow:visible;
 }
  .navbar-container {
  width: 90vw;
  position: relative;
  background-color: #ffffff;
  background-repeat: repeat-x;
  background-position: center center;
  border-bottom: 1px solid #dddddd;
  margin: 0 auto;
}
@media(min-width: 660px){
  .navbar-toolbar{
    height:120px;
  }
}
.navbar-toolbar {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem;
  /* border: 2px solid red */
}

/* LOGO (left) */
.navbar-logo img {
  width: 90px;
  padding-top: 12px;
  padding-bottom: 8px;
}


@media only screen and (max-width: 768px) {
  .navbar-toolbar {
    position: relative;
    /* reduce this to match your new logo height + a little padding */
    min-height: 120px;
  }

  /* size the img smaller and keep its aspect ratio */
  .navbar-logo img {
    max-height: 132px;
    width: auto;
    display: block;
  }

  .navbar-logo {
    position: absolute;
    /* now center vertically & horizontally */
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  .hamburger-btn {
    top: 1rem;
    right: 1rem;
  }
}


/* ─── DESKTOP NAV (VISIBLE ≥ 768px) ───────────────────────────────────────── */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: rgb(71, 85, 105);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.7rem 0.7rem;
  border-radius: 10px;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  margin-right: 0.375rem;
}
/* ACTIVE STATE = "Home" */
.nav-link.active {
  background-color: #fcf1d5;
  color: #d4a761;
  padding: 0.7rem 0.7rem;
  border-radius: 10px;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d4a761;
  border-radius: 2px 2px 0 0;
}
.nav-link.active .nav-icon {
  fill: #d4a761;
}
/* HOVER STATE ON NON-ACTIVE */
.nav-link:hover {
  background-color: rgba(212, 167, 97, 0.1);
  color: #d4a761;
}
.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #d4a761;
  border-radius: 2px;
  opacity: 0.6;
  transition: width 0.2s ease, opacity 0.2s ease;
}

/* HIDE DESKTOP NAV & SHOW HAMBURGER ON MOBILE (< 768px) */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #1a1a1a;
  stroke-width: 2;
  fill: none;
}
@media screen and (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
}

/* ==========================================================================
     4) OFF-CANVAS DRAWER & OVERLAY (MOBILE NAVIGATION)
     ========================================================================== */
/* Overlay behind drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 98;
}
/* Drawer container */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
/* When "open", slide in + show overlay */
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
/* DRAWER HEADER (logo + title + subtitle) */
.drawer-header {
  background-color: #d4a761;
  padding: 1rem;
  text-align: center;
  color: #ffffff;
}
.drawer-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto;
}
.drawer-title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.drawer-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  opacity: 0.9;
}
/* NAVIGATION TITLE IN DRAWER */
.drawer-nav-title {
  margin: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
}
/* LINKS LIST */
.drawer-links {
  list-style: none;
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 0.5rem;
}
.drawer-links li {
  margin-bottom: 0.25rem;
}
.drawer-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333333;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}
.drawer-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  margin-right: 0.75rem;
}
/* ACTIVE LINK IN DRAWER */
.drawer-link.active {
  background-color: #fcf1d5;
  color: #d4a761;
}
.drawer-link.active .drawer-icon {
  fill: #d4a761;
}
/* DRAWER LINK HOVER */
.drawer-link:hover {
  background-color: rgba(212, 167, 97, 0.1);
  color: #d4a761;
}
/* CLOSE BUTTON (×) IN DRAWER */
.drawer-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #333333;
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 100;
}
.drawer-close-btn:hover {
  color: #d4a761;
}
/* ONLY SHOW DRAWER ON MOBILE (< 768px) */
@media screen and (min-width: 768px) {
  .mobile-drawer {
    display: none;
  }
  .drawer-overlay {
    display: none;
  }
}
/* OPTIONAL: SCROLLBAR STYLING WITHIN DRAWER (FOR WEBKIT) */
.drawer-links::-webkit-scrollbar {
  width: 6px;
}
.drawer-links::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.top-border {
  width: 100vw;
  min-width: 100%;
  max-width: 100vw;
  height: 60px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .top-border {
    height: 40px !important;
  }
}

@media (max-width: 767px) {
    .phone-number-new{
    color:var(--amicons-color) !important;
}
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}
.faqtitle {
  font-family: 'kanzn', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #154a6f;
  direction: ltr;
}
.faqsubtitle {
  text-align: center;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.faq-layout {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.faq-sidebar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-width: 250px;
}

@media(max-width:767px)
{
    .faq-sidebar{
        width:100% !important;
    }
}
.faq-sidebar-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #c59d5f, #347486);
  padding: 0.8rem 1rem;
}
.faq-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.faq-tab .faq-tab-left {
  display: flex;
  align-items: center;
}
.faq-tab .icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.faq-tab .count {
  background: #eee;
  border-radius: 12px;
  padding: 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.faq-tab.active {
  background: #f5e9d4;
  color: #b7863c;
  border-left: #b7863c 5px solid;
}
.faq-tab.active .icon {
  color: #b7863c;
}
.faq-tab.active .count {
  background: rgba(183, 134, 60, 0.1);
  color: #b7863c;
}
.faq-tab:not(.active) {
  background: #fff;
  color: #333;
  border-bottom: 1px solid #eee;
}
.faq-tab:not(.active):last-child {
  border-bottom: none;
}
.faq-content {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-width: 350px;
}
.faq-header {
  background: linear-gradient(135deg, #c59d5f, #347486);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.faq-header .icon {
  margin-right: 0.5rem;
  font-size: 1.3rem;
}
.faq-questions {
  padding: 1rem 1.5rem;
}
.faq-question {
  background: #fefefe;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, max-height 0.4s ease;
}
.faq-question:hover {
  background: #f9f9f9;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-weight: 400;
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
  padding: 0 1rem;
}
.faq-question.active .arrow {
  transform: rotate(90deg);
}
.arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}
/* ==========================================================================
     5) FOOTER STYLES (with floral background on left & right)
     ========================================================================== */
/* 1) Base .footer (dark‐green background, gold top border) */
/* ==========================================================================
   5) FOOTER STYLES (revised for perfect alignment/spacing)
   ========================================================================== */
/* ==========================================================================
   5) COMPLETE FOOTER STYLES
   ========================================================================== */

/* 1) Base .footer (dark‐green background, gold top border) */
.footer {
  background-color: #347486; /* dark green */
  border-top: 4px solid #d29a2b; /* thin gold line at top */
  color: #ffffff;
  padding: 60px 20px 0;
  position: relative;
  overflow: hidden; /* prevents scrollbars from floral svgs */
}

/* 2) FLORAL SVGS (only on extremely large screens) */
@media (min-width: 1600px) {
  .footer {
    /* push the flowers slightly off‐screen so they sit behind content */
    background-position: left -60px center, right -60px center;
    background-repeat: no-repeat, no-repeat;
    background-size: 160px auto;
  }
  /* Add extra side padding on ultra‐wide screens */
  .footer .footer-top {
    padding: 0 140px;
  }
}

/* 3) FOOTER‐TOP: three columns layout, equally spaced */
.footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* reduced gap between columns */
  justify-content: space-evenly; /* evenly distributes columns */
  max-width: 1200px;
  margin: 0 auto; /* centers the group */
  padding: 0 10px;
}

/* Ensure each of the three columns stretches equally */
.footer .footer-section {
  flex: 1; /* each takes one share of available space */
  min-width: 180px; /* can shrink to ~180px if needed */
}

/* --------------------------------------------------
     A) LOGO + TITLE + DESCRIPTION + COUNTDOWN
     -------------------------------------------------- */
/* Use CSS Grid to place logo & heading side‐by‐side,
     then description, then countdown below. */
.footer .logo-section {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "logo heading"
    "desc desc"
    "countdown countdown";
  gap: 15px;
}

/* Circular logo image */
.footer .logo-section .logo {
  grid-area: logo;
  width: 100px;
}

/* Heading block (“ASHARA” + “MUBARAKA 1447H”) */
.footer .logo-section > div:first-of-type {
  grid-area: heading;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.footer .logo-section h2 {
  margin: 0;
  color: #d29a2b; /* gold */
  font-size: 1.5rem;
  line-height: 1;
}

.footer .logo-section > div:first-of-type p {
  margin: 0;
  font-size: 0.95rem;
  color: #e1e1e1;
}

/* Description text under the heading */
.footer .logo-section .desc {
  grid-area: desc;
  color: #e1e1e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Countdown container at the bottom of this section */
.footer .logo-section .countdown {
  grid-area: countdown;
  margin-top: 10px;
  padding: 15px 20px; /* extra horizontal padding */
  background: rgba(222, 159, 34, 0.1); /* translucent gold */
  border: 1px solid #f0b239;
  border-radius: 8px;
  box-sizing: border-box;
  margin-left: auto; /* center it under its column */
  margin-right: auto;
}

/* Countdown title (“⏳ Countdown to Ashara Mubaraka”) */
.footer .count-label {
  margin: 0 0 10px;
  color: #f0b239;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* If you use FontAwesome for the hourglass icon: */
.footer .count-label i {
  font-size: 1rem;
}

/* Four time‐boxes always in one row (if space allows) */
.footer .count-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 10px;
}

.footer .count-boxes div {
  background: #16596c; /* darker box behind numbers */
  padding: 12px 0;
  border-radius: 5px;
  text-align: center;
  min-width: 65px;
}

.footer .count-boxes span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #f0b239; /* gold numbers */
}

.footer .count-boxes small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #e1e1e1;
}

/* --------------------------------------------------
     B) QUICK LINKS
     -------------------------------------------------- */
.footer h3 {
  color: #f0b239;
  border-bottom: 2px solid #f0b239;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer .quick-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer .quick-links li {
  display: flex;
  align-items: center;
  margin: 6px 0;
  font-size: 0.95rem;
}

/* FontAwesome “angle-right” bullet instead of ▶ */
.footer .quick-links li::before {
  content: "\f105"; /* fa-angle-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f0b239;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.footer .quick-links li a {
  color: #e1e1e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .quick-links li a:hover {
  color: #f0b239; /* gold on hover */
}

/* --------------------------------------------------
     C) CONTACT INFORMATION
     -------------------------------------------------- */
.footer .contact-info p {
  margin: 6px 0;
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  color: #e1e1e1;
}

/* “Map‐pin” icon before “Main Event Venue:” */
.footer .contact-info p.location::before {
  content: "\f3c5"; /* fa-map-marker-alt */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f0b239;
  margin-right: 8px;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* “Phone” icon before “Helpline:” */
.footer .contact-info p.phone::before {
  content: "\f095"; /* fa-phone-alt */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f0b239;
  margin-right: 8px;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Bold the label (“Main Event Venue:” / “Helpline:”) inline with text */
.footer .contact-info p strong {
  display: inline-block;
  font-weight: 600;
  margin-right: 4px;
  color: #ffffff;
}

/* Prevent “(International)” from overlapping; allow normal wrapping */
.footer .contact-info p.location,
.footer .contact-info p.phone {
  white-space: normal;
  overflow-wrap: normal;
}

/* --------------------------------------------------
     D) STAY UPDATED
     -------------------------------------------------- */
.footer .stay-updated p {
  font-size: 0.95rem;
  color: #e1e1e1;
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer .channel-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer .channel-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 0.95rem;
}

/* FontAwesome “rss” icon before each channel name */

/* --------------------------------------------------
     E) FOOTER BOTTOM BAR (full‐width background)
     -------------------------------------------------- */
.footer .footer-bottom {
  background: #16596c; /* slightly darker than main footer */
  text-align: center;
  padding: 15px 20px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #d1d1d1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  width: 100%; /* ensures it spans the full viewport */
  box-sizing: border-box;
}

.footer .footer-bottom p {
  margin: 5px 0;
}

.footer .footer-bottom a {
  color: #f0b239;
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.85rem;
}

.footer .footer-bottom a:hover {
  text-decoration: underline;
}

.footer .footer-bottom .divider {
  color: #d1d1d1;
  margin: 0 4px;
}

/* ==========================================================================
     6) MOBILE + TABLET RESPONSIVENESS
     ========================================================================== */
@media (max-width: 1024px) {
  /* Stack the three columns vertically */
  .footer .footer-top {
    flex-direction: column;
    gap: 25px;
    padding-bottom: 20px;
  }
  /* Bottom bar stacks as well */
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* Slightly smaller fonts on very small screens */
  .footer .logo-section h2 {
    font-size: 1.3rem;
  }
  .footer .quick-links li,
  .footer .channel-links li {
    font-size: 0.9rem;
  }
  /* Countdown grid can wrap into two columns if needed */
  .footer .count-boxes {
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    gap: 8px;
    justify-content: center;
  }
  .footer .count-boxes div {
    min-width: 50px;
    padding: 8px 0;
  }
}

/* ==========================================================================
     7) ENSURE LINK HOVER REMAINS GOLD
     ========================================================================== */
.footer a:hover {
  color: #f0b239 !important;
}

.ashara-hero-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8f7f4;
  margin-bottom: 2rem;
}

.ashara-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ashara-hero-bg img,
.ashara-hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ashara-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ashara-hero-logo {
  max-width: 220px;
  width: 90vw;
  height: auto;
  margin-bottom: 1rem;
}

.ashara-hero-ahlan {
  max-width: 320px;
  width: 90vw;
  height: auto;
}

/* annouuncment icon style */
.css-1q81932 {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    -webkit-box-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
    margin-right: 8px !important;
}

.css-1q81932::before {
    content: "" !important; 
    position: absolute !important;
    inset: 0px !important;
    background: linear-gradient(135deg, rgb(183, 134, 60) 0%, rgb(154, 115, 50) 100%) !important;
    opacity: 0.1 !important;
    border-radius: 50% !important;
    transform: scale(1.2) !important;
}

.css-15hxjab {
    user-select: none !important;
    width: 1em !important;
    height: 1em !important;
    display: inline-block !important;
    fill: currentcolor !important;
    flex-shrink: 0 !important;
    font-size: 28px !important;
    color: rgb(183, 134, 60) !important;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: auto ease 0s 1 normal none running none !important;
}

.css-1ruyyp3 {
    width: 300px;
    height: 4px;
    background: rgb(183, 134, 60);
    border-radius: 2px;
    margin-bottom: 4px;
}

.css-1mpg011 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.css-cnatga {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    line-height: 1.75;
    min-width: 64px;
    box-shadow: none;
    text-transform: capitalize;
    font-size: 14px;
    color: rgb(183, 134, 60);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 6px 8px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.css-1qcszem {
    max-width: 100%;
    font-family: Roboto, sans-serif;
    font-size: 0.8125rem;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 24px;
    cursor: unset;
    vertical-align: middle;
    box-sizing: border-box;
    background-color: rgba(255, 152, 0, 0.1);
    color: rgb(255, 152, 0);
    border-radius: 16px;
    white-space: nowrap;
    transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    outline: 0px;
    text-decoration: none;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    padding: 0px;
}

.css-1pjtbja {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
}

.css-cnatga:hover {
    background-color: rgba(183, 134, 60, 0.1);
}


/* no announcment style start here */
.css-1wa7mnw {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    color: rgb(32, 72, 82);
    opacity: 0.7;
}
.css-1tdq1f9 {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 64px;
    margin-bottom: 8px;
    opacity: 0.3;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-11a65e0 {
    margin: 0px 0px 0.35em;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
}

.css-1ipd9g4 {
    margin: 0px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
}

/* no announcment style end here */

/* suffer section style start here */
.css-1bnmsli {
    position: relative !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

@media (min-width: 900px) {
    .css-1bnmsli {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media (min-width: 0px) {
    .css-1bnmsli {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}
.css-j3g5z4 {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    right: 0px !important;
    height: 6px !important;
    opacity: 0.6 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgb(12,46,56) 0%, rgb(112, 156, 159) 33.33%, rgb(220, 20, 60) 33.33%, rgb(220, 20, 60) 66.66%, rgb(112, 156, 159) 66.66%, rgb(19, 70, 86) 100%) !important;
}

.css-9vkhth {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    display: block;
    padding-left: 8px;
    padding-right: 8px;
    position: relative;
    z-index: 3;
}

@media (min-width: 600px) {
    .css-9vkhth {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.css-1h3bf10 {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

@media (min-width: 900px) {
    .css-1r4hahw {
        font-size: 3rem;
    }
}

@media (min-width: 600px) {
    .css-1r4hahw {
        font-size: 2.5rem;
    }
}

@media (min-width: 0px) {
    .css-1r4hahw {
        font-size: 2rem;
    }
}
.css-1r4hahw {
    margin: 0px 0px 8px;
    font-size: 3rem;
    line-height: 1.167;
    color: #154a6f;
    font-weight: 700;
    font-family: kanzn, sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 2px;
    direction: rtl;
    text-align: center;
}
.css-1r4hahw::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(183, 134, 60), rgb(32, 72, 82));
    border-radius: 2px;
}

.css-uujewx {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: none;
    margin-bottom: 20px;
    position: relative;
    backdrop-filter: blur(5px);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(183, 134, 60, 0.9) 0%, rgba(32, 72, 82, 0.85) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(183, 134, 60, 0.3);
    border-image: initial;
    overflow: hidden;
}

.css-hxfzn1 {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 6px;
    background: linear-gradient(rgb(183, 134, 60) 0%, rgb(32, 72, 82) 100%);
}

.css-c7pnka {
    padding-left: 12px;
}

.css-c7pnka p{
  display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}


.css-1qm1lh {
    margin-bottom: 3px;
}

.css-dja5e1 {
    display: flex
;
    flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(183, 134, 60, 0.15);
}

.css-1dkf2qg {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    line-height: 1.75;
    box-shadow: none;
    text-transform: capitalize;
    font-family: kanzn;
    min-width: auto;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    direction: rtl;
    background-color: rgb(183, 134, 60);
    color: white;
    transition: 0.3s;
}

.css-10fxm8r {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    line-height: 1.75;
    border: 1px solid rgba(183, 134, 60, 0.3);
    box-shadow: none;
    text-transform: capitalize;
    font-family: kanzn;
    min-width: auto;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    direction: rtl;
    color: rgb(32, 72, 82);
    background-color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.css-1wucrnu {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    line-height: 1.75;
    border: 1px solid rgba(183, 134, 60, 0.3);
    box-shadow: none;
    text-transform: capitalize;
    font-family: kanzn;
    min-width: auto;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    direction: rtl;
    color: rgb(183, 134, 60);
    background-color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.css-10fxm8r {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    line-height: 1.75;
    border: 1px solid rgba(183, 134, 60, 0.3);
    box-shadow: none;
    text-transform: capitalize;
    font-family: kanzn;
    min-width: auto;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    direction: rtl;
    color: rgb(32, 72, 82);
    background-color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.css-1dkf2qg:hover {
    background-color: rgb(183, 134, 60);
    opacity: 0.9;
}

.css-1dkf2qg:active {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
}

.css-10fxm8r:hover {
    border-color: rgb(32, 72, 82);
    background-color: rgba(32, 72, 82, 0.063);
}


.css-10fxm8r:hover {
    text-decoration: none;
    background-color: rgba(25, 118, 210, 0.04);
    border: 1px solid rgb(25, 118, 210);
}


.css-1wucrnu:hover {
    border-color: rgb(183, 134, 60);
    background-color: rgba(183, 134, 60, 0.063);
}

.css-1wucrnu:hover {
    text-decoration: none;
    background-color: rgba(25, 118, 210, 0.04);
    border: 1px solid rgb(25, 118, 210);
}

.css-10fxm8r:hover {
    border-color: rgb(32, 72, 82);
    background-color: rgba(32, 72, 82, 0.063);
}

.css-10fxm8r:hover {
    text-decoration: none;
    background-color: rgba(25, 118, 210, 0.04);
    border: 1px solid rgb(25, 118, 210);
}
/* suffer section style end here */

/* ─── Dropdown button styling ──────────────────────────────────────────── */

.sftabs-dropdown {
  position: relative;       /* create a new stacking context */
  z-index: 1000;            /* sit above cards (which are z-index: auto) */
  overflow: visible;        /* allow the list to spill outside */
}


.sftabs-dropdown .sftab-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 8px 12px;
  font-size: 1.3rem;
  font-weight: 600;
  border: 1px solid #c7993d;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  color: #c7993d;       
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  cursor: pointer;
}
.sftabs-dropdown .sftab-dropdown-btn svg {
  width: 1.2rem;
  fill: currentColor;
}
/* rotate caret when open */
.sftabs-dropdown .sftab-dropdown-btn.open svg:last-child {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* ─── Dropdown list container ───────────────────────────────────────── */
.sftab-dropdown-list {
  position: absolute;
  left: 0; right: 0;
  background: #fff;
  border-left-width: 4px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 100%;
  margin-top: -1px;   /* still collapse button’s bottom border */
  border-top: none;
  margin-left: 0;
  z-index: 1001; 
}

.sfcategory-content,
.sfcard-grid {
  overflow: hidden !important;
}

.sftab-dropdown-list.open {
  max-height: 200px;                 /* make tall enough for all items */
  overflow-y: auto;
}

/* ─── Dropdown items ─────────────────────────────────────────────────── */
.sftab-dropdown-list li {
  list-style: none;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #154a6f;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    padding: 0;
    white-space: nowrap;
    padding-right: 20px;
    height: 40px;
}
.sftab-dropdown-list li:hover {
  background: rgba(199,156,71,0.1);  /* subtle gold highlight */
  color: #c7993d;
}
.sftab-dropdown-list li.active {
  background: #fcf1d5;               /* light gold */
  color: #c7993d;
}

/* ─── Show dropdown only on mobile ───────────────────────────────────── */
.sftabs-dropdown { display: none; position: relative; }
@media screen and (max-width: 768px) {
  .sftabs { display: none; }
  .sftabs-dropdown { display: block; }
}

.css-vubbuv {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-z9mt4m {
    color: rgb(183, 134, 60);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex !important;
    -webkit-box-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
}

.css-4vj3da {
    color: rgb(32, 72, 82);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex !important;
    -webkit-box-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
}

.css-1gqtihe {
    font-family: kanzn, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    color: rgb(183, 134, 60);
    height: 100%;
    direction: rtl;
    text-align: right;
    display: flex !important;
    -webkit-box-align: center !important;
    align-items: center !important;
}

.css-1qj9udo {
    font-family: kanzn, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    color: rgb(32, 72, 82);
    height: 100%;
    direction: rtl;
    text-align: right;
    display: flex !important;
    -webkit-box-align: center !important;
    align-items: center !important;
}

.sftab-dropdown-btn.odd-selected {
  color: #c7993d !important;
}

/* even = 2nd, 4th, … choice */
.sftab-dropdown-btn.even-selected {
  color: rgb(32, 72, 82) !important;
}

.sftab-dropdown-label {
  direction: ltr;        /* force left-to-right */
  unicode-bidi: isolate; /* don’t let the Arabic “leak” and flip the container */
  display: inline-block; /* ensures direction applies just to this element */
}

/* make the card a positioning context */
.sfcard {
  position: relative;
  overflow: hidden; /* so the button won’t ever spill out */
}

/* place the info-button at top-right of the image */
.sfcard .sfinfo-btn {
  position: absolute;
  top: 8px;       /* adjust as needed */
  right: 8px;     /* adjust as needed */
  /* background: rgba(255,255,255,0.8); */
  border: none;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  z-index: 10;    /* sit above the <img> */
}

/* optional: tighten the icon inside */
.sfcard .sfinfo-btn svg {
  width: 18px;
  height: 18px;
  fill: #154a6f;  /* or whatever color you like */
}


.amicons {
  font-size: var(--amicons-size);
  color: var(--amicons-color) !important;
  width: var(--amicons-size);
  height: var(--amicons-size);
  fill: currentColor;
  line-height: 1;
  vertical-align: middle;
}

.amicons-white {
  font-size: var(--amicons-size);
  color: #FFF !important;
  width: var(--amicons-size);
  height: var(--amicons-size);
  fill: currentColor;
  line-height: 1;
  vertical-align: middle;
}

.amarabic{
    font-family:kanzn;
}

.small {
    font-size:12px;
}

.medium{
    font-size:1.3rem;
}

.center{
    align-items:center;
    text-align:center;
}


@media(max-width:767px){
    .footer .logo-section .countdown {
    width:90%;
    }
}

.btn-small {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  background:none;
  color: #fff;
  background-color: #b7863c;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background 0.2s ease;
  text-transform:uppercase;
}

.btn-small-white{
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  background:#FFF;
  color: #b7863c;
  background-color: #FFF;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.btn-small:hover,
.btn-small:focus {
  background-color: #b7863c;
}

.button-group {
  display: flex;
  gap: 0.5rem;
}

@media(max-width:767px){
    .btn-small {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  background:none;
  color: #fff;
  background-color: #b7863c;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.mb-10{
    margin-bottom:10px;
}

.btn-small-white{
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  background:#FFF;
  color: #b7863c;
  background-color: #FFF;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}
}

.fatemi {
    background-image: url(./Img/fatemi.svg);
    top:5%; right:5%;
    background-repeat: no-repeat;
}

.link, .link:visited {color: #1d7690; text-decoration: underline;}
.link:hover, .link:active {text-decoration: none;}
.map-link {display: inline-block; padding-left: 20px; background: transparent url("../Img/map-marker.svg") no-repeat left center;}
.lisaan { font-family: kanzn; font-size:1.6rem; direction: rtl; }