/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "Cairo", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.footer-section {
  margin-top: auto;
}


.green-text {
  color: #73bdd3;
}

a {
  color: #b9dee9;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #b9dee9, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif;
}

.pb-30 {
  padding-bottom: 30px !important;
}


*:focus,
.owl-dot:focus {
  outline: 0;
}

button:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 1);
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 45px;
  width: auto;
  padding-right: 20px;
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation 
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    order: 1;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 12px 10px;
    font-size: 13px;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #b9dee9;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #b9dee9;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #b9dee9;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .login-btn i {
    font-size: 16px !important;
  }

  .login-btn {
    padding: 4px 12px !important;
    text-align: center;
    background-color: #b9dee9;
    border: 2px solid #b9dee9;
    border-radius: 20px;
    font-weight: 800;
    color: #013445 !important;
    font-size: 11px;
    margin-left: 8px;
    transition: 0.3s;
  }

  .login-btn:hover {
    background-color: #348caf;
    border: 2px solid #348caf;
    color: #ffffff !important;
    transition: 0.3s;
  }

  .login-btn.logged-in {
    background: #ffffff;
    color: #005b8a !important;
    border-radius: 25px;
    padding: 5px 16px !important;
    font-weight: 700;
    border: 1px solid #005b8a;
  }

  .chat-btn {
    padding: 4px 12px !important;
    text-align: center;
    background-color: #28a745;
    border: 2px solid #28a745;
    border-radius: 20px;
    font-weight: 800;
    color: #ffffff !important;
    font-size: 11px;
    margin-left: 8px;
    transition: 0.3s;
  }

  .chat-btn:hover {
    background-color: #218838;
    border: 2px solid #218838;
    color: #ffffff !important;
    transition: 0.3s;
  }

  .chat-btn i {
    font-size: 14px !important;
  }



  .lng-btn {
    display: flex;
    padding: 0 !important;
    align-items: center;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: #b9dee9;
    border: 2px solid #b9dee9;
    color: #013445 !important;
    border-radius: 50%;
    font-size: 13px !important;
    transition: 0.3s;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 12px;
    /* Add space from previous button */
  }

  .lng-btn:hover {
    background-color: #348caf;
    border: 2px solid #348caf;
    color: #ffffff !important;
    transition: 0.3s;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    height: 190px;
    display: none;
    list-style: none;
    position: absolute;
    inset: 45px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 10px 20px;
    font-family: "Cairo", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #b9dee9, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #b9dee9;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #b9dee9;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #b9dee9;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #ffffff, transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .login-btn i {
    font-size: 16px !important;
    background-color: #ffffff !important;

  }

  .login-btn {
    padding: 6px 12px !important;
    text-align: center;
    background-color: #b9dee9;
    border-radius: 30px;
    justify-content: right !important;
    font-weight: 800 !important;
    color: #013445 !important;
    font-size: 13px !important;
    border: 2px solid #b9dee9;
    margin-left: 10px;
    margin-right: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 180px;
    transition: 0.3s;
  }

  .login-btn:hover {
    background-color: #348caf;
    color: #ffffff !important;
    border: 2px solid #348caf;
    transition: 0.3s;
  }

  .lng-btn {
    padding: 6px 12px !important;
    text-align: center;
    background-color: #b9dee9;
    border-radius: 30px;
    color: #013445 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border: 2px solid #b9dee9;
    margin-left: 10px;
    margin-right: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 180px;
    transition: 0.3s;
    align-items: center !important;
    justify-content: center !important;
  }

  .lng-btn:hover {
    background-color: #348caf;
    color: #ffffff !important;
    border: 2px solid #348caf;
    transition: 0.3s;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  border: 6px solid #ffffff;
  border-color: #73bdd3 transparent #73bdd3 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Prevent content flash until preloader is ready */
body:not(.preloader-loaded) {
  overflow: hidden;
}

body:not(.preloader-loaded)>*:not(#preloader) {
  visibility: hidden;
  opacity: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.background-canvas {
  position: fixed;
  background: url(hero-bg.jpg) center center / cover no-repeat;
  top: 0;
  left: 0;
  inset: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  position: relative;

}


.menu-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
  /*justify-content: center;*/
  padding: 0.5rem;
}

#box-Labor,
#box-Social {
  padding: 0.8rem;
  margin-bottom: 0.4rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
  max-height: 120px;
}

