/* ========================================
   eSanskar - Modern Professional Theme
   Inspired by Sigma Computing Design
   ======================================== */

/* CSS Variables - Modern Color Palette */
:root {
    /* Primary Colors - Clean & Professional */
    --primary-dark: #292929;
    --primary-darker: #1a1a1a;
    --primary-gray: #3d3d3d;
    --accent-yellow: #F0FF45;
    --accent-orange: #FF9A74;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #F0F0F0;
    --medium-gray: #9FA8A7;
    --text-gray: #757575;

    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #292929;

    /* Text Colors */
    --text-primary: #292929;
    --text-secondary: #757575;
    --text-light: #FFFFFF;
    --text-muted: #9FA8A7;

    /* Border Colors */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;

    /* Shadows - Subtle Modern */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 225ms ease;
    --transition-slow: 300ms ease;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 150px;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "DM Mono", "Courier New", monospace;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-orange);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

/* Navigation - Modern Clean Design */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C41E3A !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #D4AF37;
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: #C41E3A !important;
    background-color: rgba(196, 30, 58, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #C41E3A !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-menu .dropdown-item {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #C41E3A !important;
    padding-left: 1.5rem;
}

.dropdown-menu .dropdown-item i {
    color: #D4AF37;
    font-size: 0.95rem;
}

.dropdown-divider {
    border-color: var(--border-light);
    margin: 0.5rem 0;
}

/* Buttons - Modern Pill Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-glass {
    background: rgba(255, 215, 0, 0.2);
    color: #FFF8DC !important;
    border: 2px solid #FFD700;
    font-weight: 600;
}

.btn-glass:hover {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700 !important;
    transform: translateY(-2px);
}

.btn-sacred {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513 !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-sacred:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #FF8A5B;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-outline:hover {
    background-color: var(--off-white);
    border-color: var(--text-primary);
}

.btn-accent {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: #E5F03C;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Cards - Minimal Modern Style */
.card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.col {
    flex: 1;
    padding: 0 0.75rem;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Spacing Utilities */
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-5 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-3 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-4 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-5 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-bold { font-weight: 600; }
.fw-bolder { font-weight: 700; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

/* Background Colors */
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--off-white); }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer a {
    color: var(--medium-gray);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--medium-gray);
}

/* Forms */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(41, 41, 41, 0.1);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary-dark);
    color: var(--white);
}

.badge-success {
    background-color: #10B981;
    color: var(--white);
}

.badge-warning {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

/* Product/Service Cards */
.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--border-medium);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--light-gray);
}

.product-body {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

/* Rating Stars */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-orange);
    font-size: 1rem;
}

/* Modal/Dialog */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

/* Alert/Message */
.alert {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid transparent;
}

.alert-success {
    background-color: #D1FAE5;
    border-color: #10B981;
    color: #065F46;
}

.alert-error {
    background-color: #FEE2E2;
    border-color: #EF4444;
    color: #991B1B;
}

