/* ══════════════════════════════════════════════════════════
   PAGES.CSS
   Additive styles for interior pages (About / Services / Contact).
   This file is loaded AFTER style.css on interior pages only.
   The homepage (index.html) does NOT load this file, so its
   design is completely unaffected.
   ══════════════════════════════════════════════════════════ */

/* ── INNER PAGE HERO ── */
.it-breadcrumb-area {
    padding-top: 80px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.it-breadcrumb-area::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
   background: linear-gradient(90deg, #021609c4 0%, rgba(2, 22, 9, 0.6) 45.5%, rgba(2, 22, 9, 0.6) 69%, rgba(2, 22, 9, 0.5) 100%);
    z-index: -1;
}
.it-breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.it-breadcrumb-title {
    font-size: 45px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.it-breadcrumb-list span {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.it-breadcrumb-list span a {
    color: #fff;
    text-decoration: none;
}

.it-breadcrumb-list span.dvdr {
    color: var(--it-theme-2, #f49239);
    margin: 0 8px;
}

.it-breadcrumb-list span b {
    font-weight: 500;
}

/* ── GENERIC SECTION SPACING (reuses site tokens) ── */
.section-pad { padding: 96px 0; }
.section-pad.tight { padding: 72px 0; }
.bg-off { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-white { background: var(--white); }

/* ── TICK LIST (checkmark bullet list for service detail copy) ── */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tick-list li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── PILL TAGS (Ideal Applications) ── */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 22px;
}

.pill {
  background: var(--green-light);
  color: var(--green-hover);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(61, 155, 71, 0.25);
}

/* ── SERVICE DETAIL BLOCK (alternating image/text rows) ── */
.svc-detail {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.svc-detail:last-child { border-bottom: none; }

.svc-detail .svc-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(28, 28, 46, 0.08);
  height: 380px;
}

.svc-detail .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-detail h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-detail .svc-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  text-transform: none;
  display: block;
  margin-bottom: 10px;
}

.svc-detail p.svc-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.svc-detail .svc-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  display: block;
}

/* ── WHY-US / BENEFIT GRID CARDS (6-up) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(28, 28, 46, 0.1);
  border-color: var(--green);
}

.why-card .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ── ADV CARD IMAGE (adds an image slot to the existing .adv-card) ── */
.adv-card .adv-img {
  border-radius: 10px;
  overflow: hidden;
  height: 170px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.adv-card .adv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  margin-bottom: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card .ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-card h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-info-card .ci-value {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.contact-info-card .ci-value a { transition: color .2s; }
.contact-info-card .ci-value a:hover { color: var(--green); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(28, 28, 46, 0.06);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form-card .form-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
  display: block;
}

.form-control {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,155,71,0.12);
}

textarea.form-control { resize: vertical; }

.form-row { margin-bottom: 20px; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ── LOCATIONS STRIP (Contact page) ── */
.loc-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
}

.loc-card .flag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.loc-card .places {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .page-hero { padding: 120px 0 56px; }
  .svc-detail { padding: 48px 0; }
  .contact-form-card { padding: 28px; }
  .pt-120 { padding-top: 50px !important; }
  .pb-100 { padding-bottom: 40px !important; }
  .it-breadcrumb-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
  }
  .it-breadcrumb-area {
    padding-top: 46px;
    padding-bottom: 30px;
  }
  .it-breadcrumb-list-wrap {
    display: none !important;
}
.it-sv-details__title {
    font-size: 23px !important;
    margin-bottom: 15px !important;
    font-weight: 400 !important;
    line-height: 28px;
}
footer p {
    max-width: 100%;
}
.section-pad {
    padding: 50px 0 !important;
}
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-120 {
    padding-top: 120px;
}
.mb-55 {
    margin-bottom: 55px;
}
.mb-60 {
    margin-bottom: 60px;
}
.sidebar-widget-title {
    font-size: 26px;
}
.mb-40 {
    margin-bottom: 40px;
}
.sidebar-widget {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
}
.sidebar-widget-list a {
    position: relative;
    display: block;
    padding: 15px 30px 15px 10px;
    color: #222;
    margin-bottom: 10px;
    border: 1px solid var(--green );
    transition: 0.3s;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
}
.sidebar-widget-list a.active {
    background: var(--green);
    color: #fff;
}
.sidebar-widget-list a i {
    position: absolute;
    top: 16px;
    right: 16px;
    transition: 0.3s;
}
.sidebar-widget-list a:hover {
    color: #fff;
    background-color: green;
}
.it-sv-details__contact {
    padding: 72px 26px 50px 26px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    z-index: 2;
}
.it-sv-details__contact::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #021609;
    opacity: 0.8;
    content: "";
    border-radius: 5px;
    z-index: -1;
}
.it-sv-details__contact-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: orange;
}
.it-sv-details__contact-text span {
    font-size: 28px;
    font-weight: 400;
    display: block; 
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}
.it-btn-green {
    font-size: 16px;
    padding: 12px 30px;
    display: inline-block;
    color: #fff;
    background: green;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 400;
    text-transform: capitalize;
}
.it-sv-details__main-thumb img {
    border-radius: 10px;
}
.it-sv-details__title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight:500;
}
.about-imgs {
  position: relative;
  padding: 0px 36px 70px 24px;
}
.about-imgs::before {           /* accent bar, top-left */
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 12px; height: 34%;
  background: var(--green);
  border-radius: 6px;
  z-index: 0;
}
.about-imgs::after {            /* soft circle blob, bottom-left */
  content: '';
  position: absolute;
  left: -30px; bottom: 20px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(61,155,71,0.12);
  z-index: 0;
}
.about-img-top {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(28,28,46,0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img-top img {
  width: 100%; display: block;
  object-fit: cover;
  height: 520px;
  transition: transform 0.5s ease;
}

.about-img-bottom {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 70%;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 14px 30px rgba(28,28,46,0.2);
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img-bottom img {
  width: 100%; display: block;
  object-fit: cover;
  height: 230px;
  transition: transform 0.5s ease;
}

/* Hover: subtle lift on the card + slow zoom on the photo inside */
.about-img-top:hover,
.about-img-bottom:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(28,28,46,0.22);
}
.about-img-top:hover img,
.about-img-bottom:hover img {
  transform: scale(1.06);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .about-img-top,
  .about-img-bottom,
  .about-img-top img,
  .about-img-bottom img {
    transition: none;
    animation: none;
  }
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%232B3A4A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}
.iti__country-list {
    max-width: 246px;
    overflow-x: hidden;
}