h2 {
    font-size: 32px!important;
    text-align: center;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

p {
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
    font-size: 18px!important;
    color: #23291fcc;
    font-family: 'Inter', sans-serif;
}
.industry-heading {
    color: #fff;
    text-align: center;
    position: relative;
}
    .industry-title{
        font-size: 2.5rem; font-weight: 700; color: #1b1b1b; line-height: 1.3;
    }
    .partners-section {
    padding: 20px 0 ;
    text-align: center;
    background-color: #fff;
}
.swiper-slide img {
    width: 100%!important;
    max-width: 90px;
    height: auto;
    margin: 0 auto;
    filter: grayscale(1);
}
.swiper-slide {
    flex-shrink: 1!important;
}
.swiper-wrapper {
    align-items: center;
}
.swiper-slide img:hover {
    filter: grayscale(0);
    scale: 1.1;
}
.industry-section {
  padding: 40px 20px;
  background: #f9fafb;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 0fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.industry-logo {
  max-height: 160px;
  margin-bottom: 15px;
  object-fit: contain;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.industry-card:hover {
  box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
  border: 2px solid #25D366; /* WhatsApp green or any highlight color */
}

.custom-faq-accordion { margin-top:30px; }
.custom-faq-accordion .faq-heading {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-text {
    flex: 1;
    color: #333;
    font-size: 16px!important;
}
.faq-icon {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(180deg, #024815 0%, #000801 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  transition: transform 0.3s ease;
}
.faq-answer {
    max-height:0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #fff;
}
.faq-item p {
    font-size:16px!important;
}
.faq-answer.open {
    opacity: 1;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    
}
.usecase-section {
    background: #fffaeb;
    padding: 60px 20px;
}
.cta-button {
    margin-top: 8px;
    color: #ffffff;
    padding: 10px 14px;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #024815 0%, #000801 100%);
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    width: max-content;
    border: none;
    margin:0 auto;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 992px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

.use-case-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.use-case-card a:hover{
    color:#fff!important;
}
.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Gradient backgrounds */
.edu    { background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
.bank   { background: linear-gradient(135deg, #89f7fe, #66a6ff); }
.health { background: linear-gradient(135deg, #fbc2eb, #a6c1ee); }
.events { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.auto   { background: linear-gradient(135deg, #f6d365, #fda085); }
.real   { background: linear-gradient(135deg, #84fab0, #8fd3f4); }
.it     { background: linear-gradient(135deg, #fccb90, #d57eeb); }
.retail { background: linear-gradient(135deg, #ff8177, #ff867a, #ff8c7f); }
.travel { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }

.use-case-card h3 {
  font-weight:bold;
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.explore-btn {
  background: linear-gradient(135deg, #007b55, #00a86b);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.explore-btn:hover {
  background: linear-gradient(135deg, #009f72, #00c285);
  transform: scale(1.05);
}
@media (max-width: 767px) {
    h1 {
        font-size: 1.6rem !important;
    }
    p {
    font-size: 14px!important;
}
h2{
    font-size: 1.4rem !important;
}
.swiper-slide img {
    max-width: 60px!important;

}
.faq-item{
    font-size:15px!important;
}
.faq-answer{
    font-size:15px;
}
}