:root {
    --dark: #0f0f0f;
    --light: #ffffff;
    --accent: #ff7a00;
    --gray: #777;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background: var(--light);
    color: var(--dark);
}

.navbar {
    background: var(--dark);
}

.logo {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.4rem;
}

.logo span {
    color: var(--accent);
}

.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.button-color {
    background-color: #ff7a00;
    border: 0;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title-small {
    color: #ff7a00;
    font-size: 14px;
}

.section-dark {
    background: var(--dark);
    color: white;
}

.service-card {
    border: #ccc9c4;
    border-style: solid;
    border-width: 0px;
    padding: 2.5rem 2rem;
    transition: .3s;
}

.service-card:hover {
    border: #ff7a00;
    border-style: solid;
    border-width: 0px;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
}

footer {
    background: var(--dark);
    color: #bbb;
}

footer h5 {
    color: white;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

.color-logo {
    color: #ff7a00;
}

.hero-slider,
    .hero-slider .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

.hero-slider img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }


.carousel-caption {
    position: absolute;
    bottom: 10%;
    left: 15%;
    z-index: 2;
    max-width: 600px;
    padding: 0;
    text-align: left;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.carousel-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0) 65%
    );
}


/* Mobile */
@media (max-width: 768px) {
    .carousel-gradient {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0)
        );
    }
}

.color-svg {
    color: #ff7a00;
}


.offer-bg {
    background: #f1f3f6;
}

.sigplus-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}