h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
.lead { font-size: 1rem; }
.card-title { font-size: 1.1rem; }
.card-text { font-size: 0.9rem; }
.btn { font-size: 0.9rem; }

/* Call button styles */
.floating-call-btn {
  position: fixed !important;
  bottom: 30px !important;
  right: 20px !important;
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #FF4D4D, #FF0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  z-index: 9998;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* When back-to-top is visible */
.floating-call-btn.shift-up {
  bottom: 100px !important;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  background: linear-gradient(145deg, #FF0000, #FF4D4D);
}

.floating-call-btn i {
  font-size: 24px;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* Enhanced Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before,
.ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 3s infinite;
}

.ripple::after {
  animation-delay: 1.5s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.navbar {
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9); /* Change background on scroll */
}

.nav-link {
  padding: 0.75rem 1rem; /* Increase padding for better touch targets */
}

.nav-link:hover {
  color: #FF4D4D; /* Change color on hover */
}

.btn-danger {
  border-radius: 50px; /* Rounded corners for the button */
}

/* Services Dropdown Hover Effect */
.nav-item.services-dropdown {
position: relative;
}

.services-dropdown .dropdown-menu {
display: none;
opacity: 0;
visibility: hidden;
right:50px;
transform: translateY(-10px);
transition: all 0.3s ease;
}

.services-dropdown:hover .dropdown-menu {
display: block;
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.services-dropdown-menu {
width: 100%;
max-width: 1000px;
padding: 20px;
background-color: white;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
border: none;
}

.services-dropdown-content {
display: flex;
flex-wrap: wrap;
}

.services-column {
flex: 1;
padding: 0 15px;
margin-bottom: 15px;
}

.services-column h5 {
color: #333;
margin-bottom: 15px;
font-weight: bold;
text-transform: uppercase;
}

.services-column a {
display: flex;
align-items: center;
color: #666;
padding: 8px 0;
text-decoration: none;
transition: all 0.3s ease;
}

.services-column a:hover {
color: #007bff;
transform: translateX(5px);
}

.services-column a i {
margin-right: 10px;
color: #007bff;
}
/* Mobile Header Styles */
.mobile-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-nav {
padding: 15px;
}

.mobile-nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}

/* Menu Toggle Button */
.mobile-menu-toggle {
width: 30px;
height: 30px;
background: none;
border: none;
padding: 0;
display: flex;
flex-direction: column;
justify-content: space-around;
cursor: pointer;
}

.mobile-menu-toggle span {
width: 100%;
height: 2px;
background: #333;
transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Panel */
.mobile-menu-panel {
position: fixed;
top: 65px;
left: 0;
width: 100%;
height: calc(100vh - 65px);
background: #fff;
transform: translateX(-100%);
transition: 0.3s ease-in-out;
overflow-y: auto;
z-index: 999;
}

.mobile-menu-panel.active {
transform: translateX(0);
}

.mobile-menu-content {
padding: 20px;
}

/* Search Bar */
.mobile-search {
position: relative;
margin-bottom: 20px;
}

.mobile-search input {
width: 100%;
padding: 12px 40px 12px 15px;
border: 1px solid #eee;
border-radius: 25px;
font-size: 14px;
}

.mobile-search i {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
color: #666;
}

/* Menu Items */
.mobile-menu-items {
list-style: none;
padding: 0;
margin: 0;
}

.mobile-menu-items li a {
display: block;
padding: 15px 0;
color: #333;
text-decoration: none;
font-size: 16px;
border-bottom: 1px solid #eee;
}

.mobile-menu-items li a.active {
color: #007bff;
}

/* Submenu */
.has-submenu .submenu-toggle {
display: flex;
justify-content: space-between;
align-items: center;
}

.submenu {
display: none;
padding-left: 15px;
list-style: none;
}

.submenu.active {
display: block;
}

.submenu h6 {
margin: 15px 0 10px;
color: #666;
font-size: 14px;
font-weight: 600;
}

.submenu a {
display: flex;
align-items: center;
padding: 10px 0;
color: #333;
text-decoration: none;
font-size: 14px;
}

.submenu a i {
width: 20px;
margin-right: 10px;
color: #007bff;
}

/* Contact Button */
.mobile-contact {
margin-top: 30px;
padding: 20px 0;
border-top: 1px solid #eee;
}

.mobile-call-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
background: #007bff;
color: #fff;
text-decoration: none;
border-radius: 25px;
font-weight: 500;
border: 2px solid black;
}

.mobile-call-btn i {
margin-right: 8px;
}
.cta-nav{
padding: 8px 16px;
border-radius: 25px;
background-color: #2d4dfa;
color: white !important;
text-decoration: none;
transition: all 0.3s ease;
font-weight: 500;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 6px;
border: 2px solid transparent;
}
.cta-nav:hover {
background-color: #162579;
transform: translateY(-2px);
}
/* Add WhatsApp button styles */
.floating-whatsapp-btn {
position: fixed !important;
bottom: 100px !important;
right: 20px !important;
width: 60px;
height: 60px;
background: linear-gradient(145deg, #25d366, #128C7E);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white !important;
text-decoration: none;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
cursor: pointer;
transition: all 0.3s ease;
z-index: 9;
}

.floating-whatsapp-btn.shift-up {
bottom: 170px !important;
}

.floating-whatsapp-btn:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}