/* sections.css */
@import 'variables.css';
@import 'animations.css';

.services-section,
.contact-prompt,
.location-section {
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
    background-color: var(--primary-color);
    color: var(--text-color);
}

h2 {
    margin-bottom: 1.5rem;
}
/* Styling for Lists within Cards */
.card-body ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.card-body ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.card-body li {
    margin-bottom: 0.5rem;
}

/* Import Variables */
@import url('variables.css');

/* Common Section Styles */
.section {
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* General Hover Effect */
.section:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 95, 107, 0.2);
}

/* Contact Prompt */
.contact-prompt {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
}

.contact-prompt.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Location Section */
.location-section:hover #map {
    box-shadow: 0 6px 15px rgba(0, 95, 107, 0.4);
    border-radius: 10px;
}


