:root {

  /* ---------- Brand Orange / Fire Palette ---------- */
  --infosoft-orange:          #fd8b16; /* primary brand orange */
  --infosoft-orange-alt:      #ff7a1a; /* tags / buttons */
  --infosoft-orange-alt-hover:#ff852e;
  --infosoft-orange-accent:   #ff6a00; /* headings / highlights */
  --infosoft-orange-fire:     #ff5213; /* glow gradient */
  --infosoft-orange-fire-mid: #c43206;
  --infosoft-fire-dark:       #5a191b;

  /* ---------- Text Colors ---------- */
  --infosoft-white: #ffffff;
  --infosoft-black: #000000;


  --infosoft-footer-bg: #fbfaf6;
      --infosoft-footer-text-muted: #555555;
      --infosoft-footer-accent: #fd8b16;
      --infosoft-footer-accent-hover: #e07406;
      --infosoft-orange-alt: #f6881f;

}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.infosoft-header-btn{
  background-color: var(--infosoft-black);
}
.infosoft-header-btn:hover{
  background-color: var(--infosoft-orange);
}

@media (max-width: 991.98px) {
  .navlinks .infosoft-header-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    margin-top: 8px;
  }
}
/* ==================================================
     InfoSoft Counter Section
  ================================================== */
  .infosoft-counter-section {
    /* width: 97%; */
  
    margin: 0 auto;
  }
 
  .infosoft-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
 
.infosoft-counter-card {
    position: relative;
    border-radius: 14px;
    padding: 30px 30px 30px;
    overflow: hidden;
    background-color: #030712;
    background-image: /* Top-right electric blue glow */ radial-gradient(circle at 92% 8%, rgb(0 4 31) 0%, rgba(15, 60, 140, 0.45) 25%, transparent 60%), /* Center diagonal luminous bridge */ radial-gradient(ellipse 65% 50% at 65% 45%, rgba(135, 85, 125, 0.25) 0%, transparent 60%), /* Bottom fiery orange-amber glow */ radial-gradient(ellipse 90% 70% at 35% 105%, #c66856 0%, #d26b4e 28%, var(--infosoft-fire-dark) 55%, transparent 75%), /* Deep midnight navy base */ linear-gradient(145deg, #020716 0%, #060d24 45%, #050510 100%);
    background-repeat: no-repeat;
}
 
  .infosoft-counter-number {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
  }
 
  .infosoft-counter-label {
    font-size: 14px;
    color: #c7cbd6;
    font-weight: 400;
  }
 
  @media (max-width: 900px) {
    .infosoft-counter-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
  }
 
  @media (max-width: 480px) {
    .infosoft-counter-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .infosoft-counter-card {
      padding: 16px 12px 14px;
      border-radius: 12px;
    }
    .infosoft-counter-number {
      font-size: 28px;
      margin-bottom: 3px;
    }
    .infosoft-counter-label {
      font-size: 12px;
      line-height: 1.3;
    }
  }





/* ==================================================
   Layout & Typography
================================================== */
.infosoft-banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: Arial, Helvetica, sans-serif;
}

/* Fallback margins instead of gap for older browsers */
.infosoft-banner-badge,
.infosoft-banner-title,
.infosoft-banner-description,
.infosoft-banner-tags {
  margin-bottom: 1.5rem;
}

/* Category Badge */
.infosoft-banner-badge {
  display: inline-block;
  background-color: #f1f3f5;
  color: var(--infosoft-black);
  font-size: 14px;
  font-weight: bold;
  padding: 8px 18px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: -webkit-transform 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease;

  -webkit-animation: infosoftFadeUp 0.6s ease both;
  animation: infosoftFadeUp 0.6s ease both;
}

