/* ===== TopCertifier Ã¢â‚¬â€ Shieldbyte-style Footer ===== */
:root{
  --tc-primary:#ff6b5b;          /* TopCertifier orange */
  --tc-primary-600:#f35a49;
  --tc-bg-1:#0f1b2c;             /* deep navy */
  --tc-bg-2:#0b1422;             /* darker navy */
  --tc-on:#ffffff;
  --tc-muted:#cfd6de;
  --tc-line:rgba(255,255,255,.12);
}

.tc-footer{
  position:relative;
  color:var(--tc-on);
  background:
    radial-gradient(60% 140% at -10% 110%, rgba(255,107,91,.28) 0%, rgba(255,107,91,0) 55%),
    linear-gradient(135deg, var(--tc-bg-1) 0%, var(--tc-bg-2) 70%);
  padding:64px 0 44px;
  overflow:hidden;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* subtle diagonal beams */
.tc-footer::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(60deg, rgba(255,255,255,.06) 0%, transparent 12%) 0 0/240px 240px,
    linear-gradient(60deg, rgba(255,255,255,.05) 0%, transparent 14%) 80px -60px/260px 260px;
  pointer-events:none;
  opacity:.25;
}

.tc-footer .grid{
  position:relative; z-index:1;
  display:grid; gap:36px;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr; /* L, L, Mid, Right */
}

.tc-footer h5 + ul{ margin-top:8px; }

.tc-footer ul{ margin:0; padding:0; list-style:none; }
.tc-footer li{ margin:10px 0; }
.tc-footer a, .tc-footer p{
  color:var(--tc-muted);  line-height:1.55;
  text-decoration:none; transition:color .2s ease;
}
.tc-footer a:hover{ color:var(--tc-primary); }

/* split columns (left two each have two groups) */
.tc-footer .stack{ display:grid; gap:28px; }
.tc-footer .stack .group + .group{ margin-top:0; }

.tc-footer .contact li{ display:flex; gap:12px; align-items:flex-start; }
.tc-footer .contact i{ color:var(--tc-primary); margin-top:4px; }

/* Socials */
.tc-footer .socials{
  display:flex; gap:10px; margin:8px 0 18px;
}
.tc-footer .socials a{
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%; background:#162236; border:1px solid var(--tc-line); color:#fff;
  transition:background .2s ease, transform .08s ease;
}
.tc-footer .socials a:hover{ background:var(--tc-primary); transform:translateY(-1px); }

/* Newsletter */
.tc-footer .newsletter label{ display:block; margin:16px 0 8px; color:var(--tc-on); font-weight:700; }
.tc-footer .newsletter .row{
  display:flex; gap:0;
}
.tc-footer .newsletter input{
  flex:1; min-width:0;
  background:#121e32; color:#fff; border:1px solid #203049; border-right:none;
  padding:10px 14px; border-radius:8px 0 0 8px; outline:none;
}
.tc-footer .newsletter button{
  background:var(--tc-primary); color:#fff; border:none;
  padding:10px 16px; border-radius:0 8px 8px 0; font-weight:700; cursor:pointer;
  transition:background .2s ease;
}
.tc-footer .newsletter button:hover{ background:var(--tc-primary-600); }

/* Divider icons/badges (optional) */
.fot-badges{
  display:flex; gap:28px; align-items:center; flex-wrap:wrap;
  margin-top:28px; opacity:.95;
  justify-content: center;
}
.fot-badges img{ height:56px; object-fit:contain; filter:drop-shadow(0 2px 8px rgba(0,0,0,.25)); }

/* Bottom bar */
.tc-footbar{
  background:#0a0f18; border-top:1px solid var(--tc-line); color:var(--tc-muted);
  text-align:center; padding:16px 0 8px;
}
.tc-footbar .container{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:center; }
.tc-footbar a{ color:var(--tc-primary); text-decoration:none; }
.tc-footbar a:hover{ text-decoration:underline; }

