body {
  max-width: 3000px;
  min-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

body {
    background: #fff !important;
}


.text-primary {
    color: #3a3fbd !important;
}

.btn-primary {
    background-color: #3a3fbd !important;
}

.text-orange {
    color: #ff6600 !important;
}

.hyper-link {
    color: #ff6600 !important;
    text-decoration: underline !important;
}
.hyper-link:focus {
    color: #ff6600 !important;
}
.section-text {
    color: var(--dark-3);
}

.case-study-header-text {
    color: white !important;
}

.header-button {
    border-color: white !important;
    color: white !important;
}

.header-button:hover,
:focus {
    border-color: white !important;
    background: transparent !important;
    color: white !important;
}

.primary-bg {
    /* background: #3a3fbd !important; */
    background: linear-gradient(135deg, #3a3fbd 0%, #ff6600 100%);
    color: #fff;
}

.highlight {
    color: #ff6600;
    font-weight: 600;
}

.svg-sep {
    display: block;
    width: 100%;
    height: auto;
}

.card {
    border-radius: 0.5rem;
}

.section-icon {
    width: 50px;
    height: 50px;
}

.case-svg {
    max-width: 140px;
    margin-bottom: 1rem;
}

.back-button-parent{
    width: auto;
    display: inline-block;
    border: 2px solid #000;
    border-radius: 0.5rem;
    background: #fff;
    padding: 1%;
}

.back-button {
  display: inline-flex;
  align-items: center !important;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-weight: 500; /* Optional: makes "Back" more visible */
  font-size: 1.08rem; /* Optional: slightly larger text */
}

.back-button:hover {
    color: #ff6600;
}
.back-button:focus {
    color: #ff6600 !important;
}

/* Cover Image */

.cover-image-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;           /* Comfort padding for the text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-image-animate {
  position: absolute;
  inset: 0 0 0 0;            /* Stretches image to section edges */
  width: 100%;
  height: 150%;               /* Tall enough for clear pan effect */
  min-height: 350px;          /* Ensures a minimum image visibility */
  object-fit: cover;
  object-position: top;
  z-index: 1;
  animation: panDownImageLoop 14s linear infinite alternate;
}

/* Text block stays above the image, naturally centered */
.cover-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 800px;
  background: rgba(0,0,0,0.58); /* Optional overlay for readability */
  padding: 32px 16px;
  border-radius: 14px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(34,34,34,0.4);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .cover-content-center { padding: 16px 8px; }
  .cover-image-animate { min-height: 200px; }
}

/* Pan down animation: moves image from top to lower portion */
@keyframes panDownImageLoop {
  0%   { object-position: top; }
  100% { object-position: bottom; }
}

.white-text{
    color: #fff;
}
.primary-color-text{
    color: #3a3fbd;
}

.icon-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3fbd;
  box-shadow: 0 2px 6px rgba(255,102,0,0.13);
  flex-shrink: 0;
}

.expertise-title {
  color: #3a3fbd;
  font-weight: 600;
  margin-right: 5px;
}

@media (max-width: 600px) {
  .container { padding: 1rem .6rem !important; }
  .expertise-title { font-size: 1rem;}
}


/* Card Logo related Styling */

.tool-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 3px 18px rgba(58,63,189,0.12), 0 1.5px 6px rgba(34,34,34,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 12px 12px;
  border: none;
  aspect-ratio: 1 / 1;   /* <--- makes the card perfectly square */
  width: 100%;
  max-width: 180px;      /* Optional: set a max width for desktop */
  min-width: 100px;      /* Optional: set a min width for mobile */
  margin: 0 auto;
  transition: box-shadow 0.18s;
}


.tool-card:hover {
  box-shadow: 0 6px 32px rgba(58,63,189,0.16), 0 4px 14px rgba(255,102,0,0.09);
}
.tool-card-image {
  width: 80%;                   /* Use % so it scales within square */
  height: 80%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 0.7rem;
  object-fit: contain;
}

.tool-card-label {
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 1.04rem;
  color: #3a3fbd;
  letter-spacing: 0.01em;
}


.left-main-image {
  border-radius: 14px !important;
  max-width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: -12.5px -10px 0 0px #ff6600
}