.infosoft-banner-badge:hover {
  background-color: #e5e7eb;
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

/* Main Headings */
.infosoft-banner-title {
  font-size: 70px; /* Fallback for clamp() */

  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  -webkit-animation: infosoftFadeUp 0.7s ease 0.1s both;
  animation: infosoftFadeUp 0.7s ease 0.1s both;
}

.infosoft-banner-underline-blue {
  color: #0b0f19;
  display: inline-block;
  position: relative;
}


.infosoft-banner-underline-orange {
  color: var(--infosoft-orange);
  display: block;
  position: relative;
}



/* Description Text */
.infosoft-banner-description {
  font-size: 19px;
  color: var(--infosoft-black);
  line-height: 1.5;
  max-width: 500px;
  font-weight: normal;
  -webkit-animation: infosoftFadeUp 0.7s ease 0.2s both;
  animation: infosoftFadeUp 0.7s ease 0.2s both;
}

/* Tag Pills */
.infosoft-banner-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 480px;
  -webkit-animation: infosoftFadeUp 0.7s ease 0.3s both;
  animation: infosoftFadeUp 0.7s ease 0.3s both;
}

.infosoft-banner-tag {
  display: inline-block;
  border: 2px solid var(--infosoft-orange);
  background: transparent;
  color: var(--infosoft-black);
  font-size: 14px;
  font-weight: bold;
  padding: 7px 16px;
  margin: 0 8px 8px 0;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.infosoft-banner-tag:hover {
  background-color: var(--infosoft-orange);
  color: var(--infosoft-white);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 122, 26, 0.25);
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.25);
}

/* CTA Button & Hover */
.infosoft-banner-action {
  -webkit-animation: infosoftFadeUp 0.7s ease 0.4s both;
  animation: infosoftFadeUp 0.7s ease 0.4s both;
}

