/* layout1 */
.ezy__featured49 {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0 60px;
  position: relative;
  text-align: left;
  overflow: hidden;
}

.ezy__featured49::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.ezy__featured49 .container {
  position: relative;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

/* =========================
   Typography
========================= */

.ezy__featured49 h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 700;
  word-break: break-word;
}

.ezy__featured49 p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-white {
  color: #ffffff;
}

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

@media (max-width: 991px) {

  .ezy__featured49 {
    padding: 90px 0 50px;
    text-align: center;
  }

  .ezy__featured49 h1 {
    font-size: 2.5rem;
  }

  .ezy__featured49 .container {
    max-width: 100%;
  }
}

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

@media (max-width: 768px) {

  .ezy__featured49 {
    padding: 70px 0 45px;
    text-align: center;
    background-position: center;
  }

  .ezy__featured49 .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ezy__featured49 h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .ezy__featured49 p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Form Responsive */
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-row .form-group,
  .form-row .col,
  .form-row input,
  .form-row select,
  .form-row textarea,
  .form-row button {
    width: 100% !important;
  }

  .form-row button {
    margin-top: 5px;
  }
}

/* =========================================
   SMALL MOBILE DEVICES
========================================= */

@media (max-width: 480px) {

  .ezy__featured49 {
    padding: 60px 0 40px;
  }

  .ezy__featured49 h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .ezy__featured49 p {
    font-size: 14px;
  }

  .ezy__featured49 .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* layoout2 */
/* Unique Prefix: st-ab- (Section Template About) */

/* =========================================
   CASE 2 SECTION
========================================= */

.container-xxl.py-5 {
  padding: 40px 0 !important;
  background-color: #ffffff;
  text-align: left;
}

/* =========================================
   TAG
========================================= */

.section-title {
  color: #007bff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  background: transparent !important;
}

/* =========================================
   HEADING
========================================= */

.display-6 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.display-6 .text-primary {
  color: #2b5a9e !important;
}

/* =========================================
   IMAGE
========================================= */

.img-border img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* =========================================
   HIGHLIGHTS
========================================= */

.row.g-2.mb-4 .col-sm-6 {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.row.g-2.mb-4 .fa-check {
  background: #007bff;
  color: white !important;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 15px;
}

/* =========================================
   BUTTON
========================================= */

.btn.btn-primary.rounded-pill {
  background-color: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px !important;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  border: none;
}

.btn.btn-primary.rounded-pill:hover {
  background-color: #0056b3;
  color: #fff;
}

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

@media (max-width: 991px) {

  .container-xxl.py-5 {
    padding: 60px 0 !important;
  }

  .display-6 {
    font-size: 2rem;
  }

  .img-border {
    margin-bottom: 40px;
  }

  .row.g-2.mb-4 .col-sm-6 {
    align-items: flex-start;
  }
}

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

@media (max-width: 768px) {

  .container-xxl.py-5 {
    padding: 50px 15px !important;
    text-align: center;
  }

  .section-title {
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .display-6 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .img-border {
    margin-bottom: 30px;
  }

  .img-border img {
    width: 100%;
    border-radius: 10px;
  }

  .row.g-2.mb-4 .col-sm-6 {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 18px;
  }

  .row.g-2.mb-4 .fa-check {
    min-width: 22px;
    height: 22px;
    font-size: 12px;
    margin-right: 12px;
    margin-top: 2px;
  }

  .btn.btn-primary.rounded-pill {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* =========================================
   SMALL MOBILE DEVICES
========================================= */

@media (max-width: 576px) {

  .container-xxl.py-5 {
    padding: 40px 15px !important;
  }

  .display-6 {
    font-size: 1.6rem;
  }

  .row.g-2.mb-4 .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .btn.btn-primary.rounded-pill {
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* layoout3 */
/* Unique Prefix: st-sv- (Section Template Services) */
.st-sv-section {
  padding: 80px 0;
  background-color: #f8f9ff;
}

.st-sv-tag {
  color: #007bff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.st-sv-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 50px;
}

.st-sv-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 25px;
  height: 100%; /* Ensures all cards in a row have equal height */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.st-sv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.1);
}

.st-sv-icon {
  height: 60px;
  width: auto;
  margin-bottom: 25px;
  object-fit: contain;
}

.st-sv-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.st-sv-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .st-sv-section { padding: 60px 0; }
  .st-sv-heading { font-size: 2rem; margin-bottom: 40px; }
}

@media (max-width: 576px) {
  .st-sv-heading { font-size: 1.75rem; }
  .st-sv-card { padding: 30px 20px; }
}

/* layout4 */
/* Unique Prefix: st-wcu- (Section Template Why Choose Us) */
.st-wcu-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.st-wcu-tag {
  color: #007bff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.st-wcu-heading {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.st-wcu-main-desc {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.st-wcu-feature-item {
  margin-bottom: 25px;
}

.st-wcu-feature-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
  display: flex;
  align-items: center;
}

.st-wcu-icon {
  color: #007bff;
  margin-right: 10px;
  font-size: 1.2rem;
}

.st-wcu-feature-desc {
  color: #666;
  padding-left: 30px; /* Aligns text under the title, skipping the icon */
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .st-wcu-section {
    padding: 60px 0;
  }
  .st-wcu-heading {
    font-size: 2rem;
  }
  .st-wcu-img-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .st-wcu-heading {
    font-size: 1.75rem;
  }
}

/* layout5 */
/* Unique Prefix: st-tm- (Section Template Team) */
.st-tm-section {
  padding: 80px 0;
  background-color: #f8f9ff;
}

.st-tm-tag {
  color: #007bff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.st-tm-heading {
  font-weight: 800;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 50px;
}

.st-tm-member-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.st-tm-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.st-tm-img-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f8f9ff;
}

.st-tm-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-tm-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 5px;
}

.st-tm-role {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.st-tm-linkedin {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.st-tm-linkedin:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .st-tm-section { padding: 60px 0; }
  .st-tm-heading { font-size: 2rem; }
}

@media (max-width: 576px) {
  .st-tm-heading { font-size: 1.75rem; }
  .st-tm-img-wrapper { width: 130px; height: 130px; }
}

/* layout6 */
/* Unique Prefix: st-ts- (Section Template Tech Stack) */
.st-ss-section {
  background-color: #f8fbff;
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
  overflow: hidden;
}

.st-ss-tag {
  background: #e6f0ff;
  color: #3b71b9;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}

.st-ss-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-top: 15px;
  line-height: 1.3;
}

.st-ss-heading span {
  color: #007bff;
}

.st-ss-subheading {
  color: #666;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.st-ss-cat-title {
  font-weight: 700;
  color: #3b71b9;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

.st-ss-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 300px;
}

.st-ss-icon-box {
  width: 80px;
  height: 80px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  gap: 10px;
}

.st-ss-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 113, 185, 0.15);
}

