﻿/* Place Your Custom Styles Here */
#navigation {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  text-align: center;      /* Ensures text inside <a> is centered */
  width: 100%;             /* Make nav full width */
}

#navigation .nav-link {
  padding: 10px 15px;      /* Add spacing for balance */
}
.nav-link:hover {
  background-color: #b67a14; /* Light background on hover */
  transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition */
  border-radius: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.contact-btn {
  white-space: nowrap; 
  font-size: 0.9rem;  /* Prevent text from breaking into new lines */
  width: auto !important; /* Override w-100 and auto-fit to content */
}
.contact-btn {
  color:white;
  white-space: nowrap;
  background-color: #b67a14 !important;
  border-radius: 30px;
  font-size: 0.9rem !important;
  padding-left: 20px;
  padding-right: 20px;

}
.ln-social-icons ul {
  list-style: none;     /* Remove numbers/bullets */
}
.homeimg 
{
   width: 30%;
}
.parabig
{
  font-family: 'arabic';
    font-size: 3.2rem;
    line-height: 1.6;
}
/* Make the image container a positioning context */
.media-container {
  position: relative;
  overflow: hidden;
}

/* Make sure the background fills */
.bg-image-holder {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.media-container img {
  width: 100%;
  height: auto;
  visibility: hidden; /* keeps layout if you need fallback */
}

/* Overlay with 3 rows spaced using flex */
.overlay-title {
  position: absolute;
  inset: 0;                 /* cover full image */
  display: flex;
  flex-direction: column;   /* 3 rows */
  justify-content: space-evenly; /* even vertical spacing */
  align-items: center;      /* center each line */
  padding: 16px;
  pointer-events: none;     /* clicks go through to the image link */
}

/* Text style on top of image */
.overlay-title span {
  font-family: 'arabiclight';
  /* font-weight: 700; */
  font-size: clamp(20px, 2.4vw, 22px);  /* responsive size */
  color: #fff;
  letter-spacing: 1px;
  text-align: center;

  /* Improve readability on bright images */
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
/* RTL support (if using Arabic text) */
[dir="rtl"] .overlay-title span {
  letter-spacing: 0; /* Arabic usually doesn’t need extra spacing */
}
.blur-box{
  
       
  padding: 2rem 3rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.25); /* must have some transparency */
  color: #eee;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(78, 3, 3, 0.926);

  
}

.full-screen-bg {
  display: flex;                      /* flexbox layout */
  align-items: center;                /* vertical centering */
  justify-content: center;            /* horizontal centering */
  height: 100vh;                      /* full viewport height */
  width: 100%;                        /* full width */
}

/* optional dark overlay */
.full-screen-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.5); */
}

.foursection
{
  width: 60%;
  text-align: justify;
  margin: 0 auto;
  
}



@media (max-width: 768px) {
    .homeimg 
{
   width: 50%;
}
.contact-form
{
  padding: 50px 10px;
}
}
.bod 
{
  width: 90%;
}
.executiveTeam
{
  font-size: 17px;
  padding-top:30px;
  text-align:center;
  color: #c98600;
  line-height: 4px;
}
.executiveTeamtyu
{
  font-size: 17px;
  padding-top:30px;
  text-align:center;
  color: #c98600;
  line-height: 24px;
}
.executiveJobTitle
{
  text-align: center;
  color: #ffffff;
  font-weight: lighter;
}
.exe-team
{
  width: 60%;
}

.backdrop-blur{
      background: rgba(0, 0, 0, 0.15);   /* lighter black tint */
      backdrop-filter: blur(12px);            /* frosted blur */
      -webkit-backdrop-filter: blur(12px);    /* Safari */
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
      padding: 2rem 3rem;
      color: #fff;
      text-align: center;
}

