  /* ====== HEADER TOP (logo + text + search) ====== */
  header.isd-site-header {
    margin: 0;
    font-family: sans-serif;
    direction: rtl;
    background-color: transparent;
  }
  header.isd-site-header .isd-header-top {
    background:
      linear-gradient(rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.80)),
      url("background-ISDP_01.png") center / cover no-repeat,
      linear-gradient(#97d7e8, #6bbad4);

    padding: 20px 6vw 30px;
    color: #13406a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

  header.isd-site-header .isd-header-left,
  header.isd-site-header .isd-header-right {
    flex: 1 1 280px;
    box-sizing: border-box;
  }

  header.isd-site-header .isd-logo {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
  }

  header.isd-site-header .isd-search-form {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 6px;
  }

  header.isd-site-header .isd-search-input {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    min-width: 180px;
  }

  header.isd-site-header .isd-search-button {
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    background: #235787;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
  }

  header.isd-site-header .isd-search-button:hover {
    opacity: 0.9;
  }

  header.isd-site-header .isd-title-fa {
    font-size: 28px;
    margin: 0 0 4px;
    text-align: right;
  }

  header.isd-site-header .isd-title-en {
    font-size: 16px;
    margin: 0 0 14px;
    text-align: right;
  }

  header.isd-site-header .isd-slogan-line {
    margin: 2px 0;
    font-size: 15px;
    text-align: right;
  }
/* ===== Feature block (text + image) ===== */
.isd-feature{
  display:flex;
  flex-direction:row;          /* text left, image right (matches your old page) */
  align-items:center;
  justify-content:space-between;
  gap:30px;
  margin:40px 6vw;             /* this is the side “gap” you miss */
  box-sizing:border-box;
}
.isd-feature-text h2::after {
      content: "";
      display: block;
      width: 35%;
      height: 3px;
      margin-top: 10px;
      background: #e91e63;
    }

.isd-feature-text{
  flex:1 1 520px;
  text-align:right;            /* RTL-friendly */
}

.isd-feature-image{
  flex:0 0 360px;
  display:flex;
  justify-content:flex-end;
}

.isd-feature-image img{
  width:100%;
  max-width:360px;
  height:auto;
  border-radius:8px;
}

/* Mobile: stack */
@media (max-width: 768px){
  .isd-feature{
    flex-direction:column;
    text-align:center;
    margin:22px 5vw;
  }
  .isd-feature-text{ text-align:center; }
  .isd-feature-image{ justify-content:center; }
}

  /* ====== NAVBAR ====== */

  header.isd-site-header .isd-nav {
  background: linear-gradient(#29588a, #23496f);
  padding: 0 6vw;

  /* STICKY */
  position: sticky;
  top: 0;
  z-index: 9999;
}


  header.isd-site-header .isd-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row-reverse;
  }

  header.isd-site-header .isd-nav li {
    margin: 0;
  }

  header.isd-site-header .isd-nav a {
    display: block;
    padding: 10px 16px;
    color: #f3f8ff;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 2px solid transparent;
  }

  header.isd-site-header .isd-nav a:hover,
  header.isd-site-header .isd-nav a.is-active {
    border-bottom-color: #ffd65c;
    background: rgba(0, 0, 0, 0.12);
  }
/* ===== FOOTER ===== */
.isd-footer {
  margin-top: 60px;
  background: linear-gradient(#225f8f, #021830);
  padding: 20px 6vw;
  color: #fff;
}

.isd-footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.isd-footer-center{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
    display: flex;
  gap: 50px;
}

.isd-footer-social {
  display: flex;
  gap: 30px;
}

.isd-footer-center a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.isd-footer-email {
  margin-left: auto;
}

.isd-email-btn {
  background: #3db2c7;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.isd-footer-copy {
  text-align: right;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .isd-footer-inner {
    justify-content: center;
    text-align: center;
  }

  .isd-footer-email {
    margin-right: 0;
  }
}
.isd-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
body{
  padding-top: 44px; /* set to nav height */
}
body {min-height: 200vh;}
/* ===== STICKY NAVBAR ===== */
header.isd-site-header .isd-nav{
  position: sticky;
  top: 0;
  z-index: 9999;
}
.isd-page,
.isd-doc-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 4vw;   /* <-- this is your side gap */
  box-sizing: border-box;
}