.navmenu .menu-link {
    padding: 0px 0px ! important;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-color),
 color-mix(in srgb, var(--accent-color), #6366f1 30%));
    color: var(--contrast-color);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom:20px;
}
.main-heading{
    font-size:60px ! important;
}
.icon-wrapper-head{
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.icon-wrapper-head img {
    max-width: 100%;
    height: auto;
}
/* Mega Menu */
.mega-menu {
  width: 800px;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: none;
}

/* Grid inside dropdown */
.mega-item {
  display: flex;
  gap: 10px;
  padding: 5px;
  margin-bottom: 15px;
}

.mega-item i {
  font-size: 22px;
  color: #0d6efd;
}

.mega-item h6 {
  margin: 0;
  font-weight: 600;
}

.mega-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Hover effect */
.mega-item:hover {
  background: #f5f9fc;
  border-radius: 10px;
  color: #2F4FA3;
  border:1px solid #2F4FA3;
  transition: 0.3s;
}

/* Current-page highlight in the mega menu */
.menu-link.active .mega-item {
  background: #f5f9fc;
  border-radius: 10px;
  color: #2F4FA3;
  border: 1px solid #2F4FA3;
}

.menu-link.active .mega-item h6 {
  color: #2F4FA3;
}

/* Align dropdown center */
.dropdown-menu[data-bs-popper] {
  left: 50%;
  transform: translateX(-50%);
}

/* Mega menu - mobile */
@media (max-width: 1199px) {
  .navmenu .dropdown-menu.mega-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-height: 60vh;
    overflow-y: auto;
    margin-top: 10px;
    padding: 15px;
    box-shadow: none;
  }
}
.shine-btn {
  position: relative;
  /*background-image: linear-gradient(to right, #8FB1C1 , #2F4F9F) ! important;*/
      background: var(--accent-color);
  border: 3px solid #ffffff4d;
  overflow: hidden;
  color: #ffffff;
}

/* Shine effect */
.shine-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
   background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
  transform: skewX(-25deg);
}

