/* Custom Product Styles */
#products-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.product-section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.product-category-title {
    font-size: 24px;
    font-weight: 600;
    color: #0D98BA;
    margin-bottom: 30px;
    border-bottom: 2px solid #0D98BA;
    display: inline-block;
    padding-bottom: 10px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-image-container {
    position: relative;
    overflow: hidden;
    background: #fff;
    text-align: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.product-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image-container img {
    transform: scale(1.08);
}
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    min-height: 40px;
}
.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.btn-custom {
    background-color: #0D98BA;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background-color 0.3s;
    border: none;
}
.btn-custom:hover, .btn-custom:focus {
    background-color: #0a7a95;
    color: #fff;
    text-decoration: none;
}
.pdf-download-icon {
    width: 35px;
    height: auto;
    transition: transform 0.2s;
}
.pdf-download-icon:hover {
    transform: scale(1.1);
}
/* Flexbox grid fix for Bootstrap 3 */
.row.flex-row {
    display: flex;
    flex-wrap: wrap;
}
.row.flex-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Custom Navigation Bar Styles */
.lesco-navbar {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.lesco-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.lesco-navbar .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lesco-brand {
    display: flex !important;
    align-items: center;
    padding: 5px 15px;
    height: auto;
    text-decoration: none !important;
}

.lesco-logo {
    height: 45px;
    width: auto;
    margin-right: 15px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lesco-brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #333 !important;
    letter-spacing: 1px;
}

.lesco-nav-links {
    margin: 0;
}

.lesco-nav-links > li > a {
    color: #444 !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px !important;
    position: relative;
    transition: color 0.3s ease;
}

.lesco-nav-links > li > a:hover,
.lesco-nav-links > li > a:focus {
    color: #0D98BA !important;
    background-color: transparent !important;
}

.lesco-nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    background-color: #0D98BA;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.lesco-nav-links > li > a:hover::after {
    width: calc(100% - 40px);
}

.navbar-toggle {
    border-color: transparent !important;
    margin-top: 0;
}

.navbar-toggle .icon-bar {
    background-color: #0D98BA !important;
    height: 3px;
    border-radius: 2px;
}

.navbar-toggle:hover, .navbar-toggle:focus {
    background-color: rgba(13, 152, 186, 0.1) !important;
}

@media (max-width: 767px) {
    .lesco-navbar .container {
        display: block;
    }
    .lesco-brand-text {
        font-size: 18px;
    }
    .lesco-logo {
        height: 35px;
    }
    .lesco-navbar {
        padding: 5px 0;
    }
    .lesco-nav-links > li > a::after {
        display: none;
    }
}

/* Contact Page Styles */
#contact-page {
    padding: 80px 0;
    background-color: #f4f7f6;
}
#contact-page h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
#contact-page h2 span {
    color: #0D98BA;
}
#contact-page .lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}
.contact-info-box, .contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}
.contact-info-box h3, .contact-form-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #0D98BA;
    display: inline-block;
    padding-bottom: 10px;
}
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.contact-details li i {
    font-size: 24px;
    color: #0D98BA;
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}
.contact-details li p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.contact-details li strong {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}
.contact-details li a {
    color: #0D98BA;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-details li a:hover {
    color: #0a7a95;
}
.social-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #f4f7f6;
    color: #333;
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background-color: #0D98BA;
    color: #fff;
    transform: translateY(-3px);
}
.custom-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}
.custom-form label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}
.custom-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.custom-form .form-control:focus {
    border-color: #0D98BA;
    box-shadow: 0 0 8px rgba(13, 152, 186, 0.2);
    outline: none;
}
.custom-form textarea.form-control {
    resize: vertical;
}
.submit-btn {
    background-color: #0D98BA;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}
.submit-btn:hover {
    background-color: #0a7a95;
    color: #fff;
    box-shadow: 0 4px 10px rgba(13, 152, 186, 0.3);
    transform: translateY(-2px);
}
@media (max-width: 767px) {
    .contact-info-box {
        margin-bottom: 30px;
    }
}

/* About Page Styles */
#about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

#about-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

#about-section h2 span {
    color: #0D98BA;
}

.about-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top-color: #0D98BA;
}

.about-icon {
    margin-bottom: 25px;
}

.about-icon i {
    font-size: 48px;
    color: #0D98BA;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon i {
    transform: scale(1.2) rotate(10deg);
}

.about-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Services Page Styles */
#services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

#services-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

#services-section h2 span {
    color: #0D98BA;
}

.services-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    background: #fff;
    text-align: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.service-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0D98BA;
    background-color: rgba(13, 152, 186, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: center;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}