.infosoft-banner-btn {
  display: inline-block;
  background-color: var(--infosoft-orange);
  color: var(--infosoft-black);
  text-decoration: none;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 6px 22px 6px 7px;
  vertical-align: middle;
  -webkit-box-shadow: 0 6px 18px rgba(255, 122, 26, 0.28);
  box-shadow: 0 6px 18px rgba(255, 122, 26, 0.28);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.infosoft-banner-btn-icon {
  width: 38px;
  height: 38px;
  background-color: var(--infosoft-black);
  color: var(--infosoft-white);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 38px;
  margin-right: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.infosoft-banner-btn-icon svg {
  display: inline-block;
  vertical-align: middle;
}

.infosoft-banner-btn-text {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.infosoft-banner-btn:hover {
  background-color: var(--infosoft-orange);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(255, 122, 26, 0.45);
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.45);
}

.infosoft-banner-btn:hover .infosoft-banner-btn-icon {
  background-color: var(--infosoft-white);
  color: var(--infosoft-black);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.infosoft-banner-btn:hover .infosoft-banner-btn-text {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

/* ==================================================
   Cross-Browser Keyframe Animations (Legacy & WebKit)
================================================== */
@-webkit-keyframes infosoftFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes infosoftFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes infosoftExpandLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes infosoftExpandLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}















/* Main Container with Exact Glow Mesh */
    .infosoft-home-img-sec {
      background-color: #030712;
      background-image:
        /* Top-right electric blue glow */
        radial-gradient(circle at 92% 8%, rgba(29, 114, 235, 0.75) 0%, rgba(15, 60, 140, 0.45) 25%, transparent 60%),
        /* Center diagonal luminous bridge */
        radial-gradient(ellipse 65% 50% at 65% 45%, rgba(135, 85, 125, 0.25) 0%, transparent 60%),
        /* Bottom fiery orange-amber glow */
        radial-gradient(ellipse 90% 70% at 35% 105%, var(--infosoft-orange-fire) 0%, var(--infosoft-orange-fire-mid) 28%, var(--infosoft-fire-dark) 55%, transparent 75%),
        /* Deep midnight navy base */
        linear-gradient(145deg, #020716 0%, #060d24 45%, #050510 100%);
      background-repeat: no-repeat;
      /* border: 1px solid rgba(255, 255, 255, 0.08); */
      border-radius: 28px;
      padding: 3.5rem 3rem;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
      width: 97%;
      margin: 0 auto;
      margin-bottom: 100px;

    }

    /* Typography */
    .infosoft-home-img-sec-heading {
      font-size: 60px;
      color: var(--infosoft-white);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .infosoft-home-img-sec-highlight {
      color: var(--infosoft-orange);
      display: block;
    }

    .infosoft-home-img-sec-text {
      color: var(--infosoft-white);
      font-size: 16px;
      line-height: 1.65;
      margin-top: 1.5rem;
      max-width: 480px;
    }

    /* Vertical Sliders Window */
    .infosoft-home-img-sec-slider-wrapper {
      height: 80vh;
      overflow: hidden;
      position: relative;
      width: 400px;
    }

    /* Gradient edge masks */
    .infosoft-home-img-sec-slider-wrapper::before,
    .infosoft-home-img-sec-slider-wrapper::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 70px;
      z-index: 2;
      pointer-events: none;
    }

    .infosoft-home-img-sec-slider-wrapper::before {
      top: 0;
      background: linear-gradient(to bottom, #030712 0%, transparent 100%);
    }

    .infosoft-home-img-sec-slider-wrapper::after {
      bottom: 0;
      background: linear-gradient(to top, #030712 0%, transparent 100%);
    }

    .infosoft-home-img-sec-track {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    /* Direction 1: Top to Bottom */
    .infosoft-home-img-sec-down {
      animation: infosoftScrollDown 30s linear infinite;
    }

    /* Direction 2: Bottom to Top */
    .infosoft-home-img-sec-up {
      animation: infosoftScrollUp 30s linear infinite;
    }

    .infosoft-home-img-sec-slider-wrapper:hover .infosoft-home-img-sec-track {
      animation-play-state: paused;
    }

    @keyframes infosoftScrollDown {
      0% {
        transform: translateY(-50%);
      }
      100% {
        transform: translateY(0%);
      }
    }

    @keyframes infosoftScrollUp {
      0% {
        transform: translateY(0%);
      }
      100% {
        transform: translateY(-50%);
      }
    }

    /* Image Card Items */
    .infosoft-home-img-sec-card {
      position: relative;
      cursor: pointer;
      border-radius: 8px;
      overflow: hidden;
      border: 3px solid transparent;
      transition: border-color 0.25s ease, transform 0.25s ease;
      /* background-color: #000; */
      flex-shrink: 0;
    }

    .infosoft-home-img-sec-card:hover,
    .infosoft-home-img-sec-card.active {
      border-color: #1d72eb;
      transform: scale(1.02);
    }

    .infosoft-home-img-sec-card img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      display: block;
    }


.info-home-digital-section {
  background: #faf9f6;
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
}

.info-home-digital-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  color: var(--infosoft-black);
  margin-bottom: 22px;
}

.info-home-digital-heading-accent {
  color: var(--infosoft-orange);
}

.info-home-digital-lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--infosoft-black);
  max-width: 360px;
}

.info-home-digital-col-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 6px;
}

.info-home-digital-grid {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

/* Card border wrapper with animated border color and lift on hover */
.info-home-digital-card-wrap {
  position: relative;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  background: #f8c391;
  padding: 1.5px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
}

.info-home-digital-card-wrap:hover {
  transform: translateY(-6px);
  background: var(--infosoft-orange);
  box-shadow: 0 14px 28px rgba(253, 139, 22, 0.16);
}

/* Inner card styling with subtle background shift */
.info-home-digital-card {
  position: relative;
  height: 100%;
  background: #faf9f6;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.info-home-digital-card-wrap:hover .info-home-digital-card {
  background: var(--infosoft-white);
}

.info-home-digital-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.28;
  color: var(--infosoft-black);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.info-home-digital-card-wrap:hover .info-home-digital-card-title {
  color: var(--infosoft-orange);
}

.info-home-digital-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--infosoft-black);
  margin-bottom: 18px;
  flex-grow: 1;
  transition: color 0.25s ease;
}

.info-home-digital-card-wrap:hover .info-home-digital-card-desc {
  color: var(--infosoft-black);
}

/* Link and arrow hover dynamics triggered on entire card hover */
.info-home-digital-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--infosoft-orange);
  text-decoration: none;
  width: fit-content;
  transition: gap 0.25s ease;
}

.info-home-digital-card-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.info-home-digital-card-wrap:hover .info-home-digital-card-link {
  gap: 12px;
}

