.elementor-8068 .elementor-element.elementor-element-0707c76{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d0007ba */.sunrise-gallery{
  background:#050a2f;
  padding:120px 8%;
  color:white;
}

/* Header */
.gallery-head{
  text-align:center;
  margin-bottom:70px;
}
.gallery-head span{
  color:#6DBE45;
  font-weight:700;
}
.gallery-head h2{
  font-size:48px;
  color:#FDB813;
  margin:15px 0;
}
.gallery-head p{
  color:#cdd6ff;
  font-size:18px;
}

/* Grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* Item */
.gallery-item{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,0.6);
  cursor:pointer;
  transition:0.4s;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

/* Hover Effect */
.gallery-item:hover img{
  transform:scale(1.1);
  filter:brightness(1.1);
}

.gallery-item::after{
  content:"🔍 View";
  position:absolute;
  inset:0;
  background:rgba(5,10,47,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#FDB813;
  font-weight:700;
  opacity:0;
  transition:0.4s;
}

.gallery-item:hover::after{
  opacity:1;
}

/* Mobile */
@media(max-width:1100px){
  .gallery-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:800px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:500px){
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-head h2{font-size:32px;}
}/* End custom CSS */