.subscribe-whatsapp-channel {
background:rgb(181 184 182) !important;
    }
    .subscribe-whatsapp-channel a {
        border-radius: 28px !important; 
      		display: flex; 
      		align-items: center; 
      		justify-content: center; 
      		gap: 10px; 
    }

.main-indus-header {
	background:#2b7475;
}
.indus-team-whatsapp {
    display: flex;
    font-weight: 500;
    line-height: normal;
    align-items: center;
  padding-right: 15px;
}

/* Cyan — CMYK(100,0,0,0) */
.tp-btn-cyan {
    background-color: #00AEEF;
}
.tp-btn-cyan:hover {
    background-color: #0095cc;
}

/* Magenta — CMYK(0,100,0,0) */
.tp-btn-magenta {
    background-color: #EC008C;
}
.tp-btn-magenta:hover {
    background-color: #c90076;
}

/* Yellow — CMYK(0,0,100,0) */
.tp-btn-yellow {
    background-color: #FFF200;
    color: #000; /* readability */
}
.tp-btn-yellow:hover {
    background-color: #e6d900;
}

/* Black — CMYK(0,0,0,100) */
.tp-btn-black {
    background-color: #000000;
}
.tp-btn-black:hover {
    background-color: #222222;
}

.main-indus-header p {
    font-family: var(--tp-ff-oregano);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
}


.why-choose-us {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.why-choose-us .section-title {
    text-align: center;
    color: red; /* Dark Green from screenshot */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    border: 1px solid #dcdcdc; /* Light grey border */
    padding: 30px 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-wrapper img {
    width: 50px; /* Adjust based on your icon size */
    height: auto;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.feature-card .subtitle {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.feature-card .description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
    }
    .feature-card {
        margin-bottom: 20px;
    }
}

.cmyk-box {
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px; /* Desktop */
    color: #fff;
    padding: 8px 4px;
    white-space: nowrap;
}

/* Tablets */
@media (max-width: 991px) {
    .cmyk-box {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cmyk-box {
        font-size: 16px;
        padding: 6px 2px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .cmyk-box {
        font-size: 14px;
    }
}


/* CMYK Colors */
.cyan {
    background-color: #00bcd4;
}

.magenta {
    background-color: #e91e63;
}

.yellow {
    background-color: #fdd835;
    color: #000;
}

.black {
    background-color: #000000;
}





.indus-about-section {
  padding: 10px 0;
}

.indus-about-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.indus-about-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.indus-about-section .content-block {
  margin-top: 10px;
}

.indus-about-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}


.category-image-rotator {
  padding: 60px 0;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.category-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-box:hover img {
  transform: scale(1.08);
}

.category-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .category-row {
    grid-template-columns: 1fr;
  }
}



.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icons img {
    max-height: 40px;   /* adjust as needed */
    width: auto;
}



.color-education {
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: system-ui, sans-serif;
}

.color-education .container {
  max-width: 1100px;
  margin: auto;
}

.color-education h2 {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
}

.color-education .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

.misunderstandings h3 {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.highlight {
  margin-top: 50px;
  padding: 30px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  text-align: center;
}

.highlight h3 {
  margin-bottom: 10px;
}


.custom-bg-section {
    width: 100%;
    background-color: #79716B; /* Choose your color */
    padding: 8px 0;           /* Adds space above and below the shortcode */
    margin: 0;
    display: block;
}

.section-content {
    max-width: 1200px;        /* Limits the width of the shortcode content */
    margin: 0 auto;           /* Centers the content */
    padding: 0 auto;          /* Prevents content from hitting screen edges */
}
.section-branding-indus {
background-color: #F3F5F7 !important;
}
.ai-live-chat-wrapper {
    position: fixed;
    bottom: 50%;
    right: 50px;
    top: 50%;
    margin: auto;
  	z-index: 9 !important;
}