.st-ss-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.tech-section {
  padding: 70px;
  text-align: center;
  background-color: #007bff09;
  overflow: hidden;
}

.tech-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.tech-section h2 span {
  color: #007bff;
}

.tech-divider {
  /* border-top: 1px solid #dee2e6; */
  margin: 40px 0;
}

.tech-category {
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-size: 1rem;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.tech-logos img {
  height: 63px;
  width: auto;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.tech-logos img:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {

  .st-ss-section {
    padding: 60px 20px;
  }

  .st-ss-heading {
    font-size: 2rem;
  }

  .st-ss-icon-grid {
    margin-left: 0;
    justify-content: center;
  }

  .tech-section {
    padding: 50px 30px;
  }

  .tech-section h2 {
    font-size: 2rem;
  }

  .tech-category {
    text-align: center;
    margin-bottom: 25px;
  }

  .tech-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .st-ss-section {
    padding: 50px 15px;
    text-align: center;
  }

  .st-ss-tag {
    font-size: 12px;
    padding: 5px 14px;
  }

  .st-ss-heading {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .st-ss-subheading {
    font-size: 14px;
    line-height: 1.7;
  }

  .st-ss-cat-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.8rem;
  }

  .st-ss-icon-grid {
    margin-left: 0 !important;
    justify-content: center;
    gap: 15px;
  }

  .st-ss-icon-box {
    width: 70px;
    height: 70px;
    padding: 12px;
  }

  /* Tech Section */
  .tech-section {
    padding: 45px 15px;
  }

  .tech-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .tech-section p {
    font-size: 14px;
    line-height: 1.7;
  }

  .tech-divider {
    margin: 25px 0;
  }

  .tech-category {
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .tech-logos {
    justify-content: center;
    gap: 15px;
  }

  .tech-logos img {
    height: 45px;
    max-width: 90px;
  }

  .row.align-items-center {
    text-align: left;
  }

  .col-md-9.text-start.tech-logos {
    justify-content: center;
  }
}


@media (max-width: 480px) {

  .st-ss-heading {
    font-size: 1.5rem;
  }

  .st-ss-subheading {
    font-size: 13px;
  }

  .st-ss-icon-box {
    width: 60px;
    height: 60px;
    padding: 10px;
  }

  .tech-section {
    padding: 40px 12px;
  }

  .tech-section h2 {
    font-size: 1.5rem;
  }

  .tech-logos {
    gap: 12px;
  }

  .tech-logos img {
    height: 38px;
    max-width: 75px;
  }

  .tech-category {
    font-size: 14px;
  }
}








/* layout12 */
/* Unique Prefix: st-val- (Section Template Core Values) */
.st-val-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-val-tag-wrapper {
  display: inline-block;
  /* border-top: 3px solid #007bff; */
  padding-top: 10px;
  margin-bottom: 15px;
}

.st-val-tag {
  text-transform: uppercase;
  color: #007bff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.st-val-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.st-val-card {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  height: 100%;
  transition: transform 0.3s ease;
}

.st-val-card:hover {
  transform: translateY(-5px);
}

.st-val-icon-box {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.st-val-icon-box img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  /* Assumes icons are dark; this makes them white for the colored background */
  filter: brightness(0) invert(1); 
}

.st-val-content h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  font-size: 1.2rem;
}

.st-val-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .st-val-section { padding: 60px 0; }
  .st-val-card { padding: 10px; }
}

@media (max-width: 576px) {
  .st-val-card { flex-direction: column; align-items: center; text-align: center; }
  .st-val-icon-box { margin-right: 0; margin-bottom: 15px; }
  .st-val-heading { font-size: 1.75rem; }
}

/* layout13 */
/* Unique Prefix: st-ctr- (Section Template Counters) */
.st-ctr-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-ctr-card {
  background: #fbfbfb;
  border-radius: 12px;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.03);
}

