.wip-service-icon {
  width: 50px;
  height: 50px;
  fill: #0dcaf0;
  /* HIBL brand green */
  display: inline-block;
  margin: auto;
  transition: 0.3s ease;
}

.service-item:hover .wip-service-icon {
  fill: #f15a24;
  /* hover orange accent */
  transform: scale(1.08);
}

#fi_11442821 {
  width: 50px;
  height: 50px;
  fill: #0dcaf0;
  /* HIBL brand green */
  display: inline-block;
  margin: auto;
  transition: 0.3s ease;
}








/*--------------------------------------------------------------
# Video Section 
--------------------------------------------------------------*/

/* Root */
#os-srv {
  --bg: #f7fbf8;
  --card: #fff;
  --border: #e6efe8;
  --text: #083826;
  --muted: #50635a;
  --accent: #007336;
  font-family: Inter, system-ui;
  padding: 50px 0px;
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
}


/* Aside (video + small info) */
.wip-hero aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wip-hero .video {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(2, 22, 14, 0.05);
}

.wip-hero .video iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: 0;
}

.wip-hero .info {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(3, 122, 63, 0.04);
  background: #fff;
  box-shadow: 0 6px 18px rgba(3, 122, 63, 0.04);
}

.wip-hero .logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--g1), var(--g2));
  color: #fff;
  font-weight: 800;
}

/* Responsive adjustments */
@media (max-width:1000px) {
  .wip-hero .grid {
    grid-template-columns: 1fr 320px;
  }

  .wip-hero .video iframe {
    height: 200px;
  }
}

@media (max-width:760px) {
  .wip-hero .grid {
    grid-template-columns: 1fr;
  }

  .wip-hero .video iframe {
    height: 280px;
  }

  .wip-hero h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Marquee Text + Image Section Section 
--------------------------------------------------------------*/

.wip-marquee {
  background: #f8f9fb;
  overflow: hidden;
  padding: 25px 0;
}

.wip-marquee-track {
  display: flex;
  width: max-content;
  animation: wip-marquee-scroll 10s linear infinite;
}

.wip-marquee-track:hover {
  animation-play-state: paused;
}

.wip-marquee-group {
  display: flex;
}

.wip-marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  white-space: nowrap;
}

.wip-marquee-item img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
}

.wip-marquee-text {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

@keyframes wip-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# Marquee Text + Image Section Section for Clients
--------------------------------------------------------------*/
.wip-marquee-item2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  white-space: nowrap;
  background: #fff;
  margin: 10px;
}

.wip-marquee-item2 img {
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.wip-marquee-track2 {
  display: flex;
  width: max-content;
  animation: wip-marquee-scroll2 10s linear infinite;
}

.wip-marquee-track2:hover {
  animation-play-state: paused;
}

@keyframes wip-marquee-scroll2 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# CTA Section Section
--------------------------------------------------------------*/

.wip-cta-form {
  position: relative;
  background: url('../img/services.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}

.wip-cta-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1bbd36b0;
  background-image: linear-gradient(45deg, #a9a9a9, transparent);

}

.wip-cta-form-inner {
  position: relative;
  z-index: 2;
}

.wip-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.wip-cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  color: #000000;

}

.wip-cta-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;

}

.wip-cta-form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.wip-cta-form-box:hover {
  transform: scale(1.05);
}

.wip-cta-form-box img {
  width: 100%;
}


.wip-cta-form-box h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.wip-cta-form-box input,
.wip-cta-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.wip-cta-form-box button {
  width: 100%;
  padding: 12px;
  background: #00c853;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.wip-cta-form-box button:hover {
  background: #00a846;
}

/* responsive */
@media (max-width: 768px) {
  .wip-cta-grid {
    grid-template-columns: 1fr;
  }

  .wip-cta-content h2 {
    font-size: 28px;
  }
}


.image-box img {
  width: 85%;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;

}

.image-box img:hover {
  transform: scale(1.05);
  border-radius: 10px;

}

.image-box p {
  text-align: justify;
}

.containerimgbox {
  justify-content: center;
}

.our-content {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  box-shadow: -15px 15px 30px #e5e5e5d9;
  background-color: #fff;
  margin-right: 20px;
}

.our-content p {
  text-align: justify;
}


/*--------------------------------------------------------------
# FULLY RESPONSIVE TABLE
--------------------------------------------------------------*/


.wip-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.wip-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.wip-table th,
.wip-table td {
  padding: 14px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.wip-table th {
  background: #e6e6e6;
  font-weight: 600;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {

  .wip-table,
  .wip-table thead,
  .wip-table tbody,
  .wip-table th,
  .wip-table td,
  .wip-table tr {
    display: block;
    width: 100%;
  }

  .wip-table thead {
    display: none;
  }

  .wip-table tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    background: #fafafa;
  }

  .wip-table td {
    border: none;
    padding: 8px 0;
    position: relative;
  }

  .wip-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #555;
  }
}


/*--------------------------------------------------------------
# FULLY RESPONSIVE PHOTO GALLERY + LIGHTBOX
--------------------------------------------------------------*/

.wip-gallery {}

.wip-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.wip-gallery-grid img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.wip-gallery-grid img:hover {
  transform: scale(1.05);
}

/* ===== Lightbox ===== */
.wip-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 9999;
}

