
/* ===== 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; }
}
.job-card {
  background: #fff;
  border-radius: 10px;
  margin: 40px auto;
  padding: 30px;
  border-top: 5px solid #ff6969; /* Thin red line like the reference */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

/* Title */
.job-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* Apply Button */
.apply-btn {
  background-color: #ff6969;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.apply-btn:hover {
  background-color: #ff4d4d;
  color: #fff;
}

/* Info boxes */
.info-box {
  background: #f9fafb;
  border: 1px solid #e3e6ea;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0; /* removes extra spacing between boxes */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* Icons */
.info-icon {
  color: #ff6969;
  font-size: 16px;
}

/* Make all three info boxes in one row */
.job-card .row {
  margin-top: 20px;
}

.job-card .row > [class^="col-"] {
  padding: 8px;
}

/* Section styles */
.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 0;
}

/* Responsive behavior (stack on small screens) */
@media (max-width: 768px) {
  .job-card .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .apply-btn {
    margin-top: 15px;
  }

  .job-card .row > [class^="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }
}
/* Ensures the info boxes sit side by side */
.job-card .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Make columns equal width on desktop */
.job-card .col-md-4 {
  flex: 0 0 32%;
  max-width: 32%;
}


/* ===== OUTER LAYOUT: heading on the left, cards on the right ===== */
.contact-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2rem;
  padding-left: 5rem;
  padding-right: 2rem;
  /* padding-top: 2rem;
  padding-bottom: 2rem; */
}

/* ===== LEFT SIDE: heading block ===== */
.contact-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 260px;
  max-width: 300px;

  opacity: 0;
  animation: slideLeft 1s ease forwards;
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.contact-text .topline {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 4px;
}

.contact-text h2 {
  font-weight: 600;
  color: #222;
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}

/* vertical orange line */
.heading-line {
  width: 3px;
  height: 60px;
  background-color: #ff6b35;
  border-radius: 2px;
  flex-shrink: 0;

  opacity: 0;
  animation: slideLeft 1s ease forwards;
}

/* ===== RIGHT SIDE: cards container ===== */
.contact-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  flex-wrap: nowrap; /* keep 3 in one line on desktop */
  flex: 1;           /* take remaining width next to heading */
  margin-top: -30px;    /* remove top gap since it's beside heading now */
}

/* each card */
.contact-card {
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  height: 100%;
  min-width: 220px;
  flex: 0 0 auto; /* don't stretch too wide */
}

/* animation staggering */
.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; }


/* make full card clickable */
.contact-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* icon circle */
.contact-icon {
  background-color: #ff6969;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  transition: all 0.3s ease;
}

/* card text */
.contact-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  word-break: break-word;
  white-space: nowrap;
}

/* ===== ANIMATIONS ===== */
@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */

/* Medium screens: allow cards to wrap under heading if needed */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-wrap: wrap;
    padding-left: 2rem;
  }

  .contact-header {
    max-width: 100%;
    min-width: 100%;
  }

  .contact-row {
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .contact-card {
    flex: 0 0 45%;
    min-width: 200px;
  }
}

/* Small screens: stack cards full width */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .contact-card {
    width: 100%;
  }

  .contact-card p {
    white-space: normal;
    text-align: center;
  }

  .heading-line {
    width: 60px;
    height: 3px;
    align-self: flex-start;
  }

  .contact-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact-text h2 {
    font-size: 18px;
    line-height: 1.4;
  }

  .contact-text .topline {
    font-size: 12px;
  }
}

    .clients-geo{
  position:relative;
  padding: 64px 0 56px;
  overflow:hidden;
}

.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;
  margin:0 auto;
}

/* ===== Grid ===== */
.cg-grid{
  display:grid; gap: 28px;
  grid-template-columns: 320px 1fr;
  align-items:center;
  margin-top: 18px;
}
@media (max-width:900px){
  .cg-grid{ grid-template-columns: 1fr; }
}

/* ===== Stats ===== */
.cg-stats{
  list-style:none; margin:0; padding:0 10px 0 0;
  border-right: 1px solid #92969f;
}
@media (max-width:900px){ .cg-stats{ border-right:none; display:flex; justify-content:space-around; padding:0; } }
.cg-stats li{ padding: 16px 0;
 }
.cg-stats .num{
  display:block;
  color: #ff6969;
  font-size: 1.8rem;;
  line-height:1;
}

.cg-stats .num .plus {
  margin-left: 0.2rem;
  font-weight: 800;
  opacity: 0.9;
  display: inline-block;
  line-height: 1;
}
.cg-stats .lbl{
     display: block;
    margin-top: .35rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
}

/* ===== 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 }
}
/* Section with soft diagonals */
.client-logos{
  position:relative; padding:56px 0 48px; overflow:hidden;
}

.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; }

/* Logo grid */
.logo-grid{
  --cols: 6; /* desktop columns */
  list-style:none; margin:22px 0 10px; padding:0;
  display:grid; grid-template-columns: repeat(var(--cols), 1fr); gap: 22px 28px;
}
@media (max-width:1024px){ .logo-grid{ --cols:5 } }
@media (max-width:900px){ .logo-grid{ --cols:4 } }
@media (max-width:680px){ .logo-grid{ --cols:3 } }
@media (max-width:480px){ .logo-grid{ --cols:2 } }

.logo-grid li{
  height: 88px;                 /* uniform tiles */
  display:flex; align-items:center; justify-content:center;
  padding: 12px;
  transition: transform .15s ease, box-shadow .15s ease, filter .2s ease;
}


/* Images */
.logo-grid img{
  max-width: 100%;
  max-height: 52px;           
  object-fit: contain;
  transition: filter .2s ease, opacity .2s ease;
}
.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;
}
/* About Us Section */
.about-us {
  padding: 80px 0;
}

.about-us .auto-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* keeps both sides on same line */
}

/* Left column - Image */
.left-column {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

/* .about-us-left img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  transition: transform 0.3s ease;
} */

/* Right column - Text */
.right-column {
  flex: 1;
  max-width: 50%;
  padding-left: 50px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  margin-bottom: 20px;
}

.section-title h2 span {
  color: #ff6969;
  font-weight: 600;
}

.about-us-right .text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

/* About list */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #222;
}

.about-list li i {
  position: absolute;
  left: 0;
  top: 21px;
  color: #ff6969;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .about-us .row {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
  }

  .left-column,
  .right-column {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .right-column {
    margin-top: 30px;
    text-align: center;
  }

  .about-us-right .text {
    text-align: center;
  }

  .about-list li {
    display: inline-block;
    text-align: left;
  }
}
.contact-icon-whatsapp {
  background-color: #ff6969;
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex{
  display: flex;
  justify-content: space-between;
}