@media (max-width:1100px){ .tc-footer .grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:600px){
  .tc-footer{ padding:44px 0 30px; }
  .tc-footer .grid{ grid-template-columns: 1fr; }
}
/* ==================footer-bottom=========== */

.footer-bottom {
  background:#0a0f18;
  border-top:1px solid rgba(255,255,255,.12);
  color:#cfd6de;
  text-align:center;
  padding:16px 0 12px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom .copyright {
  display: flex;
  align-items: center;
  color: white;
}

.footer-col h4 {
  font-size: 20px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ff6969;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.job-card {
border-radius: 12px;
margin: 50px auto;
padding: 35px;
border-top: 6px solid #ff6969;
transition: all 0.3s ease-in-out;
}

.job-title {
font-size: 26px;
font-weight: 700;
color: #222;
}


.job-subtitle {
font-size: 14px;
color: #777;
}


.apply-btn {
background-color: #ff6969;
color: #fff;
border: none;
border-radius: 6px;
padding: 10px 25px;
font-weight: 600;
transition: 0.3s;
}


.apply-btn:hover {
background-color: #e65a00;
}


.info-box {
background: #f9fafb;
border: 1px solid #e3e6ea;
border-radius: 8px;
padding: 10px 15px;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}


.info-icon {
color: #ff6969;
font-size: 18px;
}

.section h5 {
border-left: 4px solid #ff6969;
padding-left: 10px;
font-weight: 600;
font-size: 1.8rem;
}
.section p {
margin-top: 1rem;
font-size: 16px;
}
.contact-section {
  padding: 60px 0 0px 0;
}

/* ---- LEFT HEADING WITH LINE ON RIGHT ---- */
.contact-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  margin-left: 5rem;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
}

.heading-line {
  width: 4px;
  height: 70px;
  background-color: #ff6b35;
  border-radius: 3px;
  margin-top: 5px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
}

/* Heading text */
.contact-header h2 {
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* ---- CONTACT CARDS ---- */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 3s ease forwards;
  margin-right: 4rem;
}
.contact-card p{
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    word-break: break-word;
    white-space: nowrap;
}
/* Sequential animation delays */
.contact-card:nth-child(1) { animation-delay: 0.2s; }
.contact-card:nth-child(2) { animation-delay: 0.4s; }
.contact-card:nth-child(3) { animation-delay: 0.6s; }

/* Contact icons */
.contact-icon {
  background-color: #ff6969;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

/* ---- ANIMATIONS ---- */
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive Design ---- */

/* ðŸ’» Medium Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .contact-header {
    margin-left: 3rem;
  }

  .contact-card {
    margin-right: 2rem;
  }

  .contact-header h2 {
    font-size: 24px;
  }
}

/* ðŸ“± Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .contact-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0;
  }

  .heading-line {
    width: 60px;
    height: 3px;
    margin: 10px 0;
    order: unset;
  }

  .contact-card {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-card p {
    font-size: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* ðŸ“± Small Mobile Devices (max-width: 425px) */
@media (max-width: 425px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0;
  }

  .contact-header h2 {
    font-size: 20px;
  }

  .contact-card {
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

    .clients-geo{
  position:relative;
  background: var(--bg);
  padding: 64px 0 56px;
  overflow:hidden;
}
.clients-geo::before,
.clients-geo::after{
  content:"";
  position:absolute; left:0; right:0; height:120px; z-index:0;
}
.clients-geo::before{ top:0; opacity:.5 }
.clients-geo::after{ bottom:0; transform:scaleY(-1); opacity:.35 }

.cg-wrap{ width:min(1100px,92vw); margin:0 auto; position:relative; z-index:1; }

/* ===== Header ===== */
.cg-head{
  text-align:center;
  max-width: 880px;
  margin: 0 auto 28px;
}
.cg-pill{
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:1.1rem; letter-spacing:.18em; text-transform:uppercase;
  color:#ff6969; background:#eef2fb; padding:.4rem .7rem; border-radius:999px;
  font-weight:700;
}
.cg-pill i{ width:.45rem; height:.45rem; border-radius:999px; background:var(--accent); box-shadow:0 0 0 4px rgba(255,122,40,.18) }

.cg-head h2{
margin: .8rem 0 .7rem;
    font-size: clamp(1.4rem, 1.6rem + .8vw, 2rem);
    line-height: 1.18;
    color: #212529;
    font-weight: 500;
    letter-spacing: .01em;
}
.cg-head p{
  color:var(--muted);
  line-height:1.65;
  font-size: 1.5rem;
  margin:0 auto;
}

/* ===== Grid ===== */
.cg-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 320px 1fr;
  align-items: center;
  margin-top: 18px;
}

/* Stats block */
.cg-stats {
  list-style: none;
  margin: 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #e6eaf3;
}

.cg-stats .num {
  display: block;
  color: #ff6969;
  font-size: 3.5rem;
  line-height: 2;
}

.cg-stats .num .plus {
  margin-left: .18rem;
  font-weight: 800;
  opacity: .9;
}

.cg-stats .lbl {
  display: block;
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 1.2rem;
  color: #333;
  font-weight: 400;
}

/* ===================== */
/*      RESPONSIVE       */
/* ===================== */

/* Tablet & below: stack grid */
@media (max-width: 900px) {
  .cg-grid {
    grid-template-columns: 1fr;
  }

  .cg-stats {
    border-right: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 18px;
  }

  .cg-stats li {
    padding: 8px 0;
    flex: 0 0 calc(50% - 18px); /* two per row */
  }

  .cg-stats .num {
    font-size: 2.4rem;
  }

  .cg-stats .lbl {
    font-size: 0.9rem;
    letter-spacing: .12em;
  }
}

/* Mobile: center & shrink fonts further */
@media (max-width: 600px) {
  .cg-stats {
    justify-content: center;
    text-align: center;
  }

  .cg-stats li {
    flex: 0 0 100%; /* one per row */
  }

  .cg-stats .num {
    font-size: 2rem;
  }

  .cg-stats .lbl {
    font-size: 0.8rem;
  }
}

/* ===== Map ===== */
.cg-map{
  position:relative;
  background: var(--tile);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
  padding: 10px;
}
.cg-map svg{
  display:block; width:100%; height:auto; border-radius:10px;
  filter: saturate(.9) contrast(1.02);
}
/* Pins */
.pin{
  --size: 12px;
  position:absolute;
  top: var(--top); left: var(--left);
  width:var(--size); height:var(--size);
  transform: translate(-50%,-90%);
  background: var(--accent);
  border-radius:999px;
  box-shadow:
    0 0 0 3px rgba(255,122,40,.18),
    0 6px 14px rgba(255,122,40,.35);
}
.pin::after{
  content:"";
  position:absolute; inset:-5px; border-radius:999px;
  border:2px solid rgba(255,122,40,.2);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse{
  0%{ transform:scale(.6); opacity:.7 }
  100%{ transform:scale(1.4); opacity:0 }
}
.client-logos{
  position:relative;
  background:var(--bg);
  padding:56px 0 48px;
  overflow:hidden;
}
.client-logos::before,
.client-logos::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:130px;
  z-index:0;
}
.client-logos::before{ top:0; opacity:.55 }
.client-logos::after{ bottom:0; transform:scaleY(-1); opacity:.35 }

.cl-wrap{
  width:min(1100px,92vw);
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* Head */
.cl-head{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.2rem;
}
.cl-head h3{
  margin:0;
  font-size: 2rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--ink);
}
.cl-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size: 0.9rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#9aa6bf;
  background:#eef2fb;
  padding:.35rem .6rem;
  border-radius:999px;
  font-weight:800;
}
.cl-pill i{
  width:.42rem;
  height:.42rem;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(255,122,40,.18);
}

/* Divider */
.cl-divider{
  border:0;
  height:1px;
  background:var(--line);
  margin:26px 0;
}

/* Groups */
.cl-group{ margin-bottom: 8px; }
.cl-group--alt{ padding-top:14px; }

/* ====== SLIDER PART ====== */

/* viewport: shows only some logos */
.logo-viewport{
  overflow:hidden;
  margin-top:22px;
}

/* Logo cards */
.logo-grid{
  list-style: none;
  margin: 22px 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;      /* or nowrap if you want a single row */
  gap: 24px;
}

.logo-grid li{
  flex: 0 0 auto;
  width: 157px;         /* card width */
  height: 80px;         /* card height â€“ similar to your screenshot */
  background: #ffffff;
  border: 1px solid #e2e6ef;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.logo-grid img{
  max-width: 130%;
  object-fit: contain;
  display: block;
}


.icon.whatsapp-icon {
  width: 80px;     /* increased from 65px */
  height: 80px;    /* increased from 65px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.icon.whatsapp-icon img {
    width: 60px;
    height: 56px;
    margin-bottom: 2rem;
}
.skills-list
{
  font-size: 16px;
}
.industries-section {
      padding: 60px 40px;
      display: flex;
      justify-content: center;
    }

    .industries-wrapper {
      width: 100%;
      max-width: 1200px;
    }

    /* Grid like screenshot */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    @media (max-width: 960px) {
      .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .industries-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Reduced size of each box */
    .industry-card {
      border-radius: 4px;
      border: 1px solid #212529;
      height: 48px; /* â†“ reduced from 64px to 48px */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: background 0.25s ease, transform 0.25s ease,
                  box-shadow 0.25s ease, border-color 0.25s ease;
      cursor: default;
      color:black;
      font-weight: 400;
    }

    .industry-card:hover {
      border-color: black;
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.65);
    }


/* Marquee container */
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 16px;
}

/* Soft fade on left/right edges (optional but looks premium) */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}

