a:hover,a:focus{
    text-decoration: none;
    outline: none;
}

.accordion-demo {
    padding: 100px 0;
}

.accordion-heading-title {
    margin-bottom: 20px;
}

#custom-accordion .panel {
    border: none;
    box-shadow: none;
    margin-bottom: 5px;
}

#custom-accordion .panel-heading {
    padding: 0;
    border: none;
    background: transparent;
}

#custom-accordion .panel-title a {
    display: block;
    padding: 14px 50px 14px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #990fc3;
    position: relative;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

#custom-accordion .panel-title a.collapsed {
    border-radius: 20px;
}

#custom-accordion .panel-title a:before,
#custom-accordion .panel-title a.collapsed:before {
    content: "\f106";
    font-family: fontawesome;
    font-size: 20px;
    position: absolute;
    top: 12px;
    right: 30px;
}

#custom-accordion .panel-title a.collapsed:before {
    content: "\f107";
}

#custom-accordion .panel-body {
    font-size: 14px;
    color: #555;
    line-height: 25px;
    padding: 20px 25px;
    position: relative;
    border: none;
}


/* popup ads*/

.ashi-header {
    background-color: #990fc3; /* Apply theme color */
  }
  .ashi-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Full screen height */
  }
  .ashi-content {
    border: 2px solid #990fc3; /* Add border with theme color */
  }
  .btn-success {
    background-color: #990fc3; /* Apply theme color to button */
    border: none;
  }
  .btn-success:hover {
    background-color: #7a0fa1; /* Darken the button on hover */
  }
  .ashi-title, .ashi-body p {
    color: white; /* Make text white */
  }
  .ashi-body {
    background-color: #f3e7f7; /* Light background inside modal */
  }

  .closeButton {
    font-size: 30px;  /* Large cross */
    color: rgb(0, 0, 0); /* White cross */
    background-color: black; /* Black background */
    border-radius: 50%; /* Rounded button */
    padding: 10px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .closeButton:hover {
    background-color: #ffffff; /* Darken background on hover */
  }

/* popup ads*/


/* whatsapp chatbot*/

.chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    z-index: 9999; /* Higher z-index to ensure it stays on top */
    display: none; /* Hide by default */
}

.chat-header {
    background-color: #25cb28;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-body {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
}

.chat-footer {
    padding: 10px;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Positioned at the bottom right before footer */
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000; /* Ensure WhatsApp icon is above other elements */
}

/* Input field styling */
.chat-input {
    padding: 10px;
    display: flex; /* Align the input and button side by side */
    gap: 10px;
}

.chat-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Input focus effect */
.chat-input input:focus {
    border-color:  #25cb28; /* Change border color on focus */
}

/* Button styling */
.chat-input button {
    padding: 12px 20px;
    background-color:  #25cb28;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

/* Button hover effect */
.chat-input button:hover {
    background-color: #0b750d;
}

/* Button active effect */
.chat-input button:active {
    background-color: #42199b;
}

/* Styling for chat messages */
.chat-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.chat-message.user {
    background-color: #f2f2f2;
    justify-content: flex-end;
}

.chat-message.user p {
    color: #333;
}

.chat-message.bot {
    background-color: #e0f2f1;
    justify-content: flex-start;
}

.chat-message.bot p {
    color: #222;
}

/* Clickable link style */
.chat-footer a {
    display: block;
    background-color: #e0f2f1;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: #222;
    text-decoration: none;
    margin-top: 10px;
    cursor: pointer;
}

.chat-footer a:hover {
    background-color: #c7f2e8;
}

  
/* whatsapp chatbot */


/* video gallary */

.videoGallary{
    margin-top: 15px;
}


.va {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background-color: #990fc3; /* Bootstrap primary color */
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.va:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.vb:hover{
    transform: scale(1.01);
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); */
}




