﻿:root {
    --primary: #345285;
    --secondary: #737070;
    --light: #f8f9fa;
    --dark: #737070;
    --accent: #27e38f;
}


body {
    font-family: "DM Sans", sans-serif;
    color: #737070;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 10px;
    transition: all 0.3s;
}

    .nav-link:hover, .nav-link.active {
        color: var(--primary);
    }


.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #41799f;
        border-color: #41799f;
        transform: translateY(-2px);
    }

.hero-section {
    background: white;
    color: #737070;
    padding: 120px 0 100px;
}

.section-title {
    position: relative;
    margin-bottom: 45px;
    font-weight: 700;
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background: var(--secondary);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-us-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 15px 0;
    position: relative;
}

    .testimonial-card::before {
        content: """; position: absolute;
        top: 20px;
        left: 20px;
        font-size: 5rem;
        color: rgba(26, 107, 84, 0.1);
        /*font-family: Georgia, serif;*/
        line-height: 1;
    }

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

footer {
    background-color: white;
    color: var(--primary);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: darkblue;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

    .social-icon:hover {
        background: var(--primary);
        transform: translateY(-3px);
        color:white;
    }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.strong{
    font-size: xx-large;
}

