
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.services-page {
    background-image: url('/public/assets/static/services-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.services-landing {
    padding: 20px 20px;
}
.services-landing h1 {
    font-size: 2.5rem;
    color: #0c2661;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}
.services-landing p, .services-landing ul {
    font-size: 1.2rem;
    color: #0c2661;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 10px auto;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}
.services-landing ul {
    margin-bottom: 10px;
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 20px;
    justify-items: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.services-cards .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 340px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.services-cards .card h2 {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 10px;
}
.services-cards .card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}
.services-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.services-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.1);
    transform: skewX(-45deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.services-cards .card:hover::before {
    left: 100%;
}
@media (max-width: 768px) {
    .services-cards {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .services-cards .card {
        width: 90%;
        max-width: 400px;
    }
}
.services-cards .card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}
.services-cards .card-image img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.services-cards .card-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #0056b3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: titlecase;
    font-weight: bold;
}
.services-cards .card-button:hover {
    background-color: #003d80;
    transform: scale(1.05);
}
.services-cards .card-button:active {
    transform: scale(0.95);
}
.testimonials {
    background: #f2f2f2;
    padding: 40px;
    text-align: center;
    line-height: 1.5;
    color: #222;
    border-radius: 12px;
    margin: 40px 0 0 0;
}
.hero-section {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 100%; 
    padding: 20px 0; 
    box-sizing: border-box;
}
.in-store-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}
.in-store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: 
        transform 0.5s cubic-bezier(.23,1.02,.67,1.01),
        box-shadow 0.4s cubic-bezier(.23,1.02,.67,1.01),
        filter 0.4s;
    cursor: pointer;
    display: block;
}
.in-store-image:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(0,86,179,0.18);
    filter: brightness(1.08) saturate(1.2);
}
.modal {
  position: fixed; z-index: 9999; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
}
.modal-content {
  background: #fff; padding: 30px; border-radius: 10px; width: 100%; max-width: 400px; position: relative;
  color: #222;
}
.close {
  position: absolute; right: 15px; top: 10px; font-size: 24px; cursor: pointer;
}
.modal-content label { display: block; margin-top: 10px; }
.modal-content input, .modal-content textarea {
  width: 100%; padding: 8px; margin-top: 5px; border-radius: 4px; border: 1px solid #ccc;
}
.modal-content button[type="submit"] {
  margin-top: 15px; background: #0056b3; color: #fff; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