.info-home-digital-card-wrap:hover .info-home-digital-card-link svg {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .info-home-digital-col-left {
    margin-bottom: 36px;
  }
  .info-home-digital-lead {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .info-home-digital-section {
    padding: 48px 0;
  }
  .info-home-digital-heading {
    margin-bottom: 16px;
  }
  .info-home-digital-card {
    padding: 20px 18px 18px;
  }
  .info-home-digital-card-title {
    font-size: 17px;
  }
}






/* Section Container */
    .infosoft-home-clients-section {
      width: 100%;
      margin: 0 auto;
      text-align: center;
    }

    /* Heading Styles */
    .infosoft-home-clients-heading {
      font-size: clamp(1.2rem, 3.5vw, 2.75rem);
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.01em;
      color: var(--infosoft-black);
      margin-bottom: 3.5rem;
      text-transform: uppercase;
    }

    .infosoft-home-clients-heading-highlight {
      color: var(--infosoft-orange);
      display: inline-block;
    }

    /* Logo Grid Wrapper */
    .infosoft-home-clients-grid {
      --bs-gutter-x: 1.25rem;
      --bs-gutter-y: 1.25rem;
    }
    .infosoft-home-clients-grid .col {
      padding: 0px 50px 30px 50px !important;
    }

    @media (max-width: 1199.98px) {
      .infosoft-home-clients-grid .col {
        padding: 0px 24px 24px 24px !important;
      }
    }

    @media (max-width: 991.98px) {
      .infosoft-home-clients-grid .col {
        padding: 0px 16px 20px 16px !important;
      }
      .infosoft-home-clients-heading {
        margin-bottom: 2rem;
      }
    }

    @media (max-width: 575.98px) {
      .infosoft-home-clients-grid .col {
        padding: 0px 6px 12px 6px !important;
      }
      .infosoft-home-clients-card {
        padding: 0.75rem 0.6rem;
        border-radius: 10px;
      }
      .infosoft-home-clients-heading {
        margin-bottom: 1.5rem;
      }
    }

    /* Client Card */
    .infosoft-home-clients-card {
      background-color: var(--infosoft-white);
      border-radius: 12px;
      /* height: 96px; */
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      border: 1px solid rgba(0, 0, 0, 0.04);
      box-shadow: 0 4px 18px rgb(0 0 0 / 24%), 0 1px 3px rgba(0, 0, 0, 0.02);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                  box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                  border-color 0.3s ease;
    }

    /* Hover Shimmer Light Sweep */
    .infosoft-home-clients-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
      );
      transform: skewX(-25deg);
      transition: none;
      pointer-events: none;
    }

    .infosoft-home-clients-card:hover::before {
      left: 140%;
      transition: left 0.75s ease-in-out;
    }

    /* Hover States: Lift, Elevation & Accent Border */
    .infosoft-home-clients-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(255, 106, 0, 0.06);
      border-color: rgba(255, 106, 0, 0.35);
    }

    /* Brand Logo Image Animation */
    .infosoft-home-clients-logo {
      max-width: 100%;
      /* max-height: 48px; */
      object-fit: contain;
      filter: grayscale(15%) contrast(95%);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.3s ease;
      user-select: none;
    }

    .infosoft-home-clients-card:hover .infosoft-home-clients-logo {
      filter: grayscale(0%) contrast(105%);
      transform: scale(1.08);
    }

    /* Container with the matching dynamic mesh background */
    .infosoft-home-industry-section {
      width: 97%;
      margin: 0 auto;
      border-radius: 28px;
      padding: 72px 80px;
      position: relative;
      overflow: hidden;
    
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.85);
      background-color: #030712;
      background-image:
        /* Top-right electric purple/blue glow beam */
        radial-gradient(circle at 92% 8%, rgba(29, 114, 235, 0.75) 0%, rgba(15, 60, 140, 0.45) 25%, transparent 60%),
        /* Center-right diagonal atmospheric bridge */
        radial-gradient(ellipse 65% 50% at 65% 45%, rgba(135, 85, 125, 0.25) 0%, transparent 60%),
        /* Bottom fiery orange-amber glow */
        radial-gradient(ellipse 90% 70% at 35% 105%, var(--infosoft-orange-fire) 0%, var(--infosoft-orange-fire-mid) 28%, var(--infosoft-fire-dark) 55%, transparent 75%),
        /* Dark deep midnight navy base */
        linear-gradient(145deg, #020716 0%, #060d24 45%, #050510 100%);
      background-repeat: no-repeat;
    }

    /* Heading Styles */
    .infosoft-home-industry-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .infosoft-home-industry-title {
      font-size: clamp(2rem, 3.8vw, 2.9rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--infosoft-white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .infosoft-home-industry-title-accent {
      color: var(--infosoft-orange);
    }

    .infosoft-home-industry-subtitle {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--infosoft-white);
      max-width: 650px;
      margin: 0 auto;
      font-weight: 400;
    }

    /* Industry Card */
    .infosoft-home-industry-card {
      position: relative;
      height: 100%;
      min-height: 195px;
      padding: 2rem 1.75rem;
      border-radius: 20px;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 100%
      );
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                  box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                  border-color 0.3s ease,
                  background 0.3s ease;
    }

    /* Orange Vertical Accent Ribbon on the Left */
    .infosoft-home-industry-card::before {
      content: "";
      position: absolute;
      left: -1px;
      top: 22px;
      bottom: 22px;
      width: 4.5px;
      background: var(--infosoft-orange);
      border-radius: 0 4px 4px 0;
      box-shadow: 0 0 10px rgba(255, 106, 0, 0.7);
      transition: top 0.3s ease, bottom 0.3s ease, width 0.3s ease;
    }

    /* Hover Interaction */
    .infosoft-home-industry-card:hover {
      transform: translateY(-6px);
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.07) 100%
      );
      border-color: rgba(255, 255, 255, 0.28);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
      cursor: unset;
    }

    .infosoft-home-industry-card:hover::before {
      top: 14px;
      bottom: 14px;
      width: 5.5px;
    }

    /* Icon Styling */
   .infosoft-home-industry-icon img {
    width: 60px;
    margin-bottom: 1rem;
   }


    /* Card Titles & Text */
    .infosoft-home-industry-card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--infosoft-white);
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .infosoft-home-industry-card-desc {
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--infosoft-white);
      margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
      .infosoft-home-industry-section {
        width: calc(100% - 24px);
        padding: 48px 28px;
        border-radius: 22px;
      }
      .infosoft-home-industry-header {
        margin-bottom: 2.25rem;
      }
    }

    @media (max-width: 575.98px) {
      .infosoft-home-industry-section {
        width: calc(100% - 16px);
        padding: 36px 16px;
        border-radius: 16px;
      }
      .infosoft-home-industry-header {
        margin-bottom: 1.75rem;
      }
      .infosoft-home-industry-card {
        padding: 1.5rem 1.25rem;
        min-height: auto;
      }
    }

    .infosoft-footer {
      background-color: var(--infosoft-footer-bg);
      color: var(--infosoft-footer-text-dark);
      font-family: var(--infosoft-footer-font);
      padding: 5rem 0 2.5rem;
    }

    /* Brand Logo */
    .infosoft-footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.08em;
      color: var(--infosoft-footer-text-dark);
      margin-bottom: 2rem;
    }
   .infosoft-footer-brand img{
    width: 100%;
    max-width: 300px;
    height: auto;
   }
    .infosoft-footer-brand svg {
      width: 22px;
      height: 22px;
    }

    /* Hero Heading */
    .infosoft-footer-title {
      font-size: clamp(2.25rem, 4.5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 1.8rem;
    }

    .infosoft-footer-title-accent {
      color: var(--infosoft-orange);
    }

    /* Contact Details */
    .infosoft-footer-contact {
      font-size: 16px;
      line-height: 1.6;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .infosoft-footer-contact a {
      color: var(--infosoft-footer-text-dark);
      text-decoration: none;
      display: block;
      transition: color 0.2s ease;
    }

    .infosoft-footer-contact a:hover {
      color: var(--infosoft-orange);
    }

    /* Social Section */
    .infosoft-footer-social-label {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--infosoft-footer-text-dark);
      margin-bottom: 1.25rem;
    }

    .infosoft-footer-social-links {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .infosoft-footer-social-icon {
      width: 44px;
      height: 44px;
      background-color: var(--infosoft-orange-alt);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }

    .infosoft-footer-social-icon svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .infosoft-footer-social-icon:hover {
      background-color: var(--infosoft-black);
      color: #ffffff;
      transform: translateY(-4px);
      box-shadow: 0 6px 14px rgba(246, 136, 31, 0.35);
    }

    /* Links Columns */
    .infosoft-footer-col-title {
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      color: var(--infosoft-orange);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .infosoft-footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .infosoft-footer-item {
      margin-bottom: 1rem;
    }

    .infosoft-footer-link {
      color: var(--infosoft-footer-text-dark);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-block;
    }

    .infosoft-footer-link:hover {
      color: var(--infosoft-orange);
      transform: translateX(3px);
    }

    /* Bottom Bar */
    .infosoft-footer-bottom {
      margin-top: 4.5rem;
      padding-top: 1.5rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--infosoft-footer-text-dark);
    }

    .infosoft-footer-policy-link {
      color: var(--infosoft-footer-text-dark);
      text-decoration: none;
      margin-left: 2rem;
      transition: color 0.2s ease;
    }

    .infosoft-footer-policy-link:hover {
      color: var(--infosoft-orange);
    }

    @media (max-width: 767.98px) {
      .infosoft-footer {
        padding: 3.5rem 0 2rem;
      }
      .infosoft-footer-policy-link {
        margin-left: 1rem;
      }
    }

    @media (max-width: 575.98px) {
      .infosoft-footer-brand img {
        max-width: 220px;
      }
      .infosoft-footer-title {
        font-size: clamp(1.75rem, 7vw, 2.3rem);
      }
      .infosoft-footer-bottom {
        margin-top: 2.5rem;
      }
    }

/* =========================================
   SECTION BASE & CARD CONTAINER
========================================= */

.infosoft-home-we-create-section {
  margin-top: 100px;
}

@media (max-width: 767.98px) {
  .infosoft-home-we-create-section {
    margin-top: 48px;
  }
  .infosoft-home-we-create-section .mb-5 {
    margin-bottom: 1.5rem !important;
  }
}

.infosoft-home-we-create-phone img {
  border-radius: 20px;
  border: 1px solid #cbcbcb;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  width: 100%;
}

.infosoft-home-we-create-phone img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 50px -12px rgba(0, 0, 0, 0.18);
}

.infosoft-home-we-create-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  /* background: #0f1115; */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
  transition: 
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* =========================================
   PREMIUM ENTRANCE REVEAL (IN-VIEW)
========================================= */

.infosoft-home-we-create-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition: 
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered load delays */
.infosoft-home-we-create-delay-1 { transition-delay: 0.1s; }
.infosoft-home-we-create-delay-2 { transition-delay: 0.25s; }
.infosoft-home-we-create-delay-3 { transition-delay: 0.4s; }

/* In-view trigger state */
.infosoft-home-we-create-reveal.infosoft-in-view,
.infosoft-in-view .infosoft-home-we-create-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


/* =========================================
   IMAGE STYLES & CINEMATIC ZOOM
========================================= */

.infosoft-home-we-create-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
  will-change: transform;
}

