@import url(https://fonts.googleapis.com/css?family=Poppins:400,600|Roboto:400,700);

body, button, input, select, textarea {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #474b50;
}

.rottevis {
    display: none;
}

nav {
    font-family: 'Poppins', Arial, sans-serif;
}

.sidebar-brand-text {
    font-family: 'Poppins', Arial, sans-serif;
}

.bg-image {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

header .video-container {
    position: relative;
    z-index: 2;
}

.video-caption {
    bottom: 4rem;
    color: #fff;
    left: 15%;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    position: absolute;
    right: 15%;
    text-align: center;
}

.header-spacer {
    height:60px;
}




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

.hero-section {
    background: radial-gradient(circle at top right, var(--primary-blue) 0%, var(--dark-blue) 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-dot-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Navbar */
.navbar { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-link { font-weight: 600; color: #444 !important; }
.nav-link.active { color: var(--primary-blue) !important; }

.service-card {
    /*border: 1px solid #eee;*/
    /*border-radius: 12px;*/
    padding: 30px;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    /*border-color: var(--primary-blue);*/
}
.icon-box {
    width: 60px; height: 60px;
    background: rgba(0, 68, 117, 0.1);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#contact { background-color: var(--primary-blue); }
.footer-link { color: white; text-decoration: underline; }

