Online Consultation
Book Online Appointment
Fill your details below. After submitting, WhatsApp opens — please also send your payment screenshot there.
Consultation Fee: ₹500
/* Container styling matching the card look */
.divi-custom-tabs-card {
border: 1px solid #f0e5d1;
border-radius: 12px;
background-color: #ffffff;
overflow: hidden;
max-width: 100%;
box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
/* Tab Header Area */
.divi-tab-header {
display: flex;
background-color: #fbf9f4; /* Light beige matching the inactive tab */
border-bottom: 1px solid #f0e5d1;
}
/* Individual Buttons */
.divi-tab-btn {
flex: 1; /* Makes buttons equal width */
background: transparent;
border: none;
padding: 18px 10px;
cursor: pointer;
font-size: 16px;
font-weight: 500;
color: #7b7e85; /* Grayish text for inactive */
border-bottom: 3px solid transparent;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px; /* Space between emoji and text */
}
/* Active Button State */
.divi-tab-btn.active {
background-color: #ffffff;
color: #bfa14c; /* Gold color */
border-bottom: 3px solid #bfa14c; /* Gold bottom line */
}
/* Hover effect for buttons */
.divi-tab-btn:hover:not(.active) {
background-color: #f5f2ea;
}
/* Content Area */
.divi-tab-content-container {
padding: 30px;
background-color: #ffffff;
}
/* Image optimization inside the tabs */
.divi-tab-content img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
border-radius: 8px; /* Slight rounding for a polished look */
}
/* Mobile Optimization */
@media (max-width: 600px) {
.divi-tab-btn {
font-size: 14px; /* Slightly smaller text on mobile */
padding: 15px 5px;
}
.divi-tab-content-container {
padding: 15px; /* Less padding on small screens to maximize image size */
}
}
📱 UPI / QR Code
🏛️ Bank Transfer
function switchDiviTab(evt, tabId) {
// Hide all tab content
var contentDivs = document.getElementsByClassName("divi-tab-content");
for (var i = 0; i < contentDivs.length; i++) {
contentDivs[i].style.display = "none";
}
// Remove "active" class from all buttons
var tabButtons = document.getElementsByClassName("divi-tab-btn");
for (var i = 0; i < tabButtons.length; i++) {
tabButtons[i].classList.remove("active");
}
// Show the clicked tab content and set button to active
document.getElementById(tabId).style.display = "block";
evt.currentTarget.classList.add("active");
}