﻿/* ===== Section ===== */
.useful-section {
  background: #f3f6fd;
}

/* ===== Common Card ===== */
.info-support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 40px 80px;
  border: 1.5px solid #1e3a8a;
  border-radius: 14px;
  background: #dfe6fd;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== Icon ===== */
.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 100%;
  height: auto;
}

/* ===== Title ===== */
.info-support-card h4 {
  font-size: 21px;
  font-weight: 600 !important;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 14px;
  font-family: Poppins;
}

/* ===== Information List ===== */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: inherit;
}

/* ===== Hover ===== */
.info-support-card:hover {
    background: #1e3a8a;
    text-decoration: none;
}

.info-support-card:hover h4,
.info-support-card:hover .info-list li,
.info-support-card:hover .info-list li::before {
  color: #ffffff;
}
.ism-hmBanner_marquee_label p {
    margin: 0;
    font-size: 1.25rem;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
}
.marquee-icon img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
}
.center-card {
  justify-content: center;
}
.py-10 {
  padding-top: 5rem !important;
  padding-bottom: 8rem !important;
}
.ism-hmBanner_marquee {
  background: transparent !important;
}
.ism-hmBanner_marquee_value a {
  color: #1e3a8a;
}
.ism-hmBanner_marquee_label {
  background: transparent !important;
  color: #1e3a8a;
}

.ism-hmBanner_marquee:hover .quote {
    animation-play-state: paused;
}
.quote-rotator {
  height: 90px;
  overflow: hidden;
  padding: 10px 20px;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

.quote-track {
  display: flex;
  flex-direction: column;
  animation: rotateQuotes 50s infinite;
}

.quote {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  color: #1e3a8a;
  line-height: 1.5;
}

.quote span {
  margin-top: 6px;
  font-size: 15px;
  font-weight: bold;
  color: #1e3a8a;
}

/* Animation */
@keyframes rotateQuotes {
  0%   { transform: translateY(0); }
  16%  { transform: translateY(0); }

  20%  { transform: translateY(-90px); }
  36%  { transform: translateY(-90px); }

  40%  { transform: translateY(-180px); }
  56%  { transform: translateY(-180px); }

  60%  { transform: translateY(-270px); }
  76%  { transform: translateY(-270px); }

  80%  { transform: translateY(-360px); }
  96%  { transform: translateY(-360px); }

  100% { transform: translateY(0); }
}

/* Wrapper */
.investor-notes-wrap {
    padding: 2.5rem 0 2rem;
}

/* Sticky note base */
.investor-note {
    position: relative;
    background: #ffffff;
    border-left: 6px solid #1e3a8a;
    border-radius: 10px;
    padding: 1.8rem 1.9rem;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Small note variation */
.small-note {
    transform: rotate(-0.4deg);
}

/* Pin */
.note-pin {
    position: absolute;
    top: -9px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #1e3a8a;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* Heading */
.investor-note h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.6rem;
    text-align: center;
}

/* Text */
.investor-note p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #1e3a8a;
    margin: 0;
}

/* Space before cards */
.investor-notes-wrap + section {
    margin-top: 2.2rem;
}

/* Mobile cleanup */
@media (max-width: 768px) {
    .small-note {
        transform: none;
    }
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
  .info-support-card {
    margin-bottom: 24px;
    padding: 32px 20px;
    margin: 0 2.5rem;
  }

  .info-support-card h4 {
    font-size: 25px;
  }
  .support-helpdesk-card {
    margin-bottom: 24px;
    padding: 32px 29px;
  }
}
/* ============================
   Mobile & Tablet Responsive
   ============================ */

@media (max-width: 768px) {
  .quote-rotator {
    height: 110px;
    padding: 8px 12px;
  }

  .quote {
    min-height: 110px;
    font-size: 18px;
    line-height: 1.4;
  }

  .quote span {
    font-size: 15px;
  }

  /* Updated animation for mobile height */
  @keyframes rotateQuotes {
    0%   { transform: translateY(0); }
    16%  { transform: translateY(0); }

    20%  { transform: translateY(-110px); }
    36%  { transform: translateY(-110px); }

    40%  { transform: translateY(-220px); }
    56%  { transform: translateY(-220px); }

    60%  { transform: translateY(-330px); }
    76%  { transform: translateY(-330px); }

    80%  { transform: translateY(-440px); }
    96%  { transform: translateY(-440px); }

    100% { transform: translateY(0); }
  }
}

/* ============================
   Small Mobile (≤480px)
   ============================ */

@media (max-width: 480px) {
  .quote-rotator {
    height: 120px;
    padding: 6px 10px;
  }

  .quote {
    min-height: 120px;
    font-size: 17px;
  }

  .quote span {
    font-size: 14px;
    font-weight: 600;
  }

  /* Updated animation for small mobile */
  @keyframes rotateQuotes {
    0%   { transform: translateY(0); }
    16%  { transform: translateY(0); }

    20%  { transform: translateY(-120px); }
    36%  { transform: translateY(-120px); }

    40%  { transform: translateY(-240px); }
    56%  { transform: translateY(-240px); }

    60%  { transform: translateY(-360px); }
    76%  { transform: translateY(-360px); }

    80%  { transform: translateY(-480px); }
    96%  { transform: translateY(-480px); }

    100% { transform: translateY(0); }
  }
}



/* New Landing Page CSS */
.info-box{
  background: white;
  border: 1px solid #1e3a8a;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  color: #1e3a8a;
}

.info-container > a{
  text-decoration: none !important;
  color: #000000
}

.info-box-heading > img{
  width: 100px;
  margin: 10px;
}

.info-btn{
  outline: none;
  border: none;
  background: white;
  border-radius: 15px #1e3a8a;
  
}

.info-box:hover{
  background: #363f76;
  color: white;
  outline: none;
}

.info-box:hover img {
  filter: brightness(0) invert(1);
}
