.btn {
border-radius: 5px;
padding: 8px 16px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}
.btn-primary {
background-color: #007cba;
color: white;
}
.btn-primary:hover {
background-color: #005a87;
color: white;
}
.btn-success {
background-color: #28a745;
color: white;
}
.btn-success:hover {
background-color: #218838;
color: white;
}
.btn-outline-primary {
background-color: transparent;
color: #007cba;
border: 1px solid #007cba;
}
.btn-outline-primary:hover {
background-color: #007cba;
color: white;
}
.btn-sm {
padding: 5px 10px;
font-size: 14px;
}
.btn-lg {
padding: 12px 24px;
font-size: 18px;
}
.mt-3 {
margin-top: 1rem;
}
.ml-3 {
margin-left: 1rem;
}
.mb-5 {
margin-bottom: 3rem;
}
.mb-4 {
margin-bottom: 1.5rem;
} .product-card .btn {
width: 100%;
margin-top: 10px;
}
.wedding-package-calculator .product-actions {
margin-top: 10px;
} @media (max-width: 768px) {
.ml-3 {
margin-left: 0;
margin-top: 10px;
}
.btn-lg {
width: 100%;
margin-bottom: 10px;
}
.contact-section .row > div {
margin-bottom: 20px;
}
} @keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.loading {
animation: pulse 1.5s ease-in-out infinite;
}