.blurblackbg
{
  background: linear-gradient(
        rgba(255, 255, 255, 0.1),   /* soft white tint */
        rgba(0, 0, 0, 0.2)          /* soft black tint */
      );
      backdrop-filter: blur(14px);           /* frosted blur */
      -webkit-backdrop-filter: blur(14px);   /* Safari */
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
      padding: 2rem 3rem;
      color: #fff;
      text-align: center;

}


/* clickable headings */
.tab-h5
{
   cursor:pointer; margin:0; 
  }

/* panels visibility */
.tab-panel
{
   display:none; 
  }
.tab-panel.active
{
   display:flex;
   } /* keep Bootstrap row/cols layout */

/* optional: active heading style */
.headings .tab-h5.active{
  color:#b67a14;
  /* text-decoration: underline; */
  text-underline-offset: 4px;
}

/* optional: fade animation */
.tab-panel{ opacity:0; transition: opacity .25s ease; }
.tab-panel.active{ opacity:1; }


.patners-logo
{
  width: 100%;
  transition: transform 0.4s ease-in-out; /* smooth zoom */
}
.patners-logo:hover {
  transform: scale(1.3);  /* zoom in slightly */
}


/* smooth movement for all bottom nav links */
#navigation-bottom .nav-link{
  transition: transform .25s ease, font-weight .25s ease, color .25s ease;
}

/* active state: bold + move up a few pixels */
#navigation-bottom .nav-link.is-active{
  font-weight: 700;
  transform: translateY(-6px);   /* tweak: -4px..-8px */
  color: #ffffff;                /* optional highlight */
}

/* optional: slightly dim inactive items */
#navigation-bottom .nav-link{ opacity: .8; }
#navigation-bottom .nav-link.is-active{ opacity: 1; }

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  #navigation-bottom .nav-link{ transition: none; }
}

/* ===== Desktop (≥1200px): show the pill with a single border ===== */
@media (min-width: 1200px) {
  #navbarCollapse{
    display:flex !important;          /* center the UL only on desktop   */
    justify-content:center;
  }
  .site-navbar .navbar-nav{           /* don't stretch */
    flex:0 0 auto !important;
  }
  #navigation{
    display:inline-flex;
    flex:0 0 auto !important;
    width:auto !important;
    max-width:max-content;
    padding:10px 20px;                /* ~20px before the first link     */
    border:1px solid rgba(255,255,255,.7);
    border-radius:40px;
  }
  #navigation .nav-item{ margin:0 18px; }
  #navigation .nav-link{ line-height:1.5; }
}

/* ===== Mobile/Tablet (<1200px): revert to normal collapsed navbar ===== */
@media (max-width: 1199.98px) {
  #navigation{ border:0; padding:0; } /* no pill styling on mobile */
  /* no display override on #navbarCollapse so Bootstrap can hide it */
}

#navigation-bottom .nav-link:hover,
#navigation-bottom .nav-link:focus,
#navigation-bottom .nav-link:active {
  color: white !important;         /* keep the same color */
  background: transparent !important; /* remove background change */
  text-decoration: none !important;   /* no underline */
}


.site-navbar .navbar-nav#navigation .nav-item .nav-link.is-current,
.site-navbar .navbar-nav#navigation .nav-item .nav-link.active {
  background-color: #c98600 !important; /* orange pill */
  color: #fff !important;               /* white text */
  border-radius: 20px;
  padding: 10px 14px;     
  text-decoration: none !important;                   /* keep spacing nice */
}



.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
}

.counter-box {
  padding: 20px;
  border-radius: 10px;
}

.counter-box p{
  color: black;
}
.counter::after {
  /* content: attr(data-suffix); */
  margin-right: 4px;
  font-size: 0.9em;
}


.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  display: block;
  margin-bottom: 10px;
}


.two-columns {
  column-count: 2;
  column-gap: 40px;
  text-align: justify;
}

@media (max-width: 991px) {
  .two-columns {
    column-count: 1;
  }
}


.onewordheading
{
  width: 20%;
}

