﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 0px;
    padding-bottom: 20px;
}




/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

/*/Contact Us/*/

/* =========================
   CONTACT PAGE – CLEAN & SAFE
========================= */

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Headings */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

/* Paragraph text */
.contact-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact details */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

    .contact-info li {
        font-size: 16px;
        color: #333;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
    }

    .contact-info span {
        color: #31708f; /* Brand Orange */
        font-size: 18px;
        margin-right: 10px;
    }

/* =========================
   FORM ELEMENTS
========================= */

.contact-section .form-control {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-section textarea.form-control {
    height: auto;
    resize: vertical;
}

.contact-section .form-control:focus {
    border-color: #31708f;
    box-shadow: none;
}

/* Submit Button */
.btn-submit {
    background-color: #31708f;
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.25s ease;
}

    .btn-submit:hover,
    .btn-submit:focus {
        background-color: #e8622a;
        color: #fff;
    }

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .contact-info li {
        font-size: 15px;
    }

    .btn-submit {
        width: 100%;
    }
}


/*Contact US*/


/* =========================
   CONTACT SECTION CSS
========================= */
.contact-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.contact-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Contact Info List */
.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .contact-info li {
        margin-bottom: 15px;
        font-size: 16px;
        color: #333;
    }

    .contact-info span {
        color: #31708f;
        margin-right: 10px;
    }

/* Form Styling */
.contact-form .form-control {
    margin-bottom: 15px;
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 12px;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.contact-form label {
    font-weight: 600;
    color: #333;
}

.contact-form .btn {
    background: #31708f;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
}

    .contact-form .btn:hover {
        background: #d95a1e;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form {
        background: #fff;
        border-radius: 6px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border-top: 4px solid #31708f;
    }
}


/*End Contact Us*/
/*Default page*/
<!-- CUSTOM CSS -->
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* overlay for readability */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-section .btn-primary {
    background: #31708f;
    border-color: #31708f;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
}

    .hero-section .btn-primary:hover {
        background: #d95a1e;
        border-color: #d95a1e;
    }

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}


.section-padding {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
}

.product-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    /* padding: 20px;*/
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 18px rgba(0,0,0,0.1);
    }

    .product-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 15px;
    }

    .product-box h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #222;
    }

    .product-box p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        text-align: justify;
        padding: 20px;
    }

@media (max-width: 768px) {
    .product-box img {
        height: 229px;
    }
}



.section-text {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify
}

.bg-light {
    background-color: #f9f9f9;
}

.product-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
}

.product-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}



@media (max-width: 768px) {
    .product-box img {
        height: 180px;
    }
}

.cta-banner {
    background: #f9f9f9;
    color: #111;
    padding: 30px 0;
}

    .cta-banner h2 {
        color: black;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .cta-banner p {
        color: #111;
        margin-bottom: 25px;
    }

    .cta-banner .btn {
        margin: 5px;
    }


/*End Default*/


/* =========================
   ABOUT US PAGE CSS
========================= */
.about-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #31708f;
}

/* Section Title */
.about-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.about-card hr {
    margin: 10px 0 20px;
}

/* Section blocks */
.section-block {
    margin: 20px 30px;
}

.section-title-card {
    font-size: 20px;
    color: black;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-block p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

/* Bullet List */
.list-check {
    list-style: none;
    padding: 0;
}

    .list-check li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #333;
    }

        .list-check li:before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 0;
            color: #31708f;
            font-weight: 700;
        }

/* Team Cards */
.team-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #fff;
}

.team-img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 10px;
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.team-role {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-block {
        margin: 15px 10px;
    }

    .section-title-card {
        font-size: 18px;
    }

    .team-img {
        width: 100px;
        height: 100px;
    }
}




/* End*/

/*Services*/

/* =========================
   SERVICES PAGE CSS
========================= */
.services-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #31708f;
}

.services-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.services-card hr {
    margin: 10px 0 20px;
}

/* Service Boxes */
.service-card {
    background: #fff;
    border-radius: 6px;
    padding: 25px 20px;
    border: 1px solid #eee;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

.service-icon {
    font-size: 32px;
    color: #31708f;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align:left
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 20px 15px;
    }
}


/*End Services*/

/*Produts*/


/* =========================
   PRODUCTS PAGE CSS
========================= */
.BorderSignIn {
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #31708f; /* brand color */
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 18px rgba(0,0,0,0.12);
    }

.product-img img {
    width: 100%;
    border-radius: 6px;
    height: 200px;
    object-fit: cover;
}

.product-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    color: #222;
}

.product-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin: 10px 0 15px;
    padding: 10px;
    text-align: left;
}

.product-card .btn {
    background: #31708f;
    border-color: #31708f;
    color: #fff;
    border-radius: 4px;
    padding: 8px 14px;
}

    .product-card .btn:hover {
        background: #d95a1e;
        border-color: #d95a1e;
    }

/* Responsive */
@media (max-width: 768px) {
    .product-img img {
        height: 180px;
    }
}



/*End Products */

/*Site Master*/


/* Top bar (normal flow) */
.top-bar {
    /*background: #f3763a;*/
    background: #31708f;
    list-style: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    /*color: #000;*/
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #f7eaea;
}

/* Navbar default */
.navbar {
    margin-bottom: 0;
    border-radius: 0;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a {
    color: #000;
    font-weight: 500;
}

    .navbar-default .navbar-nav > li > a:hover {
        color: #333;
    }

/* Fixed state */
.navbar-fixed-on-scroll {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Offset content */
.content-offset {
    margin-top: 60px; /* navbar height */
}

