.top-banner{
  background-image: url('../assets/images/bg-contact-banner.png');
}
/* ================================
        Form section
   ================================ */

  .project-section {
    background-color: #F3FDF2;   /* green color */
    padding: 40px 0;
    text-align: center;
  }
  .project-title {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
  }
  .project-form {
    width: 50%;
    margin: 0 auto;
    margin-top: 50px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 70px;
  }
  .project-form h3 {
    font-size: 33px;
    margin-bottom: 50px;
  }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.form-grid input,
.form-grid select,
.project-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', 'sans';
}
.project-form textarea {
  resize: vertical;
  min-height: 80px;
}
.project-form label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
  text-align: left;
  font-size: 1rem;
  color: #2E2A26;
  }
  
  .project-form .form-checkboxes {
  width: 80%;
  margin: 33px auto 54px;
  text-align: left;
  font-size: 1rem;
  }
  
  .project-form .form-checkboxes label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  }
  
  .project-form .form-checkboxes input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  }
  

  /* ================================
     Responsive
     ================================ */
  @media (max-width: 768px) {

  .project-form {
     width: 90%; 
  }
  .form-grid {
     grid-template-columns: 1fr; 
  }
  .project-form .form-checkboxes {
  width: 100%;
  margin: 16px auto;
  margin-left: 0%;
  text-align: left;
  font-size: 0.5rem;
  }
  
  .project-form .form-checkboxes label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  }
}




/* ================================
    2nd black section
   ================================ */
.image-banner-full {
  position: relative;    /* container for absolutely-positioned content */
  display: block;
  width: 100%;
  height: 1200px;
  background-image: url('/assets/images/BG\ \(1\)-overlay.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 33px 33px 0 0;
}
.image-banner-full .banner-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.image-banner-full .connection-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

/* Container for the three boxes */
.image-banner-full .boxes {
  position: relative;
  width: 100%;
  height: 70%;
  margin: 50px 0;
}
.image-banner-full .location-box {
  position: absolute;
  width: 300px;
  height: 220px;
  background: #1C1B1A;
  border: 2px solid #4676FF;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.image-banner-full p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin: 1px;
}
.image-banner-full .location-box .phone-box {
  background: #4676FF;
  border-radius: 18px;
  padding: 9px;
  font-size: 20px;
  font-weight: 500;
}

/* individual repositioning classes */
.location-box.ireland-box {
  top: 0%;
  left: 54%;
  transform: translateX(-50%);
}
.location-box.usa-box {
  top: 53%;
  left: 28%;
  transform: translate(-50%, -50%);
}
.location-box.uae-box {
  top: 77%;
  left: 68%;
  transform: translate(-50%, -50%);
}


/* Responsive tweak */
@media (max-width: 768px) {
  .image-banner-full .connection-title { font-size: 1.8rem; }
  .image-banner-full .location-box { width: 90%; left: 50% !important; transform: translateX(-50%) !important; top: auto !important; position: relative; margin: 10px auto; }
  .image-banner-full .boxes { height: auto; display: flex; flex-direction: column; align-items: center; }
.location-box {
  position: absolute;
  width: 220px;
  height: 170px;
  background: #1C1B1A;
  border: 2px solid #4676FF;
  border-radius: 12px;
  padding: 16px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

}
/* ─────────────────────────────────────
Logo slider
───────────────────────────────────── */
.logo-body {
margin: 0;
padding: 0;
background: transparent;
display: flex;
justify-content: center;
align-items: center;
height: auto;
}

.logo-slider {
position: relative;
width: 80%;
overflow: hidden;
padding: 20px 0;
background: transparent;
}

.slider-track {
display: flex;
width: calc(200px * 14);
animation: scroll 50s linear infinite;
/* fade out edges */
-webkit-mask-image: linear-gradient(
to right,
transparent 0%,
black 15%,
black 85%,
transparent 100%
);
mask-image: linear-gradient(
to right,
transparent 0%,
black 15%,
black 85%,
transparent 100%
);
mask-mode: alpha;
}

.logo-slide {
flex: 0 0 200px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 10px;
}

.logo-slide img {
max-height: 60px;
object-fit: contain;
display: block;
}

@keyframes scroll {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

.logo-slider:hover .slider-track {
animation-play-state: paused;
}
