.navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.navbar-nav {
    gap: 25px; /* controls spacing between menu items */
}

.navbar .nav-link {
    padding: 0.5rem 0;
    font-weight: 500;
}
.call-bar {
    background: #093dda;
    border-bottom: 2px solid #093dda;
    z-index: 1050; /* higher than navbar */
}

.call-icon {
    font-size: 28px;
    color: #093dda;
}

.call-text { color: white;
    font-size: 20px;
    font-weight: 600;
}

.call-number {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.call-number:hover { color:yellow;
    text-decoration: underline;
}
/* Wrapper controls width & centering ONLY */
.call-bar-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    background: transparent;
    z-index: 1050;
}

/* Rectangle shape without touching inner styles */
.call-bar {
    max-width: 1100px;
    width: 95%;
    border-radius: 16px; /* soft edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
 
.col-lg-5{
    max-width: 600px;
    margin: 20px auto;
    
    border-radius: 30px; /* fully soft edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* ensures child content respects border-radius */
    
}
 .px-5{
      
    border-radius: 30px; /* fully soft edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    
 }
.py-3{
    border-radius: 30px; /* fully soft edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
 }
.card {
     border-radius: 30px; /* fully soft edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.p-4{
    border-radius: 30px; /* fully soft edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

}
a:focus,
button:focus {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}
/* =========================================
   PERFORMANCE + ACCESSIBILITY OPTIMIZATION
   (APPEND ONLY — DO NOT MODIFY EXISTING CSS)
   ========================================= */

/* Reduce repaint & scroll jank */
.call-bar,
.card,
.col-lg-5,
.p-4,
.px-5,
.py-3 {
    will-change: transform;
    backface-visibility: hidden;
}

/* Ensure navbar toggle is always clickable */
.navbar {
    position: relative;
    z-index: 1060;
}

/* Sticky call bar spacing fix for mobile */
@media (max-width: 991px) {
    .call-bar-wrapper {
        top: 56px; /* height of mobile navbar */
    }
}

/* Reduce shadow load on small devices (performance win) */
@media (max-width: 576px) {
    .call-bar,
    .card,
    .col-lg-5,
    .p-4,
    .px-5,
    .py-3 {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
}

/* Improve font rendering & readability */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility: reduce motion for sensitive users */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Faster tap response on call button */
.call-number {
    touch-action: manipulation;
}

/* Improve focus visibility (keyboard accessibility) */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}
.call-bar-wrapper {
  position: relative;
}

.loaded .call-bar-wrapper {
  position: sticky;
  top: 0;
}
.above-fold * {
  box-shadow: none !important;
  border-radius: 0 !important;
}

 