/* Animation on hover */
.shine-btn:hover::before {
  animation: shine 0.8s ease forwards;
}
.shine-btn::before {
  animation: shine 2s infinite;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@media (max-width: 992px) {
.hero-title
{
    font-size: 30px !important;
}
.main-heading {
    font-size:32px ! important;
}
}
.faq-section {
  padding: 80px 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title h2 {
  font-weight: 700;
}

.faq-title span {
  color: #2F4FA3;
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  background-color: #2F4FA3;
  color: #fff;
}

.accordion-body {
  font-size: 14px;
  color: #6c757d;
}

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.services .service-card p {
    margin-bottom: 0px;
}
/* Section */
.loan-section {
  padding: 80px 0;
}

/* Heading */
.tags {
  color: #2F4FA3;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-title {
  font-weight: 700;
  font-size: 40px;
}

.main-title span {
  color: #2F4FA3;
}

/* Features */
.feature-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/*.icon-box {*/
/*  width: 95px;*/
/*  height: 45px;*/
/*  background: #ffffff;*/
/*  border-radius: 10px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: #2F4FA3;*/
/*  font-size: 22px;*/
/*}*/

/* Right Card */
.process-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  /*box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.step {
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.step:nth-child(2) .step-number {
  background: #dbeafe;
  color: #2563eb;
}

.step:nth-child(3) .step-number {
  background: #ede9fe;
  color: #7c3aed;
}

.step-box {
  background: #f8fafc;
  padding: 15px;
  border-radius: 10px;
}

.step.active .step-box {
  background: #f3e8ff;
}
/*--------------------------------about us---------------------------------------*/
 .card-custom {
      background: #1d293d;
      border-radius: 16px;
      padding: 25px;
      border: 1px solid rgba(255,255,255,0.08);
       min-height: 100%;
      transition: 0.3s;
    }

    .card-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    .stars i {
      color: #ffc107;
      margin-right: 3px;
    }

    .quote {
      font-size: 16px;
      color: #cbd5e1;
      line-height: 1.7;
      margin-top: 15px;
      padding-top:20px;
      padding-bottom:20px;
        font-style: italic;
    }

    .profile {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .profile-left {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #000;
      margin-right: 10px;
    }

    .verified {
      color: #ffc107;
    }
    .client-review
    {
     background-color: #0f172b;
    }
   .client-review .section-badge {
      background: #1d293d;
      border: none;
      animation: shadowBlink 1s infinite;
    }
    .client-review .profile strong {
        color: #ffc107;
    }
    .client-review .section-title h2 {
        color: #ffffff;
    }
    .client-review .section-title p {
        color: #ffffff;
    }
    .client-review .section-title .span {
        color: #ffc107;
    }
    @keyframes shadowBlink {
    0%   { box-shadow: 0 0 10px #ffffff; }
    50%  { box-shadow: 0 0 0px transparent; }
    100% { box-shadow: 0 0 10px #ffffff; }
    }
    .about-us-section .step-box {
    text-align: center;
    padding: 20px;
    background:#ffffff;
}

.about-us-section .icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.about-us-section .icon-circle i {
    font-size: 28px;
    color: #2F4FA3;
}

.about-us-section .step-number {
    position: absolute;
    top: -5px;
    left:60px;
    background: #2F4FA3;
    color: #fff;
    font-size: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.about-us-section .step-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000000;
}
/*---------------------------------website page---------------------------------*/
.website-section {
  padding: 90px 0;
  text-align: center;
}

.website-section .process-title {
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.website-section .process-title span {
  color: #2F4FA3;
}

.website-section .row {
  row-gap: 32px;
  --bs-gutter-x: 2rem;
}

.website-section .process-card {
  position: relative;
  padding: 44px 28px 34px;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent-color, #2F4FA3) 8%, transparent);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease;
}

.website-section .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
  border-color: color-mix(in srgb, var(--accent-color, #2F4FA3) 30%, transparent);
}

.website-section .process-icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #2F4FA3;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.website-section .step-number {
  position: absolute;
  top: -16px;
  left: 28px;
  background: linear-gradient(135deg, #2F4FA3, #4a6ee0);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color, #2F4FA3) 45%, transparent);
  border: 3px solid #fff;
  z-index: 10;
}

.website-section .process-card h4,
.website-section .process-card h5 {
  font-weight: 700;
  font-size: 19px;
  margin-top: 6px;
  margin-bottom: 12px;
  color: var(--heading-color, #2F4F9F);
  line-height: 1.4;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.website-section .process-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 0;
}

.website-section .icon-wrapper-2 {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;   /* center horizontally */
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  position: relative;
  transition: transform 0.4s ease;
}

.website-section .process-card:hover .icon-wrapper-2 {
  transform: scale(1.06);
}

/* Circle */
.website-section .circle-bg {
  position: absolute;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 32% 28%,
    color-mix(in srgb, var(--accent-color, #2F4FA3) 14%, #ffffff),
    color-mix(in srgb, var(--accent-color, #2F4FA3) 6%, #f4f7fd));
  border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.6),
              0 10px 26px color-mix(in srgb, var(--accent-color, #2F4FA3) 14%, transparent);
  z-index: 0;
  transition: box-shadow 0.4s ease;
}

.website-section .process-card:hover .circle-bg {
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.6),
              0 16px 36px color-mix(in srgb, var(--accent-color, #2F4FA3) 26%, transparent);
}

/* Image center inside circle */
.website-section .icon-wrapper img {
  width: 102px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.12));
}

@media (max-width: 768px) {
  .website-section .process-title {
    font-size: 26px;
  }
  .website-section .process-card {
    padding: 40px 22px 28px;
  }
}
/*---------------------------------Home page------------------------------------*/
.hero-slider .carousel-item {
  height: 90vh;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 850px;
}

.glass-box {
  background: #ffffff0d;
  border: 1px solid #ffffff26;
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
}
.glass-box p {
    font-size:20px;
}
.btn-custom {
  border-radius: 30px;
  padding: 10px 20px;
}

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  border-radius: 10px;
}
.hero-title
{
    color: #fff;
    margin-bottom: 15px;
    font-size: 68px;
    text-shadow: 0 4px 20px #000c, 0 2px 8px #0009;
    margin-bottom: 20px;
    padding: 0;
    font-weight: 900;
    line-height: 1.4;
    display: inline-block;
    position: relative;
}
.btn-services{
    color: var(--contrast-color);
    font-size: 16px;
    padding: 10px 20px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-services:hover {
    background: #2F4FA3;
    color:#ffffff;
    border: 3px solid #ffffff4d;
}

.about-content h2{
    font-size:48px;
}
.second-heading{
    color:#2F4FA3;
}
.feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature i {
  color: #2F4FA3;
  font-size: 30px;
}

.feature h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.experience-badge-second {
          position: absolute;
    bottom: 30px;
    right: -50px;
    background: #ffffff;
    border: 2px solid #2F4FA3;
    color: #2F4FA3;
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 4;
    animation: float-badge 3s ease-in-out infinite;
}
.about .experience-badge-second .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.about .experience-badge-second .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}
 .swiper:hover .swiper-wrapper {
          animation-play-state: paused;
        }
    .swiper-wrapper {
      transition-timing-function: linear !important;
    }
    
    .swiper-slide {
      width: auto; /* important for continuous flow */
    }
    .percent::after {
  content: "%";
}
/*--------------------erp software---------------------------------------------*/

 .services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid #ffffff;
}
.card-1 .icon-bg{
    background: #eff6ff;
}
.card-1 .icon-bg i{
    color: #007aff ! important;
}
.card-2 .icon-bg{
    background: #f0fdf4;
}
.card-2 .icon-bg i{
    color: #00c950 ! important;
}
.card-3 .icon-bg{
    background: #fff7ed;
}
.card-3 .icon-bg i{
    color: #ff6900 ! important;
}
.card-4 .icon-bg{
    background: #ecfeff;
}
.card-4 .icon-bg i{
    color: #00b8db ! important;
}
.card-5 .icon-bg{
    background: #f3e8ff;
}
.card-5 .icon-bg i{
    color: #9810fa ! important;
}
.service-card h6{
    font-size:14px;
}
.icon-box {
  width: 45px;
  height: 45px;
  background: #FFFFFF;
 box-shadow: 0 1px 3px 0 #0000001a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2F4FA3;
}

.ai-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
  margin: auto;
  position: relative;
}

.analysis-box {
  background: #f5f3ff;
  border-radius: 12px;
  padding: 15px;
}
  .main-card {
    border-radius: 20px;
    background: #fff;
    padding: 25px;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3),
                0 0 60px rgba(0, 123, 255, 0.2);
    position: relative;
  }

  .user-msg {
    background: #f1f1f4;
    border-radius: 25px;
    padding: 12px 18px;
    display: inline-block;
    margin-left: 10px;
    color: #555;
  }

  .avatar {
    width: 40px;
    height: 40px;
    background: #dcdcdc;
    border-radius: 50%;
  }

  .response-box {
    background: #f1f5f9;
    border-radius: 15px;
    padding: 20px;
    text-align:start;
    margin-top: 20px;
    border: 1px solid #f1f5f9;
  }

  .response-title {
    color: #2F4FA3;
    font-weight: 600;
  }
  
  /*---------------------------------------banking software-------------------------------------*/
  .why-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.why-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 60px;
  color: #1f2937;
}

/* Icon Circle */
.icon-circle {
  width: 80px ! important;
  height: 80px ! important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

/* Different colors */
.icon-blue {
  background: #e0ecff;
  color: #2b6cb0;
}

.icon-teal {
  background: #d9f3f1;
  color: #0f766e;
}

.icon-purple {
  background: #efe7ff;
  color: #7c3aed;
}

/* Text */
.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
  max-width: 250px;
  margin: 0 auto;
}
.banking-software .icon-box{
    width: 100px;
    height: 50px;
    background: #FFFFFF;
    box-shadow: 0 1px 3px 0 #0000001a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2F4FA3;
    }
/*---------------------------------------------digital marketing-----------------------------------*/
.strategy-section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-weight: 700;
  margin-bottom: 50px;
}

/* Cards */
.strategy-card {
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Background styles */
.card-blue {
  background: #eaf2ff;
  border: 1px solid #dbeafe;
}

.card-orange {
  background: #fff1e6;
  border: 1px solid #ddeff4;
}

/* Corner circle */
.strategy-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
}

/* Icon */
.digital-marketing .icon-boxs {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.icon-blue {
  background: #2563eb;
}

.icon-orange {
  background: #f97316;
}

/* Text */
.strategy-card h5 {
  font-weight: 700;
}

.strategy-card p {
  font-size: 14px;
  color: #6b7280;
}

/* List */
.feature-list {
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-list i {
  margin-right: 8px;
}

.success {
  color: #16a34a;
}

.warning {
  color: #f59e0b;
}

/* Footer text */
.note {
  margin-top: 40px;
  font-style: italic;
  color: #6b7280;
}
.tools-section {
  background: linear-gradient(135deg, #0b1c2e, #07111d);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.tools-section h4 {
  color: #9aa4ad;
  font-weight:700;
  margin-bottom: 40px;
}

.tool-card {
  padding: 15px 8px;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.tool-card i {
  font-size: 20px;
  color: #ffffff;
  padding-right: 3px;
}

.tool-card span {
  font-size: 17px;
  color: #d1d9e0;
}
.tool-card p {
    font-size: 14px;
    margin-top: 10px;
}
.tool-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
/*---------------------------------------------------footer--------------------------------------------*/
.footer {
  background: #f5f9fc;
  position: relative;
  background: linear-gradient(180deg, #f5f9fc 0%, #eef4fb 100%);
  overflow: hidden;
}
.loc-icon-circle {
      width: 58px ! important;
    height: 58px ! important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    font-size: 24px;
    position: relative;
    flex-shrink: 0;
}

.loc-icon-circle i {
  position: relative;
  z-index: 1;
}

.loc-icon-circle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color, #2F4FA3) 45%, transparent);
  animation: locPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes locPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
/* Grid pattern */
.footer::before {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(color-mix(in srgb, var(--accent-color, #2F4FA3) 22%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent-color, #2F4FA3) 22%, transparent) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, #000 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, #000 40%, transparent 90%);
  animation: footerGridFade 6s ease-in-out infinite;
}

@keyframes footerGridFade {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.22; }
}

/* Optional glowing top border */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00c6ff, #2F4FA3);
}
.footer h2 {
  font-weight: 700;
  font-size:72px;
}

.footer-heading {
  background: linear-gradient(90deg, #000000 0%, #2a5298 25%, #6ea8dc 50%, #2a5298 75%, #000000 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footerHeadingShimmer 6s linear infinite;
}

@keyframes footerHeadingShimmer {
  0% { background-position: 0% center; }
  100% { background-position: -250% center; }
}

.footer-title-second {
        color: #2F4FA3;
}
.footer-title {
    font-size:24px ! important;
  color: #2F4FA3;
  font-weight: 700 ! important;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-color, #2F4FA3), #6ea8dc);
}

.row.text-center .footer-title::after,
h5.footer-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer a {
  text-decoration: none;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  width: fit-content;
  transition: color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.footer a .footer-link-arrow {
  font-size: 12px;
  color: var(--accent-color, #2F4FA3);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #2F4FA3;
  transform: translateX(4px);
}

.footer a:hover .footer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-row {
  margin-bottom: 14px;
}

.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-icon-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #e8f1fb, #d3e4f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F4FA3;
  box-shadow: 0 4px 14px rgba(47, 79, 163, 0.12);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease,
              background 0.35s ease;
  flex-shrink: 0;
}

.footer-contact-row:hover .footer-icon-circle {
  transform: translateY(-3px) scale(1.08);
  background: linear-gradient(135deg, var(--accent-color, #2F4FA3), #4a6ee0);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 79, 163, 0.3);
}

.office-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
  border: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
  border-color: color-mix(in srgb, var(--accent-color, #2F4FA3) 20%, transparent);
}

.office-card .loc-icon-circle {
  background: linear-gradient(135deg, var(--accent-color, #2F4FA3), #4a6ee0);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 79, 163, 0.3);
}

.subscribe-box input {
  border-radius: 30px;
  padding: 12px 22px;
  border: 1px solid #d7e2f0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.subscribe-box input:focus {
  outline: none;
  border-color: var(--accent-color, #2F4FA3);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color, #2F4FA3) 15%, transparent);
}

.subscribe-btn {
  border-radius: 30px;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color, #2F4FA3) 45%, transparent);
}

@media (max-width: 576px) {
  .subscribe-box {
    flex-direction: column;
    gap: 14px;
  }

  .subscribe-box input.form-control {
    width: 100% !important;
    margin: 0 !important;
  }

  .subscribe-box .subscribe-btn {
    width: 100%;
    justify-content: center;
    margin: 0 !important;
  }
}

.footer-text{
    font-size:18px;
}

/* Social icons */
.social-icons {
  margin-top: 30px;
}

.footer .social-icons a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d7e2;
  border-radius: 50%;
  margin: 0 8px;
  color: #1e3c72;
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease,
              background 0.35s ease,
              border-color 0.35s ease,
              color 0.35s ease;
}

.footer .social-icons a:hover {
  background: linear-gradient(135deg, var(--accent-color, #2F4FA3), #4a6ee0);
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--accent-color, #2F4FA3) 40%, transparent);
}

@media (max-width: 768px) {
  .footer h2 {
    font-size: 44px;
  }
}
/*----------------------------------Employee Productivity Software------------------------------------*/
.employee-productivity-software .cta-section {
    background: linear-gradient(135deg, #101828, color-mix(in srgb, #101828 70%, #101828));
}
.employee-productivity-software .cta-section .cta-label {
    color: #3f56ba;
    border: 1px solid #3f56ba;
}
.employee-productivity-software .cta-section .btn-cta-primary {
    background: #3f56ba;
    color: #ffffff;
}
.employee-productivity-software .service-card {
    background-color: #f9fafb;
    border:1px solid #f3f4f6;
    box-shadow: none;
}
.employee-productivity-software .service-card:hover {
    background-color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid #bedbff;
}
.timeline-section {
      background: linear-gradient(135deg, var(--accent-color), 
                  color-mix(in srgb, var(--accent-color) 70%, #6366f1));
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .timeline-line {
    height: 3px;
    background: #5f7de0;
    position: absolute;
    top: 23%;
    left: 19%;
    width: 62%;
    z-index: 0;
    }

    .timeline-step {
      position: relative;
      z-index: 1;
    }

    .circle-icon {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin: 0 auto 20px;
      background: transparent;
      border: 4px solid;
    }

    .icon-blue {
      border-color: #4da3ff;
      color: #ffffff;
      background-color: #193cd8;
    }

    .icon-green {
      border-color: #28d17c;
      color: #ffffff;
      background-color: #193cd8;
    }

    .icon-orange {
      border-color: orange;
      color: #ffffff;
      background-color: #193cd8;
    }

    .timeline-text {
      font-size: 14px;
      color: #dcdcdc;
    }
    .timeline-section h2{
        color:#ffffff;
    
    }
    .timeline-card h5{
        color:#ffffff;
        }
@media (max-width: 992px) {
.timeline-line
{
 display:none;
}
}

/*-------------------------------------------------------education software-----------------------------------------------------------*/
 .education-software .service-card h3 {
     padding-left:15px;
 }
 .education-software .service-card .icon-wrapper {
     margin-left:15px;
 }
 /*-----------------------------------------------------multi vendor platform--------------------------------------------------------*/
 .multi-vendor-platform .cta-section {
    background: #441306;
}
.multi-vendor-platform .cta-section .cta-label {
    border:1px solid #F57C00;
    color:#F57C00;
}
.portfolio .cta-section .btn-cta-primary {
    color:#441306;
}
.multi-vendor .section-badge {
    background:#F57C00;
}
.multi-vendor .tags{
   color:#F57C00; 
}
.multi-vendor .main-title span {
    color:#F57C00;
}
.multi-vendor .icon-box {
    color:#F57C00;
    width: 61px;
    height: 50px;
}
/*----------------------------------custom software development------------------------------------*/
.custom-software-development .cta-section {
    background: linear-gradient(135deg, #101828, color-mix(in srgb, #101828 70%, #101828));
}
    .custom-software .feature-box {
      margin-bottom: 40px;
    }

    .custom-software .icon-box {
      width: 95px;
      height: 55px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

   .custom-software .feature-box h5 {
      font-weight: 600;
    }

  .timeline-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
  }

  .timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .step-circle {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F57C00, #F57C00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 20px;
    font-size: 18px;
  }

  .timeline-content h5 {
    margin: 0;
    font-weight: 600;
  }

  .timeline-content p {
    margin: 5px 0 0;
    color: #6b7280;
    font-size: 14px;
  }

  @media (max-width: 576px) {
    .timeline-item {
      flex-direction: column;
      text-align: center;
    }

    .step-circle {
      margin-bottom: 10px;
      margin-right: 0;
    }
  }
  .custom-software .cta-section {
    background: linear-gradient(135deg, #101828,
color-mix(in srgb, #101828 70%, #101828));
}

/* Legal pages: Terms of Service, Privacy Policy, Cookies */
.legal-content {
  padding: 60px 0 80px;
}

.legal-body {
  max-width: 860px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-body ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--accent-color);
  text-decoration: underline;
}

.legal-contact {
  list-style: none;
  padding-left: 0;
}

.legal-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-contact i {
  color: var(--accent-color);
  font-size: 18px;
}

.portfolio .project-card .project-info h3 a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.portfolio .project-card .project-info h3 a:hover {
  color: var(--accent-color);
}

.portfolio .project-card .project-info .project-meta .tech-tags a {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  text-decoration: none;
}

/* Blog breadcrumb bar */
.blog-breadcrumb-bar {
  padding: 18px 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--accent-color), transparent 94%),
    color-mix(in srgb, var(--accent-color), transparent 97%));
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  background: none;
  gap: 0;
}

.blog-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.blog-breadcrumb .breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-breadcrumb .breadcrumb-item a i {
  font-size: 14px;
  color: var(--accent-color);
}

.blog-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\203A";
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 45%);
  padding: 0 12px;
  float: none;
}

.blog-breadcrumb .breadcrumb-item.active {
  min-width: 0;
}

.blog-breadcrumb .crumb-current-text {
  display: inline-block;
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  vertical-align: middle;
}

@media (max-width: 576px) {
  .blog-breadcrumb .crumb-current-text {
    max-width: 160px;
  }

  .blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 6px;
  }
}

/* Blog detail page */
.blog-detail {
  padding: 40px 0 80px;
}

.blog-article {
  max-width: 860px;
  margin: 0 auto;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-author {
  color: #888;
  font-size: 14px;
}

.blog-author i {
  margin-right: 4px;
  color: var(--accent-color);
}

.blog-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: #888;
  font-size: 14px;
}

.blog-date i {
  margin-right: 4px;
}

.blog-article-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .blog-article-title {
    font-size: 26px;
  }
}

.blog-article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.blog-article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.blog-content h3:first-child {
  margin-top: 0;
}

.blog-content p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 16px;
}

.blog-content > p:first-of-type {
  font-size: 19px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color) 88%, transparent);
}

.blog-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.blog-content h4,
.blog-content h5 {
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
  color: #555;
  line-height: 1.85;
  font-size: 16px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--heading-color);
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

.blog-content strong {
  color: var(--heading-color);
}

.blog-content table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.blog-content table th,
.blog-content table td {
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  text-align: left;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tag-pill {
  padding: 6px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.blog-article-back {
  margin-top: 30px;
}

.blog-article-back a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.blog-article-back a:hover {
  text-decoration: underline;
}

.related-posts {
  max-width: 1200px;
  margin: 80px auto 0;
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.related-posts-title {
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.project-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card-link .project-info h3 {
  transition: 0.3s;
}

.project-card-link:hover .project-info h3 {
  color: var(--accent-color);
}

/* -------------------------------------------------- */
/* Blog listing — hero + filters + cards               */
/* -------------------------------------------------- */
.blog-listing {
  padding-bottom: 40px;
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.blog-card-meta i {
  color: var(--accent-color);
  margin-right: 4px;
}

/* Hero featured card */
.blog-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px color-mix(in srgb, var(--default-color) 10%, transparent);
  text-decoration: none;
  color: inherit;
  margin-bottom: 40px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.blog-hero-card:hover {
  box-shadow: 0 24px 70px color-mix(in srgb, var(--default-color) 16%, transparent);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .blog-hero-card {
    grid-template-columns: 1fr;
  }
}

.blog-hero-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .blog-hero-image {
    min-height: 220px;
  }
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-hero-card:hover .blog-hero-image img {
  transform: scale(1.06);
}

.blog-hero-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #6366f1));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 50%, transparent);
}

.blog-hero-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .blog-hero-body {
    padding: 28px;
  }
}

.blog-hero-body .blog-card-category {
  align-self: flex-start;
}

.blog-hero-body h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 576px) {
  .blog-hero-body h2 {
    font-size: 22px;
  }
}

.blog-hero-body p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin: 0;
}

.blog-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 4px;
  transition: gap 0.3s ease;
}

.blog-hero-card:hover .blog-hero-cta {
  gap: 14px;
}

/* Filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  margin: 0 0 36px;
  list-style: none;
  background: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color) 8%, transparent);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .blog-filters {
    border-radius: 16px;
    width: 100%;
  }
}

.blog-filters li {
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--default-color);
  background: transparent;
  white-space: nowrap;
}

.blog-filters li:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.blog-filters li.filter-active {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

/* Blog cards */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-image .blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
}

.blog-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-body h3 {
  color: var(--accent-color);
}

.blog-card-body p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-cta {
  gap: 12px;
}

.blog-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.blog-empty-state i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

/* Remove default browser focus box on the nav dropdown toggle */
.navmenu a:focus,
.navmenu a.dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

/* Fix: .navmenu .active sets text color equal to the Contact button's own
   background (--nav-hover-color === --accent-color), making the label and
   icon invisible whenever the Contact button is the active nav item. */
.navmenu .btn-getstarted,
.navmenu .btn-getstarted.active,
.navmenu .btn-getstarted:focus,
.navmenu .btn-getstarted.active:focus {
  color: var(--contrast-color) !important;
}

/* H1 page headings inside the blue gradient CTA/hero section need white
   text for contrast; the same .main-heading class is also reused as an H2
   on light backgrounds elsewhere, so this is scoped to .cta-section only. */
.cta-section .main-heading {
  color: #ffffff !important;
}

/* -------------------------------------------------- */
/* Sub-link groups styled as proper buttons            */
/* -------------------------------------------------- */

/* Footer "Quick Links" / "Our Solutions" lists */
.footer a.footer-link-btn {
  gap: 8px;
  padding: 9px 16px;
  margin-bottom: 8px;
  border-radius: 30px;
  background: color-mix(in srgb, var(--accent-color, #2F4FA3) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color, #2F4FA3) 12%, transparent);
}

.footer a.footer-link-btn .footer-link-arrow {
  opacity: 1;
  transform: none;
  position: static;
}

.footer a.footer-link-btn:hover {
  background: var(--accent-color, #2F4FA3);
  color: #fff;
  transform: translateX(0) translateY(-2px);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color, #2F4FA3) 35%, transparent);
}

.footer a.footer-link-btn:hover .footer-link-arrow {
  color: #fff;
}

/* "View All Solutions" button at the bottom of the mega menu */
.view-all-solutions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--accent-color, #2F4FA3);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-all-solutions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color, #2F4FA3) 40%, transparent);
}

/* Mega-menu service links: look like buttons/cards by default, not only on hover */
.mega-item {
  border: 1px solid color-mix(in srgb, var(--accent-color, #2F4FA3) 10%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color, #2F4FA3) 3%, transparent);
  transition: all 0.25s ease;
}