  .feature-box {
      text-align: center;
      padding:8px 17px;
    }
    .feature-icon {
      background-color: #fff;
      color: #2ec4b6;
      font-size: 36px;
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .feature-title {
      font-weight: 700;
      color: #2ec4b6;
    }
    .feature-title.dark {
      color: #444;
    }
    .underline {
      width: 50px;
      height: 3px;
      background-color: #2ec4b6;
      margin: 10px auto;
    }
    .feature-text {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
    }

    /* calling and whatsapp */

      .call-btn, .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  /* hover effect */
  .call-btn:hover, .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  /* बटन की पोज़िशन और रंग */
  .call-btn {
    left: 20px;
    background: linear-gradient(180deg,#1e90ff,#0074d9);
  }

  .whatsapp-btn {
    right: 20px;
    background: linear-gradient(180deg,#25D366,#128C7E);
  }

  /* SVG आइकन */
  .call-btn svg, .whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  /* logo */

  span.brand-text img {
        width: 231px;
    height: 65px;
}