body {
    font-family: Arial, sans-serif;
    color: #333;
}

.nav-link.active {
    color: #fa6d62 !important;
    font-weight: bold;
}

.nav-link {
    color: #ffffff !important;
}

/* Loader Animation Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.loader-logo {
    font-size: 24px;
    font-weight: bold;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.navbar {
    background-color: rgb(6, 113, 183);
    transition: background-color 1.5s ease-in-out;
}

.navbar button,
.nav-link {
    color: #fff;
    border-radius: 20px;
    padding-top: -5px;
    padding-bottom: -5px;
}

/* button:hover, */
a .nav-link:hover {
    color: #fa6d62;
}

/* Dynamic Background */
body {
    background: linear-gradient(
        120deg,
        rgb(240, 246, 249, 0.8),
        rgb(240, 246, 249, 0.5)
    );
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.testimonial {
    /* display: inline-flex; */
    animation: slide 10s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.carousel-indicators button {
    background-color: #cccccc !important; /* Default color for inactive indicators */
    border: none !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
}

/* Change the color of the active indicator */
.carousel-indicators .active {
    background-color: #0671b7 !important; /* Replace with your desired active color */
    width: 14px !important; /* Slightly larger size for the active indicator */
    height: 14px !important;
    outline: 2px solid #ffffff !important; /* Add an outline */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add shadow */
}

/* Customize previous button icon */
.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D"http://www.w3.org/2000/svg" fill%3D"YOUR_COLOR" viewBox%3D"0 0 16 16"%3E%3Cpath d%3D"M11.354 1.354a.5.5 0 0 1 0 .707L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"%3E%3C/path%3E%3C/svg%3E');
}

/* Customize next button icon */
.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D"http://www.w3.org/2000/svg" fill%3D"YOUR_COLOR" viewBox%3D"0 0 16 16"%3E%3Cpath d%3D"M4.646 1.354a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"%3E%3C/path%3E%3C/svg%3E');
}

/* Hero Section */
.hero-section {
    background: rgb(244, 249, 251);
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* height: 75vh; */
}

.hero-section h1 {
    color: #000000;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #000000;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
}

/* Feature Section */
.feature-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.feature-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: auto;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.feature-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #007bff;
    color: #fff;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial .client-name {
    font-weight: bold;
    margin-top: 15px;
    position: absolute;
    bottom: 30px;
}

.client-position {
    font-size: 0.9rem;
    color: #a2a2a2;
    position: absolute;
    bottom: 10px;
}

/* Animation */
.animated {
    opacity: 0;
    transition: opacity 1s, transform 1s;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
