:root{
    --blue-color: #004e99;
    --orange-color: #ec7128;
    --shadow-color: rgba(0, 0, 0, 0.2);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;
    font-family:'poppins';
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    width: 8px;  
}
::-webkit-scrollbar-track{
    background-color:#f6f6f6;
}
::-webkit-scrollbar-thumb{
    background-color: var(--orange-color);
    border-radius: 20px;
}
.main-btn{
    width: 20rem;
    padding: 10px;
    border-radius: 10rem;
    border: none;
    background-color: var(--orange-color);
    color: #fff;
}
.btn-info{
    background-color: #ec7128;
    color: #fff;
    border: none;
}
.btn-info:hover{
     background-color: #004e99;
     color: #fff;
}
.highlight {
  color: #ea742d;
}
.btn-call {
    background-color: #ea742d;
    color: white;
    border-radius: 2rem;
}
.btn-call:hover {
    background-color: #004e99;
    color: white;
}
.text-justify {
  text-align: justify !important;
}

/* Header Style */   
.nav-item a{
    font-weight: 400;
    color: var(--blue-color);
    font-size: 15px;
}
.nav-item a:hover{
    color: var(--orange-color);
}
.dropdown-menu .dropdown-item{
    color: #004e99;
}
.navbar-nav .dropdown:hover > .dropdown-menu { 
    display: block;
    margin-top: 0;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23004e99' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Footer Style */
.footer{
    width: 100%;
    background-color: var(--blue-color);
    padding-top: 40px
}
.footer .links a{
    text-decoration: none;
    color: #fff;
}
.contact a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    background-color: var(--orange-color);
    border-radius: 50%;
}
.copyRight {
    text-align: center;
    width: 100%; 
    padding: 9px 0;
}



/*  Home style*/
.hero-carousel-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.carousel-bg {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(158, 165, 232, 0.45); 
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navbar {
  background: transparent !important;
  z-index: 3;
}

/* Services Style */
.service-box {
  border-radius: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-box  h5{
    color: #ec7128;
}
.service-box p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1.25rem;
}
.learn-more-link {
  align-self: center;
  white-space: nowrap;
  font-weight: 600;
  color: #004f98;
  text-decoration: none;
}
.learn-more-link:hover {
  text-decoration: underline;
}
.services-hero , .about-hero {
  height: 40vh;
  overflow: hidden;
  text-align: center;
  position: relative;
}
#gridCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #fff /* خلفية داكنة لتوضيح الشبكة */
}
.services-hero .content {
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
}
.service-title , .service-desc{
    color: #004e99;
}

/* Brands Style */
.parteners{
    text-align: justify;
}

/* About style*/
.about-hero {
  background-image: url(images/about.webp);
  background-size: cover;
  background-repeat: no-repeat;  
  background-position: center;   
  height: 60vh;
}
.about-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(158, 165, 232, 0.45);
}
.about-content {
      position: relative;
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
       text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .service-box {
    text-align: center;
    padding: 1.5rem;
  }

  .learn-more-link {
    font-size: 0.95rem;
  }

  .service-box h5 {
    font-size: 1.1rem;
  }

  .service-box p {
    font-size: 0.95rem;
  }
}





    