
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body{
     font-family: "Manrope", sans-serif;
}

/* bg */
.bg-2{
    background-color: #121212;
}

.border-custom {
    border: 1px solid #444;
    border-radius: 10px; /* ← خفيف */
    transition: all 0.4s ease-in-out;
}


.border-custom:hover{
    border-color: var(--bs-blue);
}
/* Navbar */

.navbar {
    --bs-navbar-nav-link-padding-x: 1.2rem;
}

/* btns */

.btn {
    border-radius: 0;
    padding: 10px  20px;

}

/* service */
.icon {
    width: 60px;
    height: 60px;
    background-color: #555;
    display: grid;
    align-content: center;
    text-align: center;
    font-size: 32px;
    color: white;
    transition: all 0.4s ease-in-out;
    border-radius: 12px; /* حواف ناعمة بس مش دائرية */
}

.icon:hover {
    background-color: var(--bs-blue);
}

.service:hover .icon {
    background-color: var(--bs-blue);
}

/*  swiper */

.swiper-pagination-bullet {
     background-color: white;
}

/*  project */
.project {
    overflow: hidden;
    position: relative;
}

.project .overlay {
    padding: 32px;
    position: absolute;
    bottom: 0;
    left:0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    transform: translateY(60px);
}

.project:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* footer  */
footer ul {
    padding: 0;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    color: var --bs-body;
}

/* scroll to top  */
html {
  scroll-behavior: smooth !important;
}


.scroll-to-top {
  text-decoration: none;
  border-radius: 100px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  background-color: #0d6efd;
  color: white;
  padding: 10px 14px;
  font-size: 20px;
}

.scroll-to-top:hover {
  background-color: white;
  color: #0d6efd;
  transition: 0.3s;
}
 

/*   whats app */
.whatsapp-btn {
    transition: all 0.3s ease;
  }

  .whatsapp-btn:hover {
    background-color: #fff !important;
    color: #0d6efd !important; /* Bootstrap primary color */
    border-color: #0d6efd !important;
  }

  .whatsapp-btn:hover i {
    color: #0d6efd !important;
  }


  /*  flags */

  .flag-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.flag-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}

/* طبقة الشفافية */
.flag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 110, 253, 0.3); /* لون أزرق هادي بشفافية */
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flag-wrapper:hover .flag-overlay {
  opacity: 1;
}

/*  SLADER OFFER  */
.offer-banner {
  background-color: #111433;
  position: sticky;
  top: 0;
  z-index: 1050;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.highlight-free {
  color: #ffc107; /* لون أصفر ملفت */
  font-size: 22px;
  font-weight: bold;
}