input::placeholder
  {
    color: white !important;
    font-size: 12px;
  }

  textarea::placeholder
  {
    color: white !important;
    font-size: 12px;
  }

  .tranparent{
    color: transparent !important;
  }


  .bodtitleimage
  {
    width: 50%;
    display: flex;
            justify-content: center;
            align-items: center;
  }

  .bodtitlesecondimage
  {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .plus
  {
    font-size: 15px;
  }

.icon-5x {
  padding-left: 20px;  /* adjust as needed */
  padding-right: 20px;
}


.newsHeading
{
  font-size: 34px;
  font-family: 'arabicLight';
}
.hover-box {
  position: relative;
  display: inline-block;
  padding: 20px;
  /* border-radius: 15px; */
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Frosted glass effect on hover */
.hover-box:hover {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

/* Paragraph hidden by default */
.hover-box p {
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Show paragraph smoothly on hover */
.hover-box:hover p {
  max-height: 200px; /* adjust for your content */
  opacity: 1;
  transform: translateY(0);
}


.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;   /* removes inline gaps */
}


.ln-section[data-anchor="metrics"]{
  padding-top:0 !important;
  padding-bottom:0 !important;
}


@media (max-width: 991.98px) {
  .ln-section[data-anchor="initiatives-2"] .site-navbar {
    background-color: transparent !important;
    box-shadow: none !important;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}



/* ===== Kill top/bottom white bands on mobile for initiatives-2, news, contact ===== */
@media (max-width: 991.98px) {

  /* 1) Break boxed layout to full width */
  .layout-boxed .ln-fullpage {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  /* 2) Remove vertical spacing for the three sections */
  .ln-section[data-anchor="initiatives-2"],
  .ln-section[data-anchor="news"],
  .ln-section[data-anchor="contact"] {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto; /* let content define height */
  }

  /* 3) Remove extra padding inside containers */
  .ln-section[data-anchor="initiatives-2"] .container,
  .ln-section[data-anchor="news"] .container,
  .ln-section[data-anchor="contact"] .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .ln-section[data-anchor="initiatives-2"] .row:first-child,
  .ln-section[data-anchor="news"] .row:first-child,
  .ln-section[data-anchor="contact"] .row:first-child {
    margin-top: 0 !important;
  }
  .ln-section[data-anchor="initiatives-2"] .row:last-child,
  .ln-section[data-anchor="news"] .row:last-child,
  .ln-section[data-anchor="contact"] .row:last-child {
    margin-bottom: 0 !important;
  }

  /* 4) Backgrounds edge-to-edge */
  .ln-section[data-anchor="initiatives-2"] .overlay-advanced,
  .ln-section[data-anchor="initiatives-2"] .overlay-advanced .overlay-inner,
  .ln-section[data-anchor="news"] .overlay-advanced,
  .ln-section[data-anchor="news"] .overlay-advanced .overlay-inner,
  .ln-section[data-anchor="contact"] .overlay-advanced,
  .ln-section[data-anchor="contact"] .overlay-advanced .overlay-inner {
    position: absolute; inset: 0; pointer-events: none;
  }

  .ln-section[data-anchor="initiatives-2"] .overlay-advanced .bg-image-holder img,
  .ln-section[data-anchor="news"] .overlay-advanced .bg-image-holder img,
  .ln-section[data-anchor="contact"] .overlay-advanced .bg-image-holder img {
    width: 100%; height: 100%; object-fit: cover;
  }

  /* 5) Remove any leftover navbar spacing */
  body { padding-top: 0 !important; }
}

/* Mobile only */
@media (max-width: 991px) {
  /* Hide navbar everywhere */
  .site-navbar {
    display: none !important;
  }

  /* Show navbar ONLY when initiatives-2 section is active */
  body.fp-viewing-home .site-navbar {
    display: flex !important; /* or block depending on your navbar layout */
  }
 .mobilepaddingzero
 {
  padding-left: 0px;
  padding-right: 0px;
 }
 .newsHeading
 {
  font-size: 25px;
 }
 .homeimg
 {
  padding-top: 30px;
 }
}





