/* BRAMY GROUP — Projects section (exact layout) */
.bramy-projects{
  width:100%;
  padding:75px 5% 80px;
  background-color:#f7f9fc;
  background-image:var(--bramy-projects-bg);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  font-family:"Heebo",Arial,sans-serif;
  color:#0B2347;
  direction:rtl;
  overflow-x:hidden;
}

.bramy-projects *{
  box-sizing:border-box;
}

.bramy-projects-header{
  max-width:1450px;
  margin:0 auto 40px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.bramy-projects-title{
  text-align:right;
}

.bramy-projects-number{
  font-size:13px;
  color:#9aa5b3;
  margin-bottom:7px;
  letter-spacing:1px;
}

.bramy-projects-number:before{
  content:"";
  display:inline-block;
  width:38px;
  height:1px;
  background:#b7c0cb;
  vertical-align:middle;
  margin-left:10px;
}

.bramy-projects h2{
  margin:0;
  font-size:46px;
  line-height:1.05;
  font-weight:800;
  color:#0B2347;
}

.bramy-projects-subtitle{
  margin-top:10px;
  font-size:17px;
  color:#64748B;
}

.bramy-projects-link{
  color:#0B2347;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}

.bramy-projects-link:hover{
  color:#0B2347;
  opacity:.75;
}

.bramy-projects-grid{
  max-width:1450px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:28px;
}

.bramy-project-card{
  background:#fff;
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid #e4e9ef;
  text-decoration:none;
  color:inherit;
  display:block;
}

.bramy-project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(11,35,71,.13);
  color:inherit;
}

.bramy-project-image{
  width:100%;
  height:230px;
  overflow:hidden;
  background:#e8eef5;
}

.bramy-project-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}

.bramy-project-card:hover img{
  transform:scale(1.04);
}

.bramy-project-content{
  padding:17px 5px 22px;
  text-align:right;
}

.bramy-project-title{
  margin:0;
  font-size:17px;
  font-weight:700;
  color:#0B2347;
}

.bramy-project-location{
  margin-top:3px;
  font-size:14px;
  color:#64748B;
}

@media(max-width:1100px){
  .bramy-projects-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .bramy-projects{
    padding:55px 20px;
  }

  .bramy-projects-header{
    display:block;
  }

  .bramy-projects h2{
    font-size:34px;
  }

  .bramy-projects-link{
    display:block;
    margin-top:18px;
  }

  .bramy-projects-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .bramy-project-image{
    height:230px;
  }

  .bramy-project-card:hover{
    transform:none;
  }
}

@media (prefers-reduced-motion:reduce){
  .bramy-project-card,
  .bramy-project-image img{
    transition:none;
  }
}