.st-ctr-card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 162, 255, 0.1);
  border-color: #00a2ff;
}

.st-ctr-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-ctr-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.st-ctr-card:hover .st-ctr-icon img {
  transform: scale(1.1);
}

.st-ctr-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #1a1a1a;
  line-height: 1;
}

.st-ctr-label {
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .st-ctr-number { font-size: 2.2rem; }
  .st-ctr-card { padding: 30px 15px; }
}

/* layout14 */
/* Unique Prefix: st-cnt- (Section Template Contact V2) */
.st-cnt-section {
  padding: 100px 0;
  background-color: #f0f7ff;
  font-family: 'Inter', sans-serif;
}

.st-cnt-header h2 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #3b6fb6;
  margin-bottom: 10px;
}

.st-cnt-header p {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 60px;
}

.st-cnt-img-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: #fff;
}

.st-cnt-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.st-cnt-form-group {
  position: relative;
  margin-bottom: 40px;
}

.st-cnt-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #c1d3e8;
  background: transparent;
  padding: 12px 0;
  outline: none;
  font-size: 1.1rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.st-cnt-input:focus {
  border-color: #3b6fb6;
}

.st-cnt-submit {
  background: #333;
  color: #fff;
  border: 2px solid #333;
  padding: 12px 35px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.st-cnt-submit:hover {
  background: #3b6fb6;
  border-color: #3b6fb6;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 111, 182, 0.3);
}

@media (max-width: 991px) {
  .st-cnt-section { padding: 60px 0; }
  .st-cnt-img-wrapper img { height: 400px; }
}

/* layout15 */
/* Unique Prefix: st-sd- (Section Template Service Detail) */
.st-sd-section {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-sd-img-container {
  position: relative;
  padding: 40px 0 0 40px; /* Space for the offset frame */
}

.st-sd-border-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 90%;
  border: 4px solid #00a2ff;
  z-index: 1;
  border-radius: 4px;
}

.st-sd-main-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.st-sd-main-image:hover {
  transform: scale(1.02);
}

.st-sd-tag-box {
  display: inline-block;
  border-bottom: 2px solid #00a2ff;
  margin-bottom: 20px;
}

.st-sd-tag {
  text-transform: uppercase;
  color: #00a2ff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.st-sd-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.st-sd-heading span {
  color: #00a2ff;
}

.st-sd-description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.st-sd-description p {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .st-sd-section { padding: 60px 0; }
  .st-sd-img-container { padding: 30px 0 0 30px; margin-bottom: 50px; }
  .st-sd-heading { font-size: 2.2rem; }
}


/* layout16 */
/* Unique Prefix: st-ts- (Section Template Tech Stack) */
.st-ts-section {
  /* padding: 100px 0; */
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-ts-tag {
  display: inline-block;
  color: #00a2ff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.st-ts-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.st-ts-subheading {
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.st-ts-card {
  background: #fcfcfc;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.st-ts-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border-color: #00a2ff;
  box-shadow: 0 15px 35px rgba(0, 162, 255, 0.08);
}

.st-ts-icon-box {
  height: 70px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-ts-icon-box img {
  max-height: 100%;
  max-width: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.st-ts-card:hover .st-ts-icon-box img {
  transform: scale(1.1);
}

.st-ts-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.st-ts-desc {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* .st-ts-section { padding: 60px 0; } */
  .st-ts-card { padding: 30px 20px; }
}

/* layout17 */
/* Unique Prefix: st-ind- (Section Template Industries) */
.st-ind-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  font-family: 'Inter', sans-serif;
}

.st-ind-tag-wrapper {
  display: inline-block;
  /* border-top: 3px solid #00a2ff; */
  padding-top: 12px;
  margin-bottom: 15px;
}

.st-ind-tag {
  text-transform: uppercase;
  color: #00a2ff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.st-ind-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 10px;
}

.st-ind-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.st-ind-card:hover {
  transform: translateY(-5px);
  border-color: #00a2ff;
  box-shadow: 0 15px 35px rgba(0, 162, 255, 0.1);
}

.st-ind-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.st-ind-icon-box {
  background: #f0f8ff;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.st-ind-card:hover .st-ind-icon-box {
  background: #00a2ff;
}

.st-ind-icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.st-ind-card:hover .st-ind-icon-box img {
  filter: brightness(0) invert(1);
}

.st-ind-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.st-ind-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .st-ind-section { padding: 60px 0; }
  .st-ind-card { padding: 25px; }
}

/* layout18 */
/* Unique Prefix: st-ben- (Section Template Benefits) */
.st-ben-section {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-ben-tag-line {
  display: inline-block;
  /* border-top: 3px solid #00a2ff; */
  padding-top: 12px;
  margin-bottom: 15px;
}

.st-ben-tag {
  text-transform: uppercase;
  color: #00a2ff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin: 0;
}

.st-ben-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 10px;
}

.st-ben-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 20px;
  height: 100%;
}

.st-ben-icon-circle {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.st-ben-item:hover .st-ben-icon-circle {
  transform: translateY(-10px) rotate(5deg);
  border-color: #00a2ff;
  box-shadow: 0 15px 30px rgba(0, 162, 255, 0.15);
}

.st-ben-icon-circle img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.st-ben-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.st-ben-item:hover .st-ben-title {
  color: #00a2ff;
}

.st-ben-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .st-ben-section { padding: 60px 0; }
  .st-ben-icon-circle { width: 70px; height: 70px; }
}

/* layout21 */
/* Unique Prefix: st-sv- (Section Template Services) */
.st-sv-section {
  padding: 60px;
  background-color: #fcfcfc;
  font-family: 'Inter', sans-serif;
}

.st-sv-tag-container {
  display: inline-block;
  /* border-bottom: 3px solid #00a2ff; */
  padding-top: 12px;
  margin-bottom: 20px;
}

.st-sv-tag {
  text-transform: uppercase;
  color: #00a2ff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

.st-sv-heading {
  font-size: 1.9rem;
  font-weight: 600;
  color: #1a1a1a;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.2;
}

.st-sv-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.st-sv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #00a2ff;
}

.st-sv-icon-wrapper {
  background: #f0f8ff;
  width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.st-sv-card:hover .st-sv-icon-wrapper {
  transform: scale(1.1) rotate(3deg);
  background: #00a2ff;
}

.st-sv-icon-wrapper img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* .st-sv-card:hover .st-sv-icon-wrapper img {
  filter: brightness(0) invert(1);
} */

.st-sv-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.st-sv-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .st-sv-section { padding: 60px 0; }
  .st-sv-heading { font-size: 2.2rem; }
}
/* layout22 */
/* Unique Prefix: st-ts- (Section Template Tech Stack) */

.st-ts-section {
  padding: 80px 0;
  background-color: #f9fdff;
  font-family: 'Inter', sans-serif;
}

.st-ts-heading {
  font-weight: 800;
  color: #1a1a1a;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.st-ts-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #00a2ff;
}

/* REMOVE CARD DESIGN */
.st-ts-logo-wrapper {
  width: 100%;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;

  transition: all 0.3s ease;
}

.st-ts-logo-wrapper:hover {
  transform: scale(1.08);
}

.st-ts-img {
  max-height: 45px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {

  .st-ts-logo-wrapper {
    height: 100px;
  }

  .st-ts-img {
    max-height: 35px;
  }
}

/* layout23 */
/* Unique Prefix: st-cl- (Section Template Clients) */
.st-cl-section {
  padding: 80px 0;
  background-color: #f8fbff;
  font-family: 'Inter', sans-serif;
}

.st-cl-tag-box {
  display: inline-block;
  /* border-top: 3px solid #00a2ff; */
  padding-top: 10px;
  margin-bottom: 15px;
}

.st-cl-tag {
  text-transform: uppercase;
  color: #00a2ff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin: 0;
}

.st-cl-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 10px;
  margin-bottom: 50px;
}

.st-cl-card {
  background: #ffffff;
  border-radius: 12px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px solid rgba(0, 162, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-cl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 162, 255, 0.1);
  border-color: #00a2ff;
}

.st-cl-logo {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  /* Premium touch: starts grayscale, turns color on hover */
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.st-cl-card:hover .st-cl-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .st-cl-section { padding: 50px 0; }
  .st-cl-card { height: 110px; padding: 15px; }
}

/* layout28 */
/* Unique Prefix: st-pc- (Section Template Partners & Certifications) */
.st-pc-section {
  padding: 50px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-pc-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.st-pc-badge {
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.st-pc-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 162, 255, 0.08);
  border-color: rgba(0, 162, 255, 0.2);
}

.st-pc-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s ease;
}

.st-pc-badge:hover .st-pc-label {
  color: #00a2ff;
}

.st-pc-logo-container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-pc-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .st-pc-section { padding: 60px 0; }
  .st-pc-badge { padding: 20px; }
}

