/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Apply Montserrat font to all elements */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Ensure headings also use Montserrat */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Contact form input styles */
.form-control {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 0.75rem 0;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #27a8e0;
    background-color: transparent;
}

.form-control::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.form-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Custom styles for carousel indicators */
.carousel-indicators [data-mdb-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 5px;
    background-color: #caaaaa;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.carousel-indicators {
    bottom: -70px;
}

.carousel-indicators .active {
    opacity: 1;
}

h4 {
    color: #27a8e0;
}

/* Custom primary button color */
.btn-primary {
    background-color: #27a8e0 !important;
    border-color: #27a8e0 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #1e8fc3 !important;
    /* slightly darker shade for hover state */
    border-color: #1e8fc3 !important;
}