:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4bb543;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
  }
  
  /* Smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }
  
 /* Header Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%
    ) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar.scrolled {
    padding: 8px 0;
    background: rgba(67, 97, 238, 0.95) !important;
    backdrop-filter: blur(10px);
  }
  
  .navbar-brand {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  
  .nav-link {
    position: relative;
    padding: 8px 15px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  
  .nav-link-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
  }
  
  .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .nav-link:hover:before,
  .nav-link.active:before {
    width: 100%;
  }
  
  /* Extra Small Devices (400px and below) */
  @media (max-width: 400px) {
    .navbar-brand {
      font-size: 1rem;
      max-width: 180px;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .nav-link {
      padding: 6px 10px !important;
    }
    
    .nav-link-content i {
      font-size: 0.9rem;
    }
    
    .btn-call-now {
      padding: 6px 12px;
      font-size: 0.85rem;
    }
  }
  
  /* Small Devices (576px and below) */
  @media (max-width: 576px) {
    .navbar {
      padding: 10px 0;
    }
    
    .navbar-collapse {
      background: rgba(67, 97, 238, 0.98);
      padding: 15px;
      margin-top: 10px;
      border-radius: 8px;
    }
    
    .nav-item {
      margin: 4px 0;
    }
    
    .btn-call-now {
      width: 100%;
      justify-content: center;
      margin-top: 8px;
    }
    
    .call-text {
      font-size: 0.9rem;
    }
  }
  
  /* Medium Devices (768px and below) */
  @media (max-width: 768px) {
    .navbar-brand {
      font-size: 1.1rem;
    }
    
    .navbar-collapse {
      padding: 20px;
      margin-top: 15px;
    }
    
    .nav-link-content i {
      margin-right: 5px;
    }
    
    .btn-call-now {
      width: auto;
      min-width: 120px;
    }
  }
  
  /* Large Devices (992px and below) */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background: rgba(67, 97, 238, 0.98);
      padding: 20px;
      margin-top: 15px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-item {
      margin: 5px 0;
    }
    
    .btn-call-now {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Call Now button animation */
  .btn-call-now {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0.9);
    opacity: 0;
    z-index: -1;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.9);
      opacity: 0;
    }
    70% {
      transform: scale(1.1);
      opacity: 0.3;
    }
    100% {
      transform: scale(1.3);
      opacity: 0;
    }
  }
  
  /* Enhanced Animated Call Button */
  .btn-call-now {
    position: relative;
    background: linear-gradient(135deg, #ff3b30 0%, #ff5e53 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 8px 20px 8px 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
    animation: gentlePulse 2s infinite;
  }
  
  @keyframes gentlePulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
  }
  
  .call-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3b30;
    transition: all 0.3s ease;
    animation: iconWiggle 3s infinite;
  }
  
  @keyframes iconWiggle {
    0%,
    100% {
      transform: translateY(-50%) rotate(0);
    }
    25% {
      transform: translateY(-50%) rotate(10deg);
    }
    75% {
      transform: translateY(-50%) rotate(-10deg);
    }
  }
  
  .call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    animation: callPulse 2s infinite;
  }
  
  .call-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
  }
  
  .call-ring-2 {
    width: 50px;
    height: 50px;
    left: 5px;
  }
  
  @keyframes callPulse {
    0% {
      transform: scale(0.95);
      opacity: 1;
    }
    100% {
      transform: scale(1.3);
      opacity: 0;
    }
  }
  
  @keyframes ringPulse {
    0% {
      transform: translateY(-50%) scale(0.8);
      opacity: 0.7;
    }
    100% {
      transform: translateY(-50%) scale(1.5);
      opacity: 0;
    }
  }
  
  .btn-call-now:hover {
    animation: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.6);
  }
  
  .btn-call-now:hover .call-pulse {
    animation: callPulse 1s infinite;
  }
  
  .btn-call-now:hover .call-ring {
    animation: ringPulse 2s infinite;
  }
  
  .btn-call-now:hover .call-ring-2 {
    animation: ringPulse 2s infinite 0.5s;
  }
  
  /* Mobile adaptation */
  @media (max-width: 992px) {
    .btn-call-now {
      margin-top: 10px;
      width: 100%;
      text-align: center;
      padding-left: 20px;
    }
    .call-icon {
      position: static;
      display: inline-block;
      transform: none;
      margin-right: 8px;
      animation: none;
    }
    .btn-call-now:hover .call-icon {
      animation: none;
    }
  }
  
  /* Pulse animation for call-to-action elements */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pulse-animation {
    animation: pulse 2s infinite;
  }
  
  /* Floating animation */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .float-animation {
    animation: float 3s ease-in-out infinite;
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease-in;
  }
  
  /* Slide-in animations */
  @keyframes slideInLeft {
    from {
      transform: translateX(-50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .slide-in-left {
    animation: slideInLeft 0.8s ease-out;
  }
  
  .slide-in-right {
    animation: slideInRight 0.8s ease-out;
  }
  
  /* Hover effects */
  .hover-grow {
    transition: all 0.3s ease;
  }
  
  .hover-grow:hover {
    transform: scale(1.03);
  }
  
  /* Carousel styles with animation */
  .carousel-item {
    position: relative;
  }
  .carousel-item img {
    height: 80vh;
    object-fit: cover;
  }
  .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    animation: fadeIn 1s ease-in;
  }
  .carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }
  .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }
  .carousel-btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  .carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .featurette-divider {
    margin: 5rem 0;
    border-top: 2px solid rgba(67, 97, 238, 0.1);
  }
  
  .navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
  }
  
  .navbar-brand img:hover {
    transform: rotate(5deg);
  }
  
  /* Service Section Specific Styles */
  .service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
  }
  
  .service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: rgba(67, 97, 238, 0.2);
  }
  
  .service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    border: none;
    background: white;
    overflow: hidden;
    position: relative;
  }
  
  .service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
      90deg,
      var(--primary-color),
      var(--accent-color)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .service-card:hover:before {
    transform: scaleX(1);
  }
  
  .service-card h2 {
    transition: all 0.3s ease;
  }
  
  .service-card:hover h2 {
    color: var(--primary-color);
  }
  
  /* Add this to your existing CSS */
  @keyframes iconBounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .service-card:hover .service-icon {
    animation: iconBounce 0.8s ease;
  }
  
  /* About Us Section Styles */
  .about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    overflow: hidden;
  }
  .about-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
    transition: all 0.5s ease;
  }
  .about-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.25);
  }
  .about-content {
    padding-left: 30px;
  }
  .about-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
  }
  .about-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .about-title:hover:after {
    width: 80px;
    background: var(--secondary-color);
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .about-features {
    margin-top: 30px;
  }
  .about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .about-feature-item:hover {
    transform: translateX(10px);
  }
  
  .about-feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    transition: all 0.3s ease;
  }
  
  .about-feature-item:hover .about-feature-icon {
    transform: scale(1.2);
    color: var(--secondary-color);
  }
  
  .about-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .about-feature-item:hover h4 {
    color: var(--primary-color);
  }
  
  @media (max-width: 768px) {
    .navbar-brand img {
      height: 40px;
    }
    .carousel-caption h2 {
      font-size: 1.8rem;
    }
    .carousel-caption p {
      font-size: 1rem;
    }
    .about-content {
      padding-left: 0;
      margin-top: 30px;
    }
    .about-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar-brand img {
      height: 35px;
    }
    .carousel-caption {
      padding: 15px;
    }
    .carousel-caption h2 {
      font-size: 1.5rem;
    }
  }
  
  .contact .card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background: white;
  }
  
  .contact .card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2) !important;
  }
  
  .contact .form-control {
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
  }
  
  .contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.1);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
  }
  
  .btn-primary:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
  }
  
  .btn-primary:focus:after,
  .btn-primary:active:after {
    animation: ripple 1s ease-out;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0, 0);
      opacity: 0.5;
    }
    100% {
      transform: scale(20, 20);
      opacity: 0;
    }
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
    position: relative;
  }
  
  .footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--primary-color),
      var(--accent-color)
    );
  }
  
  .footer p {
    margin-bottom: 0;
  }
  
  .navbar {
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%
    ) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    background: rgba(67, 97, 238, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    position: relative;
  }
  
  .navbar-dark .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover:after,
  .navbar-dark .navbar-nav .nav-link.active:after {
    width: 70%;
    left: 15%;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    color: white;
  }
  
  .bg-light {
    background: linear-gradient(
      135deg,
      #f8f9fa 0%,
      #e9f5ff 100%
    ) !important;
  }
  
  .alert-success {
    background-color: rgba(75, 181, 67, 0.15);
    border-color: var(--success-color);
    color: var(--success-color);
  }
  
  .alert-danger {
    background-color: rgba(220, 53, 69, 0.15);
    border-color: #dc3545;
    color: #dc3545;
  }
  
  /* Loading animation */
  .spinner-border {
    display: inline-block;
    animation: spin 0.75s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .bounce-animation {
    animation: bounce 2s infinite;
  }
  /* Contact Section Styles */
  .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .contact-info address {
    font-style: normal;
    line-height: 1.8;
  }
  
  .contact-info i {
    width: 20px;
    text-align: center;
  }
  
  .phone-number a {
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .phone-number a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
  }
  
  /* Business Hours Animation */
  @keyframes pulse-glow {
    0% {
      box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
  }
  
  .business-hours {
    position: relative;
  }
  
  .business-hours:after {
    content: "Open Now";
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--success-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse-glow 2s infinite;
  }
  
  /* Enhanced Sticky Call Button with Better Responsiveness and Phone Dialer Compatibility */
  .sticky-call-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    animation: pulse 1.5s infinite;
    transform-origin: center;
  }
  
  .sticky-call-button a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #d32525 0%, #8c12129e 100%);
    color: white;
    padding: 8px 12px 8px 0px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
  
  }
  
  .sticky-call-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .sticky-call-icon {
    position: fixed;
    width: 36px;
    height: 36px;
    background-color: #FF0000; /* Vibrant red */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
    animation: redPulse 1.8s infinite;
    z-index: 9999;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
  }
  
  .sticky-call-icon:hover {
    animation: none;
    transform: scale(1.15);
    background-color: #FF3333;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.9);
  }
  
  /* Intense red pulse animation */
  @keyframes redPulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
    }
    70% {
      transform: scale(1.1);
      box-shadow: 0 0 0 25px rgba(255, 0, 0, 0);
    }
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
  }
  
  /* Glowing red ring */
  .sticky-call-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: redRingPulse 2s infinite;
    z-index: -1;
    border: 4px solid rgba(255, 50, 50, 0.8);
  }
  
  @keyframes redRingPulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
      border-width: 2px;
    }
  }
  
  /* Optional inner flash */
  .sticky-call-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    animation: innerFlash 3s infinite;
    z-index: -1;
  }
  
  @keyframes innerFlash {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
  }
  
  .sticky-call-text {
    white-space: nowrap;
    margin-left: 44px;
  }
  
  /* Pulse ring animation */
  .sticky-call-button a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: pulseRing 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes vibrate {
    0% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(5deg);
    }
  }
  
  @keyframes pulseRing {
    0% {
      transform: scale(0.95);
      opacity: 1;
    }
    100% {
      transform: scale(1.3);
      opacity: 0;
    }
  }
  
  /* Enhanced Mobile Compatibility */
  @media (max-width: 768px) {
    .sticky-call-button {
      bottom: 38px;
      left: 90px;
      /* Ensure it stays above mobile dialer */
      z-index: 99999; /* Extremely high z-index */
    }
    
    .sticky-call-button a {
      padding: 10px 16px;
      font-size: 15px;
      /* Make button more prominent */
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .sticky-call-icon {
      width: 32px;
      height: 32px;
      font-size: 16px;
      margin-right: 8px;
    }
  }
  
  @media (max-width: 576px) {
    .sticky-call-button {
      bottom: 38px;
      left: 38px;
      right: 10px;
      width: auto;
      display: flex;
      justify-content: flex-start;
      /* Make sure it's always visible */
      position: fixed !important;
    }
    
    .sticky-call-button a {
      padding: 8px 20px;
      font-size: 14px;
      width: auto;
      display: inline-flex;
      /* More visible on small screens */
      background: linear-gradient(135deg, #d32525 0%, #8c12129e 100%);
    }
    
    .sticky-call-icon {
      width: 28px;
      height: 28px;
      font-size: 14px;
      margin-right: 6px;
    }
  }
  
  /* For very small devices - ensure button remains clickable */
  @media (max-width: 400px) {
    .sticky-call-button {
      bottom: 38px;
      left: 25px;
      right: 5px;
      padding: 0;
      margin: 0;
    }
    
    .sticky-call-text {
      display: inline-block !important; /* Force text to show */
      font-size: 13px;
    }
    
    .sticky-call-button a {
      padding: 4px 10px 4px 0px;
      border-radius: 50px;
      font-size: 13px;
    }
    
    .sticky-call-icon {
      margin-right: 5px;
      width: 26px;
      height: 26px;
      font-size: 13px;
    }
  
    .call-ring {
      position: absolute;
      width: 40px;
      height: 40px;
      border: 2px solid white;
      border-radius: 50%;
      left: 100px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
    }
  
    .call-ring-2 {
      width: 50px;
      height: 50px;
      left: 92px;
    }
  }
  
  /* Special case for when dialer is open */
  @media (max-height: 500px) {
    .sticky-call-button {
      bottom: 60px !important; /* Move above dialer */
      animation: bounce 2s infinite; /* More noticeable animation */
    }
  }