/* Global Styles */
body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: #828485;
    margin-top: 72px;
}

/* Navigation */
.custom-nav {
    background-color: #ffffff;
}

.custom-nav .nav-link {
    color: #111111;
}

.custom-nav .nav-link:hover {
    color: #3495c3;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        rgba(52, 151, 197, 0.85),
        rgba(52, 151, 197, 0.85)
    ),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6") center/cover no-repeat;
    min-height: 75vh;
}

.hero .btn-primary {
    background-color: #7daf43;
    border: none;
}

.hero .btn-primary:hover {
    background-color: #6b9839;
}

/* Section Headings */
.section-title {
    color: #3497c5;
    font-weight: 600;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.service-card {
    background-color: #ffffff;
    border-left: 5px solid #7daf43;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card h5 {
    color: #3497c5;
}

/* About Section */
.about-section {
    background-color: #f5f7f8;
}

.about-box {
    background-color: #ffffff;
    border-left: 5px solid #3497c5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.about-box li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #7daf43;
}

.footer p, 
.footer h5 {
    color: #ffffff;
}

/* Logo */
.logo {
    height: 142px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .logo {
        height: 148px;
    }
}