/* layout29 */
/* Unique Prefix: st-mv- (Section Template Mission Vision) */
.st-mv-section {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.st-mv-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.st-mv-card {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 50px 40px;
  height: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

/* Accent bar effect */
.st-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #00a2ff;
  transition: width 0.3s ease;
  z-index: -1;
  opacity: 0.1;
}

.st-mv-card:hover {
  transform: translateY(-10px);
  border-color: #00a2ff;
  box-shadow: 0 20px 40px rgba(0, 162, 255, 0.08);
}

.st-mv-card:hover::before {
  width: 100%;
}

.st-mv-icon-wrap {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.st-mv-icon-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.st-mv-title {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.st-mv-card:hover .st-mv-title {
  color: #00a2ff;
}

.st-mv-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .st-mv-section { padding: 60px 0; }
  .st-mv-card { padding: 35px 25px; }
}


 .tech-section {
      padding: 70px;
      text-align: center;
      background-color: #007bff09;
    }

    .tech-section h2 {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 50px;
    }

    .tech-section h2 span {
      color: #007bff;
    }

    .tech-divider {
      /* border-top: 1px solid #dee2e6; */
      margin: 40px 0;
    }

    .tech-category {
      text-align: left;
      font-weight: 500;
      margin-bottom: 20px;
      color: #333;
    }

    .tech-logos img {
      height: 63px;
      margin: 15px 30px;
      transition: transform 0.3s ease;
    }

    .tech-logos img:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .tech-logos img {
        height: 60px;
        margin: 10px 15px;
      }
    }