.alert-info {
    background-color: #DBEAFE;
    border-color: #3B82F6;
    color: #1E40AF;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Responsive Design - Mobile First
   ======================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    :root {
        --spacing-lg: 1.25rem;
        --spacing-xl: 1.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .col-lg-3, .col-lg-4, .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .card-img-top {
        height: 160px;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
        max-width: 500px;
    }

    /* Footer adjustments */
    .footer {
        padding: 2rem 0 1rem;
    }

    /* Navigation menu collapse styling */
    .navbar-collapse {
        padding: 1rem 0;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
    }

    html {
        font-size: 15px;
    }

    body {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .container-fluid {
        padding: 0 0.75rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 2.5rem 0;
    }

    /* Navbar responsive */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .brand-icon {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.35rem 0.6rem;
    }

    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
        min-height: 40px;
        min-width: auto;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-height: 36px;
    }

    /* Cards */
    .card-body {
        padding: 1rem;
    }

    .card-img-top {
        height: 150px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    /* Grids */
    .col-md-6, .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row {
        margin: 0 -0.5rem;
    }

    .col {
        padding: 0 0.5rem;
    }

    /* Forms */
    .form-control, .form-select {
        padding: 0.6rem 0.85rem;
        font-size: 0.95rem;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer h5 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer a {
        font-size: 0.85rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 400px;
        border-radius: 10px;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-header, .modal-footer {
        padding: 1rem;
    }

    /* Spacing utilities responsive */
    .mb-1 { margin-bottom: 0.35rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-3 { margin-bottom: 0.75rem; }
    .mb-4 { margin-bottom: 1rem; }

    .mt-1 { margin-top: 0.35rem; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-3 { margin-top: 0.75rem; }
    .mt-4 { margin-top: 1rem; }

    .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
    .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
    .py-4 { padding-top: 1rem; padding-bottom: 1rem; }

    .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
    .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }

    /* Badges */
    .badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }

    /* Alerts */
    .alert {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    /* Pagination */
    .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        margin: 0 0.15rem;
    }

    /* Product cards */
    .product-card {
        margin-bottom: 1rem;
    }

    .product-image {
        height: 150px;
    }

    .product-body {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    /* Rating stars */
    .rating {
        font-size: 0.9rem;
        gap: 0.15rem;
    }

    /* Dropdown menu */
    .dropdown-menu {
        min-width: 150px !important;
        font-size: 0.85rem;
    }

    .dropdown-item {
        padding: 0.6rem 1rem !important;
    }

    /* Brand logo and navigation adjustments */
    .navbar-nav {
        gap: 0.25rem;
    }

    /* Navigation collapse area */
    .navbar-collapse {
        padding: 0.75rem 0;
    }

    /* Toast notifications */
    .toast {
        width: 100%;
        max-width: 350px;
        font-size: 0.9rem;
    }

    .toast-body {
        padding: 0.75rem;
    }

    /* Back to Top button */
    #backToTop {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem;
        margin: 1rem !important;
    }
}

/* Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    :root {
        --spacing-lg: 0.875rem;
        --spacing-xl: 1.25rem;
        --spacing-2xl: 1.5rem;
    }

    html {
        font-size: 14px;
    }

    .container {
        padding: 0 0.6rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .section {
        padding: 2rem 0;
    }

    .hero {
        padding: 2rem 0;
    }

    /* Navbar */
    .navbar {
        padding: 0.4rem 0;
    }

    .navbar .container {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .brand-icon {
        font-size: 1.3rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    /* Buttons - touch-friendly sizing */
    .btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        min-height: 44px;
        border-radius: 6px;
        touch-action: manipulation;
    }

    .btn-lg {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .btn-sm {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        min-height: 36px;
    }

    /* Full-width buttons */
    .btn-block, .w-100 {
        width: 100%;
        display: block;
    }

    /* Cards */
    .card {
        border-radius: 10px;
    }

    .card-body {
        padding: 0.85rem;
    }

    .card-img-top {
        height: 120px;
        border-radius: 10px 10px 0 0;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .card-text {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* Grids - all full width on small phones */
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0.4rem;
    }

    .row {
        margin: 0 -0.4rem;
    }

    /* Forms */
    .form-control, .form-select, textarea {
        padding: 0.55rem 0.75rem;
        font-size: 1rem;
        border-radius: 6px;
        min-height: 44px;
    }

    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
        font-weight: 600;
    }

    /* Checkboxes and radios */
    .form-check-input {
        width: 1.1rem;
        height: 1.1rem;
        margin-top: 0.2rem;
    }

    .form-check-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer h5 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.75rem;
    }

    /* Modal */
    .modal-content {
        width: 98%;
        border-radius: 10px;
        max-height: 95vh;
    }

    .modal-body {
        padding: 0.85rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .modal-header, .modal-footer {
        padding: 0.85rem;
    }

    .modal-header h5 {
        font-size: 1.1rem;
    }

    /* Tables - responsive */
    table {
        font-size: 0.85rem;
    }

    table th, table td {
        padding: 0.6rem 0.4rem;
    }

    /* Lists */
    ul, ol {
        margin-bottom: 1rem;
        padding-left: 1.25rem;
    }

    ul li, ol li {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    /* Spacing utilities */
    .mb-1, .mb-2 { margin-bottom: 0.4rem; }
    .mb-3, .mb-4 { margin-bottom: 0.75rem; }

    .mt-1, .mt-2 { margin-top: 0.4rem; }
    .mt-3, .mt-4 { margin-top: 0.75rem; }

    .py-1, .py-2 { padding-top: 0.4rem; padding-bottom: 0.4rem; }
    .py-3, .py-4 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

    .px-1, .px-2 { padding-left: 0.4rem; padding-right: 0.4rem; }
    .px-3, .px-4 { padding-left: 0.75rem; padding-right: 0.75rem; }

    /* Badges */
    .badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }

    /* Alerts */
    .alert {
        padding: 0.6rem 0.85rem;
        margin-bottom: 0.85rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .alert i {
        font-size: 1rem;
    }

    /* Pagination */
    .pagination {
        font-size: 0.8rem;
    }

    .page-link {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
        margin: 0 0.1rem;
    }

    /* Product/Service cards */
    .product-card, .service-card, .pandit-card, .value-card {
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .product-image {
        height: 120px;
    }

    .product-body, .product-info {
        padding: 0.85rem;
    }

    .product-title, .service-name {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .product-price {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    /* Dropdown menu */
    .dropdown-menu {
        min-width: 100% !important;
        font-size: 0.8rem;
        max-width: none;
        right: 0 !important;
        left: auto !important;
    }

    .dropdown-item {
        padding: 0.5rem 0.85rem !important;
        font-size: 0.8rem;
    }

    /* Navigation menu */
    .navbar-nav {
        width: 100%;
        gap: 0.1rem;
    }

    .navbar-collapse {
        padding: 0.5rem 0;
    }

    /* Toast notifications */
    .toast {
        width: 95% !important;
        max-width: 100% !important;
        bottom: 1rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        font-size: 0.85rem;
    }

    .toast-body {
        padding: 0.6rem;
    }

    /* Back to Top button */
    #backToTop {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem;
        margin: 0.75rem !important;
    }

    /* Text alignment utilities */
    .text-center-mobile {
        text-align: center;
    }

    /* Image responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Flex utilities for mobile */
    .flex-column-mobile {
        flex-direction: column;
    }

    /* Hide elements on small screens */
    .hide-mobile {
        display: none !important;
    }
}

/* Extra small phones (max-width: 375px) */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.75rem;
    }

    .form-control, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }
}

/* ========================================
   Mobile Dropdown & Navigation Enhancements
   ======================================== */

/* Dropdown menu positioning fixes for mobile */
.dropdown-menu {
    z-index: 1030;
}

.dropdown-menu-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Ensure dropdown items are touch-friendly */
.dropdown-item {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(99, 102, 241, 0.1);
    transform: translateX(2px);
}

.dropdown-item i {
    min-width: 20px;
}

/* Mobile navbar improvements */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 0.5rem;
        border-radius: 8px;
        padding: 0.5rem 0;
    }

    .navbar-nav {
        gap: 0.2rem;
    }

    .nav-link.dropdown-toggle {
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Dropdown menus on mobile - prevent overflow */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0 !important;
        padding: 0.25rem 0;
        border: none;
        box-shadow: none;
        border-left: 3px solid #6366f1;
        background: rgba(99, 102, 241, 0.05);
        max-height: 400px;
        overflow-y: auto;
    }

    .dropdown-menu .dropdown-item {
        padding-left: 2rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }

    .dropdown-menu .dropdown-header {
        padding-left: 2rem !important;
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .dropdown-menu .dropdown-divider {
        margin: 0.25rem 0;
        background-color: rgba(99, 102, 241, 0.1);
    }
}

@media (max-width: 576px) {
    .dropdown-menu {
        max-height: 350px !important;
    }

    .dropdown-item {
        padding: 0.65rem 0.85rem !important;
        min-height: 40px;
        font-size: 0.85rem;
    }

    .dropdown-item i {
        font-size: 1rem;
    }
}

/* ========================================
   Enhanced Form & Input Styling for Mobile
   ======================================== */

@media (max-width: 768px) {
    /* Form inputs with better mobile spacing */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        border-color: #6366f1;
    }

    /* Better spacing for checkboxes and radios */
    .form-check {
        padding: 0.5rem 0;
    }

    .form-check-input {
        margin-top: 0.3rem;
        cursor: pointer;
    }

    .form-check-label {
        cursor: pointer;
        user-select: none;
    }

    /* Textarea improvements */
    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }
}

/* ========================================
   Service Cards Mobile Optimization
   ======================================== */

@media (max-width: 768px) {
    .service-item {
        padding: 0.75rem !important;
        border-radius: 8px;
    }

    .service-item:hover {
        padding-left: 1.25rem !important;
    }

    .category-icon {
        min-width: 60px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .category-icon i {
        font-size: 1.5rem !important;
    }

    .service-item-icon i {
        font-size: 1.1rem !important;
    }

    /* Product card improvements */
    .product-card, .service-card {
        transition: transform 0.2s ease;
    }

    .product-card:active, .service-card:active {
        transform: scale(0.98);
    }
}

/* ========================================
   Modal Improvements for Mobile
   ======================================== */

@media (max-width: 768px) {
    .modal-content {
        border-radius: 12px;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .modal-header {
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        padding: 1rem;
    }

    .modal-header .btn-close {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-body {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        padding: 1rem;
    }

    .modal-footer {
        border-top: 1px solid rgba(99, 102, 241, 0.1);
        padding: 1rem;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        min-height: 44px;
        flex: 1;
    }
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-content {
        max-height: 90vh;
    }

    .modal-body {
        max-height: calc(90vh - 180px);
    }
}

/* ========================================
   Button & Interactive Elements Mobile
   ======================================== */

@media (max-width: 768px) {
    /* Action buttons with better spacing */
    .btn-group-vertical .btn {
        border-radius: 6px;
        margin-bottom: 0.5rem;
    }

    /* Button containers */
    .button-group, .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .button-group .btn, .action-buttons .btn {
        width: 100%;
    }

    /* Icon buttons - make them bigger on mobile */
    .btn-icon {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ========================================
   Scrollable Elements Mobile
   ======================================== */

@media (max-width: 768px) {
    /* Scrollable containers */
    .table-responsive {
        border-radius: 8px;
        overflow: hidden;
    }

    .table {
        font-size: 0.85rem;
    }

    /* Horizontal scroll indication for touch devices */
    .overflow-auto {
        -webkit-overflow-scrolling: touch;
    }
}

/* ========================================
   Touch-Friendly Spacing
   ======================================== */

@media (max-width: 576px) {
    /* Ensure minimum touch target sizes */
    a, button, [role="button"], .clickable {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Add extra padding to links in lists */
    .list-group-item {
        padding: 1rem 0.75rem;
        min-height: 50px;
    }

    /* Card click areas */
    .card {
        transition: transform 0.15s ease;
    }

    .card:active {
        transform: scale(0.99);
    }
}

/* ========================================
   Layout Optimization for Small Screens
   ======================================== */

@media (max-width: 768px) {
    /* Container adjustments */
    .container-sm {
        padding: 0 0.75rem;
    }

    /* Section padding optimization */
    .section {
        padding: 2rem 0;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Grid optimization */
    .row {
        margin: 0 -0.4rem;
    }

    .col, [class*="col-"] {
        padding: 0 0.4rem;
    }

    /* Flex utilities for mobile */
    .d-flex {
        flex-wrap: wrap;
    }

    .gap-3 {
        gap: 0.75rem !important;
    }

    .gap-4 {
        gap: 1rem !important;
    }

    /* Text optimization */
    .text-truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .text-truncate-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .text-truncate-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Image optimization */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    /* Aspect ratio maintenance */
    .aspect-ratio-16x9 {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .aspect-ratio-1x1 {
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .aspect-ratio-4x3 {
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    /* Hero section mobile */
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    /* Section titles */
    .section-title {
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        margin-bottom: 1rem;
    }

    /* Sidebar optimization */
    .sidebar {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    /* Card grid optimization */
    .card-grid {
        gap: 1rem;
    }

    /* Badge spacing */
    .badge {
        display: inline-block;
        padding: 0.3rem 0.6rem;
        margin-right: 0.3rem;
        margin-bottom: 0.3rem;
    }

    /* Tag styling for mobile */
    .tag, .chip {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
        border-radius: 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    /* Extra aggressive mobile layout */
    .container {
        padding: 0 0.6rem !important;
    }

    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Section spacing */
    .section {
        padding: 1.5rem 0;
    }

    /* Hero adjustments */
    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    /* Row/col optimization */
    .row {
        margin: 0 -0.3rem;
    }

    .col {
        padding: 0 0.3rem;
    }

    /* List optimization */
    ul, ol {
        padding-left: 1rem;
        margin-bottom: 0.75rem;
    }

    li {
        margin-bottom: 0.25rem;
    }

    /* Link spacing */
    a {
        word-break: break-word;
    }

    /* Heading spacing */
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
    }
}

/* ========================================
   Component Layout Optimization
   ======================================== */

@media (max-width: 768px) {
    /* Breadcrumb optimization */
    .breadcrumb {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .breadcrumb-item {
        padding: 0 0.25rem;
    }

    /* Navigation pills */
    .nav-pills .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.25rem;
        border-radius: 20px;
    }

    /* Tab optimization */
    .nav-tabs {
        border-bottom: 1px solid #e2e8f0;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        margin-bottom: -1px;
        border: 1px solid transparent;
        border-radius: 0;
    }

    /* Accordion optimization */
    .accordion {
        margin-bottom: 1rem;
    }

    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    /* Progress bars */
    .progress {
        height: 0.5rem;
        margin-bottom: 1rem;
    }

    /* Spinner sizing */
    .spinner-border {
        width: 2rem;
        height: 2rem;
    }

    .spinner-border-sm {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* ========================================
   Responsive Grid Optimization
   ======================================== */

@media (max-width: 768px) {
    /* Grid auto layout */
    .grid-auto {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    /* Masonry-like layout */
    .grid-masonry {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Two-column to one-column */
    .col-md-6, .col-md-4, .col-md-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .grid-auto {
        grid-template-columns: 1fr;
    }

    .col-sm-6, .col-sm-4, .col-sm-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ========================================
   Utility Classes for Mobile
   ======================================== */

.show-mobile {
    display: none;
}

.hide-mobile {
    display: block;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .show-md-down {
        display: block;
    }

    .hide-md-down {
        display: none;
    }
}

@media (max-width: 576px) {
    .show-sm-down {
        display: block;
    }

    .hide-sm-down {
        display: none;
    }
}

/* Stack helpers */
.stack-mobile {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .stack-md {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .stack-sm {
        flex-direction: column;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}

/* Selection */
::selection {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeIn var(--transition-slow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Pandits Page Specific Styles
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 4rem 0 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: #FFF8DC;
    position: relative;
    z-index: 1;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
}

/* Pandit Card */
.pandit-card {
    overflow: hidden;
    position: relative;
}

.pandit-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.pandit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.pandit-card:hover .pandit-image img {
    transform: scale(1.1);
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    z-index: 10;
}

.pandit-info {
    background: white;
}

.pandit-info h5 {
    color: #8B4513;
    font-size: 1.25rem;
}

.rating i {
    font-size: 0.9rem;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B4513;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Styling */
.form-glass {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.form-glass:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.input-glass {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #8B4513;
}

/* Pagination */
.page-link {
    color: #8B4513;
    border: 2px solid #FFD700;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
}

.page-link:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border-color: #FFD700;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-color: #FFD700;
    color: #FFD700;
}

.page-glass {
    background: rgba(255, 255, 255, 0.9);
}

.page-glass:hover {
    background: rgba(255, 215, 0, 0.2);
}

/* Dropdown Menu - Enhanced Visibility */
.dropdown-menu {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6) !important;
    border-radius: var(--radius-md) !important;
    padding: 0.5rem 0 !important;
    min-width: 220px !important;
    margin-top: 0.5rem !important;
}

.dropdown-menu.show {
    display: block !important;
    animation: dropdownFadeIn 0.3s ease;
}

.dropdown-item {
    color: #FFF8DC !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 215, 0, 0.25) !important;
    color: #FFD700 !important;
    transform: translateX(5px);
    border-left-color: #FFD700;
}

.dropdown-divider {
    border-color: rgba(255, 215, 0, 0.4) !important;
    margin: 0.5rem 0 !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure dropdown toggle is visible */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    border-top-color: #FFD700 !important;
    margin-left: 0.5rem;
}

/* Button Small Size */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Toast Notifications */
.toast-glass {
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #FFD700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .pandit-image {
        height: 200px;
    }
    
    .dropdown-menu {
        min-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .pandit-card {
        margin-bottom: 1.5rem;
    }
    
    .price-tag {
        font-size: 1.1rem;
    }
}

/* ========================================
   Additional Fixes
   ======================================== */

/* Placeholder Image for Pandits without photos */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.3) 100%);
    backdrop-filter: blur(10px);
}

.placeholder-image i {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

/* Fix particles z-index to appear behind navbar */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1 !important;  /* Behind everything */
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(20px) rotate(270deg);
    }
}

/* Ensure navbar has proper z-index */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000 !important;
}

/* Ensure dropdown menus appear above everything */
.dropdown-menu {
    z-index: 1100 !important;
}

/* Fix any modal or toast z-index issues */
.toast-container,
.toast {
    z-index: 1200 !important;
}

.modal {
    z-index: 1300 !important;
}

.modal-backdrop {
    z-index: 1250 !important;
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Prevent layout shift when images load */
.pandit-image img,
.pandit-image .placeholder-image {
    display: block;
    width: 100%;
    height: 100%;
}

/* ========================================
   Cart Page Button Fixes
   ======================================== */

/* Improve button visibility in cart */
.btn-sm {
    min-width: 35px;
    min-height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Make quantity buttons more visible */
.qty-btn {
    background: rgba(139, 69, 19, 0.1) !important;
    border: 2px solid #8B4513 !important;
    color: #8B4513 !important;
    font-weight: 700;
}

.qty-btn:hover {
    background: rgba(255, 215, 0, 0.3) !important;
    border-color: #FFD700 !important;
    color: #8B4513 !important;
}

/* Remove/Delete button styling */
.btn-glass.text-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.btn-glass.text-danger:hover {
    background: rgba(220, 53, 69, 0.2) !important;
    transform: scale(1.1);
}

/* Checkout buttons */
.btn-sacred {
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none !important;
}

.btn-glass:not(.text-danger) {
    background: rgba(139, 69, 19, 0.05) !important;
    border: 2px solid #8B4513 !important;
    color: #8B4513 !important;
    font-weight: 600;
}

.btn-glass:not(.text-danger):hover {
    background: rgba(255, 215, 0, 0.15) !important;
    border-color: #FFD700 !important;
    color: #8B4513 !important;
}

/* Ensure all button text is visible */
.btn {
    text-shadow: none !important;
}

/* Quantity input styling */
.qty-input {
    border: 2px solid #8B4513 !important;
    font-weight: 600;
    color: #8B4513 !important;
}

.qty-input:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}

/* Text color fixes for better visibility */
.text-sacred {
    color: #FFD700 !important;
    font-weight: 700;
}

.fw-bold {
    color: #8B4513 !important;
}

/* Card text visibility */
.glass-card {
    color: #333 !important;
}

.glass-card .text-muted {
    color: #666 !important;
}

/* ========================================
   Button and Text Visibility Fixes
   ======================================== */

/* Fix Add to Cart button visibility */
.add-to-cart-btn,
.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
    text-shadow: none !important;
}

.add-to-cart-btn:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6) !important;
}

/* Fix navbar menu text visibility */
.navbar-nav .nav-link {
    color: #FFF8DC !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #FFD700 !important;
    background-color: rgba(255, 215, 0, 0.2) !important;
}

.navbar-nav .nav-link.active {
    color: #FFD700 !important;
    background-color: rgba(255, 215, 0, 0.25) !important;
}

/* Fix navbar brand visibility */
.navbar-brand {
    color: #FFD700 !important;
    font-weight: 800 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.navbar-brand:hover {
    color: #FFA500 !important;
}

/* Fix banner/hero text visibility */
.hero-section h1,
.hero-section .display-1,
.hero-section .display-2,
.hero-section .display-3,
.hero-section .display-4,
.page-header h1 {
    color: #FFD700 !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5) !important;
    font-weight: 800 !important;
}

.hero-section p,
.hero-section .lead,
.page-header p {
    color: #FFF8DC !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
    font-weight: 600 !important;
}

/* Fix all white text on dark backgrounds */
.text-white {
    color: #FFFFFF !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: #FFF8DC !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* Fix button text in all states */
.btn {
    font-weight: 600 !important;
}

.btn i {
    opacity: 1 !important;
}

/* Ensure dropdown toggle arrow is visible */
.dropdown-toggle::after {
    border-top-color: #FFD700 !important;
    opacity: 1 !important;
}

/* Fix product card button visibility */
.product-card .btn,
.pandit-card .btn,
.service-card .btn {
    font-weight: 700 !important;
    min-width: 120px;
}

/* Fix quantity buttons */
.qty-btn i {
    font-size: 1rem;
    font-weight: 900;
}

/* Improve overall contrast */
.glass-card h1,
.glass-card h2,
.glass-card h3,
.glass-card h4,
.glass-card h5,
.glass-card h6 {
    color: #8B4513 !important;
    font-weight: 700;
}

/* Fix navbar on scroll */
.navbar.scrolled {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.5) !important;
}

/* Hero section specific fixes */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Ensure all interactive elements are visible */
button:not(:disabled),
a.btn:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer;
}

/* Fix any transparent or hidden elements */
.d-none {
    display: none !important;
}

.visible {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile menu visibility */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: var(--radius-sm);
    }
}

/* ========================================
   Stats Section Text Visibility Fix
   ======================================== */

/* Stats section background and text */
section[style*="background: linear-gradient"] {
    position: relative;
    z-index: 1;
}

section[style*="background: linear-gradient"] h2,
section[style*="background: linear-gradient"] .fw-bold {
    color: #FFD700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
    font-weight: 800 !important;
    font-size: 2.5rem !important;
}

section[style*="background: linear-gradient"] p,
section[style*="background: linear-gradient"] .fw-semibold {
    color: #FFF8DC !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

/* Specific stats section styling */
.stats-section,
section.py-5[style*="8B4513"] {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
    color: white !important;
    padding: 4rem 0 !important;
}

.stats-section h2,
.stats-section .col-md-3 h2,
.stats-section .col-6 h2 {
    color: #FFD700 !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5) !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem !important;
    font-size: 2.8rem !important;
    line-height: 1.2;
}

.stats-section p,
.stats-section .col-md-3 p,
.stats-section .col-6 p {
    color: #FFF8DC !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    margin-bottom: 0 !important;
}

/* Override any conflicting styles */
.py-5 h2,
.py-5 p {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure stats are visible on all screen sizes */
@media (max-width: 768px) {
    .stats-section h2,
    section[style*="8B4513"] h2 {
        font-size: 2rem !important;
    }
    
    .stats-section p,
    section[style*="8B4513"] p {
        font-size: 1rem !important;
    }
}

/* Force display for stats numbers and text */
.text-center h2,
.text-center p {
    display: block !important;
}

/* Additional specificity for golden color */
h2[style*="FFD700"] {
    color: #FFD700 !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5) !important;
}

p[style*="FFF8DC"] {
    color: #FFF8DC !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
}

/* ========================================
   Navbar Button Visibility Fixes
   ======================================== */

/* Cart button styling */
.navbar .btn-glass {
    background: rgba(255, 215, 0, 0.25) !important;
    border: 2px solid #FFD700 !important;
    color: #FFF8DC !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.navbar .btn-glass:hover {
    background: rgba(255, 215, 0, 0.4) !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
    transform: translateY(-2px);
}

/* Cart badge styling */
.cart-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%) !important;
    color: #FFFFFF !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 50px !important;
    min-width: 20px !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4) !important;
    display: block !important;
    z-index: 10 !important;
}

/* Cart icon visibility */
.navbar .btn-glass i {
    font-size: 1.25rem !important;
    color: #FFD700 !important;
}

.navbar .btn-glass:hover i {
    color: #FFA500 !important;
}

/* User dropdown button */
.navbar .dropdown .btn-glass {
    background: rgba(255, 215, 0, 0.25) !important;
    border: 2px solid #FFD700 !important;
    color: #FFF8DC !important;
    font-weight: 600 !important;
}

.navbar .dropdown .btn-glass:hover,
.navbar .dropdown .btn-glass:focus,
.navbar .dropdown .btn-glass.show {
    background: rgba(255, 215, 0, 0.4) !important;
    color: #FFD700 !important;
}

/* Dropdown toggle icon */
.navbar .dropdown-toggle::after {
    border-top-color: #FFD700 !important;
    margin-left: 0.5rem !important;
}

/* User icon in dropdown button */
.navbar .dropdown .btn-glass i.bi-person-circle {
    color: #FFD700 !important;
    font-size: 1.25rem !important;
}

/* Ensure buttons are visible */
.navbar .d-flex {
    gap: 1rem !important;
}

.navbar .d-flex > * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Position relative for badge */
.position-relative {
    position: relative !important;
}

/* Make sure dropdown menu appears */
.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Navbar button group spacing */
.navbar .align-items-center {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

/* Override any hidden states */
.navbar button,
.navbar a.btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   Emergency Banner - Global Styles
   ======================================== */
.emergency-banner {
    margin-bottom: 0 !important;
}

/* ========================================
   Page Header - Global Styles
   ======================================== */
.page-header {
    background: linear-gradient(180deg, #F5F3F0 0%, #EAE6E0 100%);
    padding: 3rem 0;
    margin-bottom: 0 !important;
}

.page-header h1 {
    color: #ffd700 !important;
    text-shadow: none !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #5A5A5A !important;
    text-shadow: none !important;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.breadcrumb-custom {
    color: #D4A574;
    margin-bottom: 1.5rem;
}

.breadcrumb-custom a {
    color: #D4A574;
    text-decoration: none;
}

/* ========================================
   Global Booking Sidebar & Form Styles
   Used across: Pandit, Ghat, Temple, Ritual, etc.
   ======================================== */

/* Summary/Sidebar Card - Brown/Gold Theme */
.summary-card,
.sidebar-card,
.booking-sidebar {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5434 100%) !important;
    color: white !important;
    border-radius: 20px;
    padding: 30px;
    position: static;
    top: 100px;
    z-index: 10;
}

.summary-card h5,
.sidebar-card h5,
.booking-sidebar h5 {
    color: white !important;
}

.summary-card .form-label,
.sidebar-card .form-label,
.booking-sidebar .form-label {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Summary Row Styling */
.summary-row,
.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
}

/* Total Price - Gold Color */
.total-price,
.total-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700 !important;
}

/* Booking Form Cards */
.booking-card,
.booking-form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

/* Step Number Badge */
.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5434 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Service/Slot Selection Pills */
.service-pill,
.slot-option,
.service-option,
.darshan-slot {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-pill:hover,
.service-pill.selected,
.slot-option:hover,
.slot-option.selected,
.service-option:hover,
.service-option.selected,
.darshan-slot:hover,
.darshan-slot.selected {
    border-color: #8B6F47 !important;
    background: rgba(139, 111, 71, 0.08) !important;
}

/* Service Price in Gold */
.service-option .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

/* Time Slot Styling */
.time-slot {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot:hover,
.time-slot.selected {
    border-color: #8B6F47;
    background: #8B6F47;
    color: white;
}

/* Booking Header - Brown Gradient */
.booking-header,
.booking-hero {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    padding: 30px 0;
}

/* Booking ID Badge */
.booking-id-badge {
    background: linear-gradient(135deg, #8B6F47 0%, #D4A574 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Deity/Category Badge */
.deity-badge,
.category-badge {
    background: linear-gradient(135deg, #8B6F47 0%, #D4A574 100%) !important;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Confirm Booking Button */
.summary-card .btn-light,
.sidebar-card .btn-light,
.booking-sidebar .btn-light {
    color: #5D4037 !important;
    font-weight: 600 !important;
}

/* Free Cancellation Text */
.summary-card p.small,
.sidebar-card p.small,
.booking-sidebar p.small {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Sidebar footer section text (timing info, etc.) */
.sidebar-card > div.small,
.sidebar-card > div.small p,
.sidebar-card > div.small i,
.summary-card > p,
.sidebar-card > p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Preserve gold color for totals */
.summary-card .total-price,
.sidebar-card .total-price,
.booking-sidebar .total-price,
.summary-card .total-amount,
.sidebar-card .total-amount,
.booking-sidebar .total-amount {
    color: #FFD700 !important;
}

/* Preserve brown text on light buttons */
.summary-card .btn-light,
.sidebar-card .btn-light,
.booking-sidebar .btn-light {
    color: #5D4037 !important;
    font-weight: 600 !important;
}

/* Global Icon Color Consistency - Brown theme */
.info-card .text-primary,
.booking-card .text-primary,
.booking-form-card .text-primary {
    color: #8B6F47 !important;
}

.info-card h4 i,
.info-card h5 i,
.booking-card h4 i,
.booking-card h5 i {
    color: #8B6F47 !important;
}

/* Service Pills */
.service-pill {
    background: #f8f9fa;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

/* Hide hamburger menu on desktop/laptop */
@media (min-width: 768px) {
    .navbar .navbar-toggler,
    button.navbar-toggler {
        display: none !important;
        visibility: hidden !important;
    }
}
