:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #4169E1; /* Royal Blue */
    --text-color: #ffffff;
}
::placeholder {
    color: gray !important;
}
::-ms-input-placeholder { /* Edge 12 -18 */
  color: gray !important;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title {
    color: var(--accent-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
}
.service-card, .testimonial-card {
    background-color: var(--secondary-color);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.service-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
}
.btn-custom {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}
.btn-custom:hover {
    background-color: transparent;
    color: var(--accent-color);
}
.project-gallery {
    position: relative;
    overflow: hidden;
}
.project-gallery img {
    transition: transform 0.5s ease;
}
.project-gallery:hover img {
    transform: scale(1.1);
}
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-gallery:hover .project-overlay {
    opacity: 1;
}
.contact-form input,
.contact-form textarea {
    background-color: var(--secondary-color);
    border: 1px solid var(--accent-color);
    color: var(--text-color);
}
.contact-form input:focus,
.contact-form textarea:focus {
    background-color: var(--secondary-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    color: var(--text-color);
}
.social-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.social-icon:hover {
    color: var(--text-color);
    transform: translateY(-3px);
}
.footer {
    background-color: var(--secondary-color);
}

.card-thumb {
    min-height: 380px !important;
    max-height: 380px !important;
    text-align: left;
}

.card-thumb h3 {
    margin-top: 0px;
}

.card-thumb img {
    max-height: 250px !important;
    margin: 0 auto !important;
}

.card-thumb {
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 10px;
}

.search-list-short-desc {
    max-height: 75px;
    min-height: 75px;
    overflow: hidden;
    cursor: default;
}

.search-list-item-calendar {
    padding: 0px 0px 0px 30px;
}

.search-list-item-imglink {
    height: 250px;
    display: inherit;
}

.light-gallery-item {
    min-height: 500px;
    max-height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-image {
    min-height: 400px;
    margin: 0 auto;
    background-size: cover;
    border-radius: 10px;
    margin-top: 10px;
}

.gallery-item-text {
    padding: 10px;
    overflow: hidden;
}
.services-info {
    min-height: 85px;
    max-height: 85px;
}