
    body { font-family: 'Nunito', sans-serif; }
    .box{
      width:25%;
    }
    .logo_png{
      height:110px;
    }
    @media (max-width:700px){
      #adv{
        width:50%;
      }
    }
    @media (max-width:758px){
      .box{
        width:50%;
      }
      #adv{
        width:50%;
      }
    }
    .card:hover{
      background-color:lightblue;
    }
    @media (max-width:1023px){
    .mobile{
        display:none;
      }
    }
     @media (max-width:767px){
      .logo_png{
        height:70px;
      }
    }
    @media (min-width:769px && max-width:1025px){
      .logo_png{
        height:30px;
      }
    }
  /* popup box style */
   body.modal-open {
    overflow: hidden;
  }

  .modal-overlay {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }

  .modal-content {
    background: #fff;
    color: #333;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    border-radius: 12px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  }

  .modal-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: bold;
  }

  .disclaimer-scrollable {
    overflow-y: auto;
    height: 300px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .disclaimer-scrollable ul {
    padding-left: 20px;
    margin: 8px 0;
  }

  #agreeBtn {
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    background: gray;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: not-allowed;
    transition: all 0.3s ease;
  }

  #agreeBtn.enabled {
    background: #d48f04e4;
    cursor: pointer;
  }

  @media (max-width: 480px) {
    .modal-content {
      padding: 15px;
    }
    .disclaimer-scrollable {
      height: 250px;
    }
    #agreeBtn {
      width: 100%;
    }
  }
  
  


    .section-header {
      border-bottom: 2px solid #000;
      margin-bottom: 30px;
      padding-bottom: 10px;
      align-items: center;
    }
    .section-header i {
      font-size: 1.5rem;
      color: #555;
    }
    .section-header h4 {
      margin-left: 10px;
      font-weight: bold;
      color: #333;
    }

    .product-item {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      background: #fff;
      transition: all 0.3s ease;
      height: 100%;
    }
    .product-item:hover {
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }
    .product-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    .product-item .card-body {
      padding: 15px;
    }
    .product-item h5, .product-item h6 {
      margin-bottom: 5px;
    }
    .product-item small {
      color: #666;
    }

    /* Load More Button */
    .load-more-btn {
      display: block;
      margin: 40px auto 0;
      padding: 10px 30px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    .load-more-btn:hover {
      background-color: #0056b3;
    }

    @media (max-width: 576px) {
      .product-item img {
        height: 160px;
      }
    }




    .card-hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}







 .logo-main {

  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); 
  
}

.hover-rotate:hover {
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4)); 
}

@media (max-width: 576px) {
  .logo-main {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); 
  }
}







.about-hero {
      padding: 30px 0;
      background: linear-gradient(120deg, #e0f7fa, #f1f8e9);
      text-align: center;
    }

    .logo-rotate {
      max-width: 220px;
      transition: transform 0.7s ease-in-out;
    }

    .logo-rotate:hover {
      transform: rotate(360deg) scale(1.01);
    }

    .about-section {
      padding: 30px 0;
    }

    .about-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(0,0,0,0.07);
      padding: 30px;
    }

    .about-card p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
    }