/* Enhanced hover state with better height management */
#box-Labor:hover,
#box-Social:hover,
#box-Labor.menu-expanded,
#box-Social.menu-expanded {

  transform: translateY(-2px);
  max-height: 185px;

}

/* Ensure expanded boxes have adequate height for all content */
#box-Labor:hover .list-vertical,
#box-Social:hover .list-vertical,
#box-Labor.menu-expanded .list-vertical,
#box-Social.menu-expanded .list-vertical {
  min-height: 120px;
  /* Ensure list items are fully contained */
}


.subtitle-headline {
  font-family: "Cairo", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #b9dee9;
  margin-bottom: 0.8rem;
}

.summary-headline {
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s both 0.4s;
}

.summary-headline {
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s both 0.4s;
}

.hidden {
  display: none !important;
}

.list-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: fadeInUp 0.5s both 0.4s;

}

.list-vertical li {
  margin-bottom: 10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.list-headline {
  font-family: "Cairo", sans-serif;
  font-size: 0.813rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.list-headline:hover {
  color: #b9dee9;

}

.main-column {
  display: flex;
  height: 100%;
  /*max-height: 300px;*/
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.8rem;
}

.main-content {
  text-align: center;
  width: 100%;
}


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

.hero-title {
  font-family: "Rubik", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #b9dee9;
  line-height: inherit;

}

.search-form {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  /* Added for absolute positioning of button */
}

.search-input {
  display: flex;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid #556270;
  color: #556270;
  background-color: white;
  font-family: "Cairo", sans-serif;
  font-size: 0.938rem;
  font-weight: 600;
  text-align: right;
  height: 46px;
  width: 100%;
  border-radius: 50px;
  padding-right: 15px;
  /* Default padding for Arabic (button on left) */
  padding-left: 50px;
  /* Make space for button on left by default */
  flex: 1;
}

.search-button {
  position: absolute;
  /* Position button absolutely within form */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 50%;
  font-size: 0.938rem;
  font-weight: 500;
  background-color: #b9dee9;
  color: #013445 !important;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  height: 35px;
  width: 35px;
  left: 8px;
  /* Default position for Arabic (button on left side) */
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.search-button:hover {
  background-color: #348caf;
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# How Athar Works Top Section
--------------------------------------------------------------*/

.how-athar-works-content {
  width: 70%;
  text-align: center;
  color: #ffffff;
  margin: 0 20px 26px 20px;
}

.how-athar-works-content .section-title {
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b9dee9;
  margin-bottom: 0.8rem;
}

.how-athar-works-content .section-text {
  font-family: "Cairo", sans-serif;
  font-size: 0.625rem;
  color: #e8f4f8;
  line-height: 1.5;
  width: 100%;
  /* Use full width within the 80% container */
  margin: 0 auto;
  text-align: center;
}


/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/


contact-us-content {
  text-align: center;
  color: #ffffff;
}

.contact-us-content .contact-title {
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #b9dee9;
  margin-bottom: 0.8rem;
  margin-top: 64px;
}

.contact-us-content .contact-info-compact {
  display: flex;
  flex-direction: row;
  gap: 0.813rem;
  font-size: 0.625rem;
  color: #e8f4f8;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-us-content .contact-info-compact span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-us-content .contact-info-compact i {
  color: #b9dee9;
}



/*--------------------------------------------------------------
# map Section
--------------------------------------------------------------*/
.map-column {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-height: 300px;
  /*padding: 0.5rem;*/
}


.map-title {
  font-size: 1.125rem;
  text-align: center;
  padding-bottom: 20px;
  color: #b9dee9;
  font-weight: 700;
}


#animation_container {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  aspect-ratio: 906/750;
  /* Maintain original canvas aspect ratio */
}

/* Ensure Adobe Animate doesn't override our constraints */
#animation_container>* {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#dom_overlay_container {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

#_preload_div_ {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

#canvas {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  /* Prevent distortion */
}



.section-title-style h2 {
  font-family: "Rubik", sans-serif;
  color: #01212c;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title-style h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #444444, transparent 70%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title-style h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #73bdd3;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 34px 0;
  text-align: center;
  position: relative;
}

#home-icon {
  padding-left: 8px;
}

.back-btn {
  position: absolute;
  top: 100px;
  right: 0px;
  margin-right: 40px;
  border-radius: 50px;
  padding: 4px 14px 6px 14px !important;
  font-size: 0.938rem;
  font-weight: 700;
  background-color: #b9dee9;
  color: #013445;
  border: 2px solid #b9dee9;
  opacity: 0.7;
  transition: 0.3s;
  z-index: 990;
}

.back-btn:hover {
  background-color: #348caf;
  color: #ffffff;
  border: 2px solid #348caf;
  opacity: 1;
  transition: 0.3s;
}



.page-title img {
  width: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 10px #0e8aa3);
}

.page-title h1 {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title p {
  font-family: "Cairo", sans-serif;
  color: #b9dee9;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}


.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);

}

.page-title .breadcrumbs ol li+li {
  padding-right: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.8);

}