/* Track that moves */
.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 42s linear infinite;
}

/* Reverse direction row */
.logo-marquee.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 42s;
}

/* Pause on hover */
.logo-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Each duplicated set */
.marquee-set {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Logo card style (like your current boxes) */
.logo-card {
  width: 170px;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  flex: 0 0 auto;
}

.logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.logo-card:hover img {
  transform: scale(1.08);
}

/* Animation moves one full set width (50%) because we duplicated it */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-card {
    width: 140px;
    height: 85px;
  }
  .logo-card img {
    max-height: 55px;
  }
  .marquee-track { animation-duration: 22s; }
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
/* ===== GRID ===== */
.tc-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== CARD ===== */
.tc-industry-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 26px 30px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}

/* Hover bar */
.tc-industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #c7716e, #eb2c1b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.tc-industry-card:hover::before {
  transform: scaleX(1);
}

.tc-industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* ===== ICON ===== */
.tc-industry-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f1f5ff;
  color: #ff214f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.35s ease;
}

.tc-industry-card:hover .tc-industry-icon {
  background: linear-gradient(135deg, #ff214f, #ea7a3d);
  color: #ffffff;
  transform: rotate(8deg) scale(1.12);
}

/* ===== TEXT ===== */
.tc-industry-card h3 {
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 700;
  color: #020617;
  margin-bottom: 10px;
}

.tc-industry-card p {
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .tc-industries-section {
    padding: 80px 18px;
  }

  .tc-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tc-industries-section h2 {
    margin-bottom: 45px;
  }
}

/* Mobiles */
@media (max-width: 640px) {
  .tc-industries-section {
    padding: 60px 16px;
  }

  .tc-subtitle {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .tc-industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tc-industry-card {
    padding: 26px 18px 22px;
    border-radius: 16px;
  }

  .tc-industry-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  /* reduce hover lift on mobile (better UX) */
  .tc-industry-card:hover {
    transform: translateY(-6px);
  }
}

/* Extra small devices (very small phones) */
@media (max-width: 380px) {
  .tc-industries-section {
    padding: 50px 14px;
  }

  .tc-industry-card {
    padding: 22px 16px 20px;
  }
}
