:root {
    --brand-plum: #3b234e; /* Deep Purple */
    --brand-red: #db0005; /* Strong Red */
    --light-grey: #f8f9x;
}

/* Custom Buttons jo aapki theme se match karein */
.btn-brand-red {
    background-color: var(--brand-red) !important;
    color: #ffffff !important; /* Pure White force kiya hai */
    border: none;
    transition: all 0.3s ease;
}

    .btn-brand-red:hover {
        background-color: #b30004 !important;
        color: #ffffff !important;
        transform: translateY(-2px);
    }

.text-brand-red {
    color: var(--brand-red) !important;
}

.bg-brand-plum {
    background-color: var(--brand-plum) !important;
}

/* Sab se pehle common properties */
.hero-banner {
    position: relative;
    min-height: 80vh;
    background-color: #3b234e; /* Placeholder rang taake image load hone tak blank na dikhe */
}

/* Content ko image aur overlay ke upar lane ke liye */
.hero-banner .container {
    z-index: 2;
}

html {
  font-size: 14px;
}

@media (min-width: 769px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body, html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Bootstrap-Icons';
    src: url('...');
    font-display: swap; /* Ye line magic karegi */
}

/* User Dropdown hover fix */
.navbar-dark .navbar-nav .nav-link.dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1) !important; /* Halka sa transparent white */
    color: #fff !important; /* Text white hi rahega */
    border-color: #fff !important;
}

/* Container */
.wa-widget-container {
    display: none; /* JavaScript isay show karega */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    flex-direction: column;
    align-items: flex-end;
}

/* The Floating Button */
.wa-float-pro {
    width: 60px;
    height: 60px;
    background-color: #128c7e;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    /*text-decoration: none;*/
    transition: all 0.3s ease-in-out;
    position: relative;
}

    .wa-float-pro:hover {
        transform: scale(1.1) translateY(-5px);
        background-color: #128c7e;
        color: white;
    }

/* Online Green Dot */
.wa-online-dot {
    position: absolute;
    top: 2px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,255,0,0.5);
}

/* Message Bubble */
.wa-message-bubble {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    position: relative;
    border-right: 4px solid #128c7e;
    animation: fadeInRight 1s ease-in-out;
}

    /* Triangle for Bubble */
    .wa-message-bubble::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 20px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
    }

.wa-close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    margin-left: 10px;
    cursor: pointer;
}

/* Footer ke muted text ko wazeh karne ke liye */
.footer-text-custom {
    color: #b0a4bd !important; /* Ye thora bright grey hai jo dark purple par khulta hai */
}

/* Entry Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .wa-widget-container {
        bottom: 20px;
        right: 20px;
    }

    .wa-float-pro {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}