.page-title .breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.8);
}

.page-title .breadcrumbs ol li a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .back-btn {
    margin-right: 10px;
    top: 70px;
  }

  .page-title h1 {
    font-size: 32px;
  }

  .page-title p {
    font-size: 16px;
  }

  .page-title .breadcrumbs ol {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# section title
--------------------------------------------------------------*/
.section-title-style {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

/*--------------------------------------------------------------
# stats-item Section
--------------------------------------------------------------*/
.stats-section {
  padding: 3.75rem 1.5rem;

}

.stats-item {
  background-color: #ffffff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.stats-item:before {
  content: "";
  position: absolute;
  background: #73bdd3;
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.stats-item .icon {
  margin-bottom: 10px;
}

.stats-item .icon i {
  color: #73bdd3;
  font-size: 40px;
  margin-left: 20px;
  transition: ease-in-out 0.3s;
}

.stats-item p {
  padding: 0;
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #556270;
  transition: ease-in-out 0.3s;
}

.stats-item .stat-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: #556270;
  transition: ease-in-out 0.3s;
}

.stats-item .stat-sub {
  font-size: 0.813rem;
  font-weight: 400;
  color: #556270;
  opacity: 0.7;
  transition: ease-in-out 0.3s;
}


.stats-item:hover .stat-title,
.stats-item:hover .stat-sub,
.stats-item:hover .icon i,
.stats-item:hover p {
  color: #ffffff;
}

.stats-item:hover:before {
  background: #73bdd3;
  inset: 0;
  border-radius: 20px;
}


/*--------------------------------------------------------------
# Charts Section
--------------------------------------------------------------*/

.charts-section {
  padding: 3.75rem 1.5rem;
  background-color: #eef8fc;
}

.chart-container {
  position: relative;
  height: 300px;
}

.chart-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  direction: rtl;
}

.chart-title {
  font-family: "Cairo", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #01212c;
  margin-bottom: 1.5rem;
  text-align: center;
}


/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/

.about-section {
  padding: 3.75rem 1.5rem;
  background-color: #d9ecf2;
  margin-bottom: 0rem !important;
}

.about-text {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #01212c;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/*--------------------------------------------------------------
# studies research Section
--------------------------------------------------------------*/
.studies-section {
  padding: 50px 20px;
}

.study-card {
  background: #fff;
  border-radius: 15px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.study-card:hover {
  transform: translateY(-5px);
  box-shadow: 15px 35px;
  cursor: pointer;
}

.study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.study-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.study-title {
  font-size: 16px;
  font-weight: 700;
  color: #01212c;
  margin-bottom: 15px;
  line-height: 1.6;
}

.icon-text {
  color: rgba(1, 33, 44, 0.5);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.icon-text i {
  color: #73bdd3;
  padding-left: 5px;
}

.no-studies {
  text-align: center;
  padding: 50px 0;
  color: #666;
}

/* ---  pagination --- */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}

.pagination-btn {
  background: #6dcce1;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #037da1;
}

.pagination-btn:disabled {
background: #ccc;
    cursor: not-allowed;
    color: #666666;
    border: 1px solid #666666;
}

.pagination-info {
  margin: 0 15px;
  color: #666;
  font-weight: 500;
}

/* ---  search-box --- */
.search-box {
  background-color: #74bdd4;
  padding: 20px;
  border-radius: 20px;
  margin-left: 20px;

}

.form-control,
.form-select {
  background-position: left .75rem center !important;
  border-radius: 50px;
  padding-right: 20px;
  color: #01212c;
  font-weight: 600;
}

.btn-search {
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  background-color: #037da1;
  color: white;
  margin-top: 16px;
  padding: 8px 0;
}

.btn-search:hover {
  color: white;
  border-radius: 50px;
  background-color: #005b8a;

}

.btn-search i {
  margin-left: 5px;
}

.line-style {
  border: 1px solid #348caf;
  margin: 0;
  padding: 0;
}

.line-style2 {
  border: 1px solid #abdce8;
  margin: 0;
  padding: 0;
}


/* PDF Modal Styles */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.pdf-modal-content {
  position: relative;
  width: 95%;
  height: 95%;
  margin: 2.5% auto;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pdf-modal-header {
  background: #037da1;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.pdf-modal-close {
  color: white;
  font-size: 24px;
  cursor: pointer;
}

#pdfViewerContainer {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdf-viewer {
  width: 100%;
  height: 100%;
  border: none;
  flex: 1;
}

.pdf-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #666;
  flex: 1;
}

.pdf-error i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ccc;
}



/*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/
.footer-section {
  background-color: rgba(3, 18, 32, 0.7);
  padding: 5px 5px;
  transition: all 0.5s;
}

.footer-container {
  width: 100%;
  max-width: none;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 40px;
}


.footer-copyright,
.footer-developed {
  color: #e8f4f8;
  font-size: 0.625rem;
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

}

.footer-logo-img {
  height: auto;
  max-height: 55px;
  width: auto;

}

.footer-sponsor-img {
  height: auto;
  max-height: 40px;
  width: auto;
}

.footer-line-img {
  height: 40px;
  padding: 0 8px;
}

.footer-sponsor-img:hover {
  filter: brightness(1.3) contrast(1.2);
  transform: scale(1.05);
}

.footer-copyright {
  margin-bottom: 5px;
  opacity: 0.95;
}

.footer-developed {
  opacity: 0.9;
  color: #b9dee9;
}


/*--------------------------------------------------------------
# comaing soon Section
--------------------------------------------------------------*/
.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  text-align: center;
  padding: 1rem 0.8rem;
  border-radius: 10px;
  margin: 0.3rem auto;
  max-width: 600px;

}

