/*  
Theme Name: New Theme
Theme URI: YourWebsite.com
Description: Your Theme Description
Version: 1.0
Author: Your Name
Author URI: http://www.yourwebsite.com

*/

body {
    padding-top: 70px;
    /* adjust based on navbar height */
}

/* Footer css */
.footer {
    background: #111827;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p,
.footer a,
.footer li {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 18px;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* end Footer css */

/* Banner css */
.banner {
    background-color: #04624a;
    /* Bootstrap green */
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* end Banner css */

/* About Css */
.about-section {
    padding: 80px 20px;
    text-align: center;
}

.about-title {
    display: inline-block;
    /* border-bottom: 3px solid #0d6efd; */
    /* Bootstrap blue */
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #555;
}

.about-link {
    color: #0d6efd;
    text-decoration: underline;
    font-weight: 500;
}

.about-link:hover {
    color: #084298;
    /* darker blue */
}

/* end About Css */

/* Product Section css */
.product-section {
    padding: 80px 20px;
}

.section-title {
    display: inline-block;
    /* border-bottom: 3px solid #0d6efd; */
    padding-bottom: 8px;
    margin-bottom: 40px;
    font-weight: 600;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    /* stack image + info */
    height: 100%;
    /* full height */
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    padding: 20px;
    text-align: center;
}

.product-image img {
    max-width: 100px;
}

.product-info {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    /* push bottom evenly */
}

.product-info h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    color: #555;
}

/* end Product Section css */

/* Why choose us section */
.choose-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    /* border-bottom: 3px solid #0d6efd; */
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 40px;
    font-weight: 600;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
    height: 100%;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.choose-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.choose-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* end Why choose us section */


/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    /* border-bottom: 3px solid #0d6efd; */
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: #0d6efd; */
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    margin-right: 15px;
}

.contact-info .info-text h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info .info-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.contact-form h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form .btn-send {
    background: #0d6efd;
    color: #fff;
    font-weight: 500;
}

.contact-form .btn-send:hover {
    background: #084298;
}

.contact-form {
    background-color: #d7e4db;
    border-radius: 20px !important;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 10px;
}

/* End Contact Section */


.border-bottom-blue::after {
    content: "";
    display: block;
    width: 50px;
    border-bottom: 3px solid #0d6efd;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}

.navbar-brand {
    margin-left: 1rem;
}

@media screen and (min-width: 768px) {
    .navbar-nav {
        margin: auto;
    }
}


#productsection {
    scroll-margin-top: 100px;
    /* change 100px to your header height */
}

#contactsection {
    scroll-margin-top: 100px;
    /* change 100px to your header height */
}


/* Submenu open onhover */
.navbar .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

/* Second level */
.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: 0.1rem;
    display: none;
    position: absolute;
}


.dropdown-menu li:hover>.dropdown-menu {
    display: block;
}


.dropdown-submenu {
    position: relative;
}

/* End Submenu open onhover */

@media screen and (max-width: 767px) {
    .navbar-light .navbar-toggler {
        margin-right: 15px;
    }

    .navbar-collapse {
        padding-left: 15px;
    }
}