.wip-lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.wip-lightbox:target {
  opacity: 1;
  pointer-events: auto;
}

.wip-lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Contact us page 
--------------------------------------------------------------*/

.wip-contact {
  padding: 80px 0;
  background: linear-gradient(180deg, #f4f8f6, #ffffff);
}

.wip-contact h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
}

.wip-contact h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0a7a43;
  display: block;
  margin-top: 12px;
}

.wip-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* ===== CARD ===== */
.wip-contact-card {
  position: relative;
  background: #fff;
  padding: 28px 26px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* animated accent bar */
.wip-contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 0%;
  background: linear-gradient(180deg, #00c853, #0a7a43);
  transition: height 0.5s ease;
}

.wip-contact-card:hover::before {
  height: 100%;
}

.wip-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

/* ===== CONTENT ===== */
.wip-city {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background-color: #007336;
  padding: 10px 20px;
  border-radius: 80px;
  text-align: center;
  margin-bottom: 30px;
  transition: height 0.5s ease;
}

.wip-contact-card:hover .wip-city {
  background-color: #f58220;
}

.wip-office-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
}

.wip-info {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
}

.wip-info i {
  padding: 5px;
  color: #007336;
}

/* subtle hover text animation */
.wip-contact-card:hover .wip-info {
  color: #222;
  transition: color 0.4s ease;
}

/* mobile */
@media (max-width: 768px) {
  .wip-contact h2 {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# POS Registration form 
--------------------------------------------------------------*/

.wip-pos-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* section */
.wip-form-section {
  margin-bottom: 40px;
}

.wip-form-section h3 {
  font-size: 22px;
  color: #0a7a43;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}

/* grid */
.wip-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 25px;
}

.wip-form-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 25px;
  padding-top: 20px;
}

/* field */
.wip-field {
  display: flex;
  flex-direction: column;
}

.wip-field label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.wip-field input,
.wip-field select,
.wip-field textarea {
  padding: 11px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.wip-field input[type="file"] {
  padding: 6px;
}

/* checkbox row */
.wip-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* submit */
.wip-submit {
  margin-top: 30px;
}

.wip-submit button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background: #f15a24;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.wip-submit button:hover {
  background: #d94e1f;
}

/* responsive */
@media (max-width: 1024px) {
  .wip-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wip-pos-form {
    padding: 25px;
  }

  .wip-form-grid {
    grid-template-columns: 1fr;
  }
}



/*--------------------------------------------------------------
# POS Login form 
--------------------------------------------------------------*/


.wip-login {
  padding: 80px 0;
  background: #f4f6f5;
  font-family: Arial, sans-serif;
}

.wip-login-box {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid #cfcfcf;
}

/* LEFT STRIP */
.wip-login-side {
  background: #0a7a43;
  color: #ffffff;
  padding: 45px 30px;
}

.wip-login-side h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.wip-login-side p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.wip-login-side ul {
  padding-left: 18px;
  margin: 0px 0px 30px -20px;
  list-style: none;
}

.wip-login-side li {
  font-size: 14px;
  margin-bottom: 10px;
}

.wip-register-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #ffffff;
  color: #0a7a43;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

/* RIGHT FORM */
.wip-login-form {
  padding: 45px 40px;
}

.wip-login-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #000;
}

.wip-login-row {
  margin-bottom: 18px;
}

.wip-login-row label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}

.wip-login-row input,
.wip-login-row select {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #999;
  font-size: 14px;
}

.wip-login-extra {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 20px;
}

.wip-login-extra a {
  color: #0a7a43;
  text-decoration: none;
}

.wip-login-submit {
  width: 100%;
  padding: 12px;
  background: #f15a24;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wip-login-box {
    grid-template-columns: 1fr;
  }

  .wip-login-side {
    text-align: center;
  }
}



/*--------------------------------------------------------------
# ADS Form
--------------------------------------------------------------*/

.wip-ADS-box {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  display: grid;
  grid-template-columns: 340px 1fr;
  border: 1px solid #cfcfcf;
}

.ADS-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ADS-form-row {
  width: 48%;
}

.ADS-form-row2 {
  width: 32%;
}

.wip-ADS-submit {
  width: 100%;
  padding: 12px;
  background: #f15a24;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}