.coming-soon-title {
  font-size: 1.8rem;
  color: #73bdd3;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.coming-soon-description {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(1, 33, 44, 0.5);
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #73bdd3;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-weight: 600;

  font-size: 1rem;
  transition: all 0.3s ease;
}

.back-to-home:hover {
  color: white;
  background: #037da1;
}

.coming-soon-icon {
  font-size: 2.2rem;
  color: #73bdd3;
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}



/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    position: relative;
}

.section-title h3 {
    font-family: "Cairo", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #3fbbc0;
    position: relative;
}

.m-king {
  padding: 0 20px;
}

.card {
  border-radius: 30px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 20px;
}

.list-group {
  margin: 0;
  padding: 0;
}

.list-group .list-group-item {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  direction: rtl;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.list-group .list-group-item a {
  display: block;
  color: #535256 !important;
}

.list-group .list-group-item:hover {
  background-color: #f4f6f7 !important;
}

.list-group .list-group-item:hover a {
  color: #3fbbc0 !important;
}


.list-group .list-group-item.active {
  border-bottom: 1px solid #73bdd3;
  background-color: #73bdd3 !important;
}

.list-group .list-group-item.active a{
  color: #ffffff !important;
}

.list-group  .list-group-item.active:hover a{
  color: #ffffff !important;
}

.list-group .list-group-item a i {
  font-size: 18px;
  padding-left: 10px;
}

.list-group .list-group-item:last-child {
  border-bottom: none !important;
}

.input-group .input-group-text {
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.input-group .form-control {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
}

.btn-login {
    color: #ffffff;
    background: #73bdd3;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}
 .btn-login:hover {
    background: #037da1;
    color: #ffffff;
}


/*--------------------------------------------------------------
# mobile screen
--------------------------------------------------------------*/
@media (max-width: 575.98px) {
  .how-athar-works-content {
    width: 100%;
  }

  #footer-text {
    margin-top: 8px;
  }

  .search-box {
    margin-left: 0px;
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# 2k screen
--------------------------------------------------------------*/


@media (min-width: 2000px) {




  /*----# studies research Section-----*/
  #studiesContent {
    flex: 0 0 auto;
    width: 83.33333333%;
    /* يساوي col-10 */
  }

  #search-box-size {
    flex: 0 0 auto;
    width: 16.66666667%;
    /* يساوي col-2 */
  }



}