.infosoft-home-we-create-card:hover .infosoft-home-we-create-card-img {
  transform: scale(1.06);
  filter: brightness(103%) contrast(104%);
}


/* =========================================
   PREMIUM HOVER: 3D FLOAT & SPECULAR GLOW
========================================= */

.infosoft-home-we-create-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 22px 40px -12px rgba(0, 0, 0, 0.22),
    0 40px 70px -20px rgba(0, 0, 0, 0.15);
}

/* Glass reflection overlay base */
.infosoft-home-we-create-card .glass-reflection-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
}

/* Diagonal specular light sweep */
.infosoft-home-we-create-card .glass-reflection-overlay::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 70%;
  height: 200%;
  transform: rotate(25deg);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Active sweep & rim-light on hover */
.infosoft-home-we-create-card:hover .glass-reflection-overlay {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.02);
}

.infosoft-home-we-create-card:hover .glass-reflection-overlay::after {
  left: 180%;
  opacity: 1;
}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {
  .infosoft-home-we-create-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .infosoft-home-we-create-card,
  .infosoft-home-we-create-card-img {
    transition: none !important;
    transform: none !important;
  }

  .glass-reflection-overlay::after {
    display: none !important;
  }
}




/* ==========================================================
       Custom Section Styles: infosoft-home-clients-new-sec
    ========================================================== */
    .infosoft-home-clients-new-sec {
      font-family: 'Poppins', sans-serif;
      background-color: #ffffff;
      padding: 80px 0 80px;
      color: #1a1a1a;
      overflow: hidden;
    }

    /* Section Header */
    .infosoft-home-clients-new-sec-title {
      font-size: 2.75rem;
      font-weight: 700;
      color: #1e1e1e;
      letter-spacing: -0.5px;
      margin-bottom: 1rem;
    }

    .infosoft-home-clients-new-sec-subtitle {
      font-size: 0.95rem;
      color: #6c757d;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Card Wrapper */
    .infosoft-home-clients-new-sec-card {
      text-decoration: none;
      display: block;
      cursor: pointer;
      outline: none;
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .infosoft-home-clients-new-sec-card:hover {
      transform: translateY(-8px);
    }

    /* Media Thumbnail Container */
    .infosoft-home-clients-new-sec-thumb {
      position: relative;
      width: 100%;
      height: 625px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.35s ease;
    }

    .infosoft-home-clients-new-sec-card:hover .infosoft-home-clients-new-sec-thumb {
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
    }

    .infosoft-home-clients-new-sec-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
       object-fit: contain;
    }

    .infosoft-home-clients-new-sec-card:hover .infosoft-home-clients-new-sec-thumb img {
      transform: scale(1.06);
    }

    /* Video Play Overlay Animation */
    .infosoft-home-clients-new-sec-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      backdrop-filter: blur(2px);
      transition: opacity 0.3s ease;
    }

    .infosoft-home-clients-new-sec-card:hover .infosoft-home-clients-new-sec-overlay {
      opacity: 1;
    }

    .infosoft-home-clients-new-sec-play-icon {
      width: 58px;
      height: 58px;
      background: #ffffff;
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      padding-left: 4px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transform: scale(0.85);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .infosoft-home-clients-new-sec-card:hover .infosoft-home-clients-new-sec-play-icon {
      transform: scale(1);
      animation: infosoftPulse 1.8s infinite;
    }

    @keyframes infosoftPulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
      70% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    /* Card Label */
    .infosoft-home-clients-new-sec-label {
      font-size: 1.05rem;
      font-weight: 700;
      color: #111111;
      margin-top: 18px;
      margin-bottom: 0;
      transition: color 0.25s ease;
    }

    .infosoft-home-clients-new-sec-card:hover .infosoft-home-clients-new-sec-label {
      color: #0066cc;
    }

    /* Bottom CTA Button */
    .infosoft-home-clients-new-sec-btn {
      display: inline-block;
      border: 1.5px solid #d2d2d7;
      border-radius: 30px;
      padding: 10px 32px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #7d7d82;
      text-decoration: none;
      background: transparent;
      transition: all 0.3s ease;
    }

    .infosoft-home-clients-new-sec-btn:hover {
      border-color: #111111;
      color: #ffffff;
      background-color: #111111;
      transform: translateY(-2px);
    }

    /* Video Modal Customization */
    .infosoft-home-clients-new-sec-modal .modal-content {
      background-color: transparent;
      border: none;
    }

    .infosoft-home-clients-new-sec-modal .btn-close {
      position: absolute;
      top: -40px;
      right: 0;
      filter: invert(1);
      opacity: 0.85;
      font-size: 1.25rem;
    }

    .infosoft-home-clients-new-sec-modal .ratio {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .infosoft-home-clients-new-sec-title {
        font-size: 2.1rem;
      }
      .infosoft-home-clients-new-sec-thumb {
        height: 380px;
      }
    }

    @media (max-width: 575.98px) {
      .infosoft-home-clients-new-sec {
        padding: 50px 0;
      }
      .infosoft-home-clients-new-sec-title {
        font-size: 1.75rem;
      }
      .infosoft-home-clients-new-sec-subtitle {
        font-size: 0.85rem;
      }
      .infosoft-home-clients-new-sec-thumb {
        height: 550px;
        aspect-ratio: 16 / 10;

       
      }
       .infosoft-home-clients-new-sec-thumb img {
      width: 100%;
      height: 100%;

      transition: transform 0.5s ease;
       object-fit: contain;
    }
      .infosoft-home-clients-new-sec .mb-5 {
        margin-bottom: 1.5rem !important;
      }
      .infosoft-home-clients-new-sec-modal .btn-close {
        top: -36px;
        right: 4px;
      }
    }










    