/* custom-styles.css */
:root {
    --orange: #f46024;
    --orange-hover: #e04e14;
    --dark-grey: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.max-content-width {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
                      url('/Assets/Images/Hero_placeholder.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.contact-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
                      url('/Assets/Images/Contact_placeholder.jpg');
    background-size: cover;
    background-position: center;
}

.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.service-card:hover {
    transform: scale(1.05);
}

.social-icon {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.modal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Language selector styles */
.language-selector {
    position: relative;
}

.language-options {
    display: none;
    position: absolute;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 120px;
}

.language-selector:hover .language-options {
    display: block;
}

/* Button styles */
.btn {
    border-radius: 5px !important;
}

/* Testimonial carousel */
.testimonial-container {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicator.active {
    background-color: var(--orange);
}

/* Card styles */
.card {
    border-radius: 5px;
    overflow: hidden;
}

/* Testimonial card styles */
.testimonial-inner-card {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}