/* 
   D.E. Technics Website Styles
   Main Stylesheet
*/

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c8a415;
    color: #fff;
    border: 2px solid #c8a415;
}

.btn-primary:hover {
    background-color: #b69313;
    border-color: #b69313;
}

.btn-primary-sm {
    background-color: #c8a415;
    color: #fff;
    border: 2px solid #c8a415;
    padding: 8px 20px;
    font-size: 14px;
}

.btn-primary-sm:hover {
    background-color: #b69313;
    border-color: #b69313;
}

.btn-light {
    background-color: #fff;
    color: #c8a415;
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #c8a415;
}

.btn-outline-sm {
    background-color: transparent;
    color: #c8a415;
    border: 2px solid #c8a415;
    padding: 8px 20px;
    font-size: 14px;
}

.btn-outline-sm:hover {
    background-color: #c8a415;
    color: #fff;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.contact-info a {
    color: #c8a415;
}

.contact-info a:hover {
    text-decoration: underline;
}

.search-icon {
    cursor: pointer;
    color: #666;
}

.search-icon:hover {
    color: #c8a415;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.youtube-icon {
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.youtube-icon:hover {
    color: #FF0000;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #c8a415;
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 14px;
    color: #c8a415;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #c8a415;
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c8a415;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 150px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    left: 10px
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #c8a415;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.mobile-menu ul li a:hover {
    color: #c8a415;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    background-image: url('/images/bg-banner.jpg'); /* Add your image path here */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    padding: 20px; /* Add some padding for better visibility */
    border-radius: 5px; /* Optional: Add rounded corners */
}

.breadcrumb a {
    color: #c8a415;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/*.hero-slide::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*}*/

/*.hero-content {*/
/*    position: relative;*/
/*    z-index: 10;*/
/*    max-width: 600px;*/
/*    padding-top: 150px;*/
/*    color: #fff;*/
/*}*/

/*.hero-content h1 {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 20px;*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    transition: all 0.5s ease 0.3s;*/
/*}*/

/*.hero-content p {*/
/*    font-size: 20px;*/
/*    margin-bottom: 30px;*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    transition: all 0.5s ease 0.4s;*/
/*}*/

/*.hero-content .btn {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    transition: all 0.5s ease 0.5s;*/
/*}*/

/*.hero-slide.active .hero-content h1,*/
/*.hero-slide.active .hero-content p,*/
/*.hero-slide.active .hero-content .btn {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.industry-icon {
    margin-bottom: 20px;
}

.industry-icon img {
    height: 80px;
    width: auto;
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.industry-card p {
    color: #666;
}

/* ===== PRODUCTS SECTION ===== */
/* ===== PRODUCT LISTING PAGE STYLES ===== */

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: none;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #c8a415;
    color: #fff;
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sort label {
    color: #333;
    font-weight: 500;
}

.filter-sort select {
    padding: 8px 15px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    min-width: 180px;
}

/* Pagination */
.pagination-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background-color: #fff;
    border-radius: 4px;
    color: #666;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination a:hover,
.pagination a.active {
    background-color: #c8a415;
    color: #fff;
}

.pagination a.prev,
.pagination a.next {
    padding: 0 15px;
}

.pagination a.prev i,
.pagination a.next i {
    margin: 0 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-categories {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .filter-sort {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .pagination a {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination a:not(.prev):not(.next):not(.active):nth-child(n+5):nth-child(-n+7) {
        display: none;
    }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #c8a415;
    font-weight: 500;
}

.read-more:hover {
    color: #b69313;
}

.product-features {
    margin: 15px 0;
}

.product-features li {
    margin-bottom: 8px;
    color: #666;
}

.product-features li i {
    color: #c8a415;
    margin-right: 8px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #c8a415;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.client-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: #c8a415;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #222;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #c8a415;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #c8a415;
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 10px;
    color: #aaa;
}

.footer-links li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #c8a415;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info li i {
    display: flex;
    align-items: center;
    color: #c8a415;
    margin-right: 15px;
    margin-top: 5px;
}

.newsletter-form .form-group {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background-color: #c8a415;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #b69313;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* ===== PRODUCT CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 40px;
    color: #c8a415;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #c8a415;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    margin: 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== VISION & MISSION ===== */
.vision-box,
.mission-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.vision-box .icon,
.mission-box .icon {
    font-size: 40px;
    color: #c8a415;
    margin-bottom: 20px;
}

.vision-box h3,
.mission-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.vision-box p,
.mission-box p {
    color: #666;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.position {
    color: #c8a415;
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    color: #666;
    margin-bottom: 20px;
}

.member-info .social-icons {
    justify-content: center;
}

/* ===== HISTORY SECTION ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #eee;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-item .year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c8a415;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1;
}

.timeline-item .content {
    width: 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.timeline-item:nth-child(even) .content {
    text-align: right;
}

.timeline-item .content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item .content p {
    color: #666;
}

/* ===== CONTACT SECTION ===== */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #c8a415;
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 164, 21, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-item i {
    color: #c8a415;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info-item div p {
    color: #666;
    margin: 0;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta span i {
    margin-right: 5px;
    color: #c8a415;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

/* ===== CLIENTS SECTION ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.client-logo {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .timeline-item .content {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-item .year {
        left: 30px;
    }
    
    .timeline-item .content {
        width: 100%;
    }
    
    .timeline-item:nth-child(even) .content {
        text-align: left;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
}
/* ===== SERVICES PAGE STYLES ===== */

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #c8a415;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Details */
.service-detail-item {
    margin-bottom: 60px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 20px 0;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #c8a415;
    margin-right: 10px;
    font-size: 16px;
}

/* Service Process */
.process-steps {
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    height: calc(100% - 80px);
    width: 2px;
    background-color: #e9ecef;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #c8a415;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Service Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid #c8a415;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    background-color: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    margin-top: 15px;
}

.package-price span {
    display: block;
    color: #666;
    font-size: 14px;
}

.package-price .price {
    font-size: 36px;
    font-weight: 700;
    color: #c8a415;
    margin: 5px 0;
}

.package-body {
    padding: 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    margin-right: 10px;
    font-size: 16px;
}

.package-features li i.fa-check {
    color: #28a745;
}

.package-features li i.fa-times {
    color: #dc3545;
}

.package-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Form */
.contact-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #c8a415;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Information */
.contact-info-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 24px;
    color: #c8a415;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-info-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-box .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-info-box .social-icons a {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    color: #333;
    transition: all 0.3s ease;
}

.contact-info-box .social-icons a:hover {
    background-color: #c8a415;
    color: #fff;
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.faq-question i {
    font-size: 16px;
    color: #c8a415;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== CLIENTS PAGE STYLES ===== */

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-icon i {
    font-size: 32px;
    color: #c8a415;
}

.industry-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.client-info p {
    color: #666;
    font-size: 14px;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 25px;
}

.industry-tag {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.case-study-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #c8a415;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #b69313;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid,
    .packages-grid,
    .industries-grid,
    .testimonials-grid,
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-detail-item .row {
        flex-direction: column;
    }
    
    .service-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .packages-grid,
    .industries-grid,
    .testimonials-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        margin-top: 30px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

/* JavaScript-related styles for FAQ */
.faq-item .faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== POLICY PAGE STYLES ===== */

/* Policy Navigation */
.policy-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.policy-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    width: 150px;
    text-align: center;
}

.policy-nav-item:hover, .policy-nav-item.active {
    background-color: #c8a415;
    color: #fff;
    transform: translateY(-5px);
}

.policy-nav-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.policy-nav-item span {
    font-weight: 500;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 60px;
    padding-top: 30px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.policy-icon i {
    font-size: 32px;
    color: #c8a415;
}

.policy-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.policy-header p {
    color: #666;
    font-style: italic;
}

.policy-body {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-body h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #333;
}

.policy-body h3:first-child {
    margin-top: 0;
}

.policy-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-body ul, .policy-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-body li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ===== BLOG PAGE STYLES ===== */

/* Featured Post */
.featured-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.featured-post-image {
    position: relative;
    height: 400px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #c8a415;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.featured-post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.post-meta span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.post-meta span i {
    margin-right: 5px;
    color: #c8a415;
}

.featured-post-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.featured-post-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #c8a415;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #b69313;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    position: relative;
    height: 200px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination a.active, .pagination a:hover {
    background-color: #c8a415;
    color: #fff;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #c8a415;
}

/* Search Widget */
.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    border-color: #c8a415;
    outline: none;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #c8a415;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #b69313;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
}

.categories-widget li {
    border-bottom: 1px solid #e9ecef;
}

.categories-widget li:last-child {
    border-bottom: none;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.categories-widget a:hover {
    color: #c8a415;
}

.categories-widget span {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    color: #666;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post {
    display: flex;
    align-items: center;
}

.recent-post .post-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post .post-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.recent-post .post-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post .post-info h4 a:hover {
    color: #c8a415;
}

.recent-post .post-info span {
    font-size: 12px;
    color: #666;
}

/* Tags Widget */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tags a:hover {
    background-color: #c8a415;
    color: #fff;
}

/* Newsletter Widget */
.newsletter-widget p {
    margin-bottom: 15px;
    color: #666;
}

.newsletter-widget .form-group {
    position: relative;
}

.newsletter-widget input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.newsletter-widget input:focus {
    border-color: #c8a415;
    outline: none;
}

.newsletter-widget button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #c8a415;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-widget button:hover {
    background-color: #b69313;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .col-lg-8, .col-lg-4 {
        width: 100%;
    }
    
    .col-lg-4 {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .policy-nav-container {
        gap: 10px;
    }
    
    .policy-nav-item {
        width: calc(50% - 10px);
    }
    
    .featured-post-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .policy-nav-item {
        width: 100%;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-post-image {
        height: 200px;
    }
}

/* ===== BLOG SINGLE PAGE STYLES ===== */

/* Post Header */
.post-header {
    margin-bottom: 30px;
}

.post-title {
    font-size: 36px;
    margin: 15px 0;
    color: #333;
    line-height: 1.3;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.post-content {
    margin-bottom: 40px;
}

.post-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.post-content p.lead {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #333;
}

.post-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.post-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.post-content blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #c8a415;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.post-content blockquote p {
    margin-bottom: 10px;
}

.post-content blockquote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #333;
}

.post-image-container {
    margin: 30px 0;
}

.post-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Post Tags */
.post-tags {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    margin: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.post-tags a:hover {
    background-color: #c8a415;
    color: #fff;
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.post-share span {
    font-weight: 600;
    color: #333;
    margin-right: 15px;
}

.social-share {
    display: flex;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-share a.facebook {
    background-color: #3b5998;
}

.social-share a.twitter {
    background-color: #1da1f2;
}

.social-share a.linkedin {
    background-color: #0077b5;
}

.social-share a.pinterest {
    background-color: #bd081c;
}

.social-share a.whatsapp {
    background-color: #25d366;
}

.social-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Author Box */
.author-box {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.author-info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.author-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
}

.author-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.author-social a:hover {
    background-color: #c8a415;
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.prev-post, .next-post {
    max-width: 48%;
}

.prev-post a, .next-post a {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prev-post a:hover, .next-post a:hover {
    transform: translateY(-3px);
}

.prev-post span, .next-post span {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.prev-post h4, .next-post h4 {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.prev-post a:hover h4, .next-post a:hover h4 {
    color: #c8a415;
}

.next-post {
    text-align: right;
}

/* Related Posts */
.related-posts {
    margin-bottom: 40px;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post .post-image {
    height: 150px;
}

.related-post .post-content {
    padding: 15px;
    margin-bottom: 0;
}

.related-post h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.related-post h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h4 a:hover {
    color: #c8a415;
}

.related-post .post-meta {
    margin-bottom: 0;
}

.related-post .post-meta span {
    font-size: 12px;
}

/* Comments Section */
.comments-section {
    margin-bottom: 40px;
}

.comments-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.comments-list {
    margin-bottom: 40px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment.reply {
    margin-left: 60px;
    margin-top: -15px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.comment-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f8f9fa;
}

.comment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
}

.comment-info span {
    font-size: 12px;
    color: #666;
}

.comment-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.comment-actions {
    text-align: right;
}

.reply-btn {
    display: inline-block;
    color: #c8a415;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reply-btn:hover {
    color: #b69313;
}

.reply-btn i {
    margin-right: 5px;
}

/* Comment Form */
.comment-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.comment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.comment-form .form-control:focus {
    border-color: #c8a415;
    outline: none;
}

.comment-form .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comment-form .form-check-input {
    margin-right: 10px;
}

.comment-form .form-check-label {
    font-size: 14px;
    color: #666;
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Product Gallery */
.product-gallery {
    margin-bottom: 30px;
}

.main-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #c8a415;
}

.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding: 0 15px;
}

.product-category {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.product-rating span {
    margin-left: 10px;
    color: #666;
    font-size: 14px;
}

.product-meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.product-meta span {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.in-stock {
    color: #28a745;
    font-weight: 500;
}

.product-description {
    margin-bottom: 20px;
}

.product-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-highlights {
    margin-bottom: 30px;
}

.product-highlights h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.product-highlights ul {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.product-highlights li i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 5px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-actions .btn {
    width: 100%;
    text-align: center;
}

.product-share {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.product-share span {
    margin-right: 15px;
    font-weight: 500;
    color: #333;
}

.product-share a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.product-share a:hover {
    background-color: #c8a415;
    color: #fff;
    transform: translateY(-3px);
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #c8a415;
    border-bottom-color: #c8a415;
}

.tab-btn:hover {
    color: #c8a415;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.tab-pane p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-image-right, .content-image-left {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    align-items: center;
}

.content-image-right img, .content-image-left img {
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-image-left {
    flex-direction: row-reverse;
}

.tab-pane h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.tab-pane ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.tab-pane li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Specifications Tab */
.specs-table {
    margin-bottom: 30px;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border: 1px solid #e9ecef;
}

.specs-table td {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    color: #666;
}

.specs-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Applications Tab */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.application-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.application-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.application-icon i {
    font-size: 24px;
    color: #c8a415;
}

.application-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.application-card ul {
    list-style: none;
    padding: 0;
}

.application-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 15px;
}

.application-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c8a415;
}

.case-study {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-image {
    width: 40%;
    border-radius: 8px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-study-content {
    flex: 1;
}

.case-study-content h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.case-study-content p {
    margin-bottom: 15px;
}

.case-study-content ul {
    padding-left: 20px;
}

/* Videos Tab */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: #fff;
    font-size: 24px;
}

.video-item:hover .play-button {
    background-color: #c8a415;
}

.video-item h4 {
    font-size: 18px;
    margin: 15px 0 10px;
    padding: 0 20px;
    color: #333;
}

.video-item p {
    color: #666;
    padding: 0 20px 20px;
    margin-bottom: 0;
}

/* Reviews Tab */
.reviews-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stars {
    margin: 10px 0;
}

.stars i {
    color: #ffc107;
    font-size: 20px;
    margin: 0 2px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.rating-bars {
    flex: 1;
    max-width: 400px;
    margin-left: 50px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 60px;
    color: #666;
    font-size: 14px;
}

.progress {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 15px;
}

.progress-bar {
    height: 100%;
    background-color: #ffc107;
}

.rating-percent {
    width: 40px;
    color: #666;
    font-size: 14px;
    text-align: right;
}

.review-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.reviewer-info {
    display: flex;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.company {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.review-rating {
    margin-bottom: 5px;
}

.review-rating i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.review-date {
    color: #666;
    font-size: 12px;
}

.review-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.write-review {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-select {
    display: flex;
}

.rating-select i {
    font-size: 24px;
    color: #e9ecef;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-select i:hover, .rating-select i.active {
    color: #ffc107;
}

/* Related Products */
.related-products {
    margin-bottom: 60px;
}

.related-products h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c8a415;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #b69313;
    transform: translateY(-3px);
}

.product-content {
    padding: 20px;
}

.product-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h4 a:hover {
    color: #c8a415;
}

.product-content .product-category {
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .post-title {
        font-size: 30px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-summary {
        flex-direction: column;
    }
    
    .rating-bars {
        margin-left: 0;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .case-study {
        flex-direction: column;
    }
    
    .case-study-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .content-image-right, .content-image-left {
        flex-direction: column;
    }
    
    .content-image-right img, .content-image-left img {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 26px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
    }
    
    .next-post {
        text-align: left;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin: 0 auto 15px;
    }
    
    .comment-content::before {
        display: none;
    }
    
    .comment.reply {
        margin-left: 20px;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .post-title {
        font-size: 22px;
    }
    
    .post-content h2 {
        font-size: 20px;
    }
    
    .post-content h3 {
        font-size: 18px;
    }
    
    .post-content blockquote {
        padding: 15px;
    }
    
    .social-share {
        flex-wrap: wrap;
    }
    
    .comment-info {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .btn-outline:hover {
    background-color: #007bff;
    color: #fff;
  }
  
  .btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
  }
  
  .btn-whatsapp i {
    font-size: 18px;
  }
  .widget-cta {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
  }
  
  .widget-cta h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .widget-cta p {
    margin-bottom: 20px;
    color: var(--text-color);
  }
  
  .widget-cta .btn {
    width: 100%;
  }