/* Hero Banner */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    background: rgba(27, 38, 59, 0.7); /* Navy overlay */
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
.hero-tagline {
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Lora', serif;
    margin: 0;
}

/* Help Section */
.help-section {
    background: #fff;
}
.help-section h2 {
    font-family: 'Lora', serif;
    color: #1B263B;
}
.help-section p.lead {
    font-size: 1.25rem;
    color: #333;
}

/* Services Section */
.services-section {
    background: #f8f8f8;
}
.services-section h2, .service-category h3 {
    font-family: 'Lora', serif;
    color: #1B263B;
}
.service-category .card {
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.service-category .card-img-top {
    height: 150px;
    object-fit: cover;
}
.service-category .card-body {
    padding: 20px;
}
.service-category .card-title {
    font-size: 1.25rem;
    color: #1B263B;
}
.service-category .card-text {
    color: #666;
}
.service-category .btn-outline-primary {
    border-color: #D4A017;
    color: #D4A017;
}
.service-category .btn-outline-primary:hover {
    background: #D4A017;
    color: #fff;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
}
.testimonials-section h2 {
    font-family: 'Lora', serif;
    color: #1B263B;
}
.testimonials-section .card {
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.testimonials-section .card-text {
    font-style: italic;
    color: #333;
}

.testimonials-section .card-title {
    font-size: 1.1rem;
    color: #1B263B;
    border-top: 1px solid #007bff;
    padding-left: 2em;
    padding-top: .4em;
}

.testimonials-section .card-subtitle {
    font-size: 0.9rem;
}

.card-body > p:first-of-type {
    /*
    content: open-quote;
    font-weight: bold;
    font-size: 32px;
    font-family: Georgia, "Times New Roman", Times, serif;
    */
    /* quotes: "\201C" "\201D" "\2018" "\2019"; */
    quotes: "“" "”" "“" "”";
}

blockquote {
    border:none;
    font-family:  Georgia, "Times New Roman", Times, serif;
    margin-bottom:30px;
    /* quotes: "\201C" "\201D" "\2018" "\2019"; */
    quotes: "“" "”" "“" "”";
}

blockquote {
    font-size:21px;
}

blockquote p {
    font-size: 1.2rem;
}

blockquote:before {
    content: open-quote;
    font-weight: bold;
    font-size:35px;
    line-height: 110%;
    color:#333333;
}
/*
blockquote:after {
    content: close-quote;
    font-weight: bold;
    font-size:25px;
    line-height: 110%;
    color:#333333;
}
*/

#aaa-BoxBioBlogger{
    width: 100%x;
    height: 282px;
    /* background-image: url('http://i.imgur.com/mFYYD8J.jpg'); */
    background-size: cover;
}

.theQuoteBioBlogger {
    position: relative;
    top: 43%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #333333;
    text-align: center;
}

.fromquoteBioBlogger {
    text-transform: uppercase;
}
.quoteBioBlogger {
    width: 76%;
    line-height: 1.3em;
    margin: 20px auto;
    font-size: 1em;
}

blockquote p:first-of-type {
    transform: translateY(-10%);
    text-indent: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    .hero-tagline {
        font-size: 1.8rem;
    }
    .help-section p.lead {
        font-size: 1rem;
    }
    .service-category .card-img-top {
        height: 120px;
    }
    .blog-section .card-img-top {
        height: 150px;
    }
}
@media (max-width: 576px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
    .service-category .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}