/* Custom Styles for Blog Details Update */

/* General Layout & Typography */
.solar-blog-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Heading Design Update */
.solar-blog-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1e21;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid #ffaa17;
    /* Solar Orange Accent */
    background: linear-gradient(90deg, rgba(255, 170, 23, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Justify Text for all Paragraphs */
.blog-card-two__text,
.solar-blog-text,
.solar-feature-quote-text,
.solar-conclusion-text,
.solar-company-text {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: #6a7177;
    margin-bottom: 20px;
}

.solar-blog-text {
    font-weight: 400;
}

/* Creative Benefits List with Specific Icons */
.solar-benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.solar-benefits-item {
    background-color: #fff;
    border: 1px solid #eef2f5;
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.solar-benefits-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffaa17;
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0.1;
}

.solar-benefits-item:hover::before {
    height: 100%;
}

.solar-benefits-item:hover {
    transform: translateY(-10px);
    border-color: #ffaa17;
    box-shadow: 0 15px 35px rgba(255, 170, 23, 0.15);
}

/* Icon Styling inside the item */
.solar-benefit-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 170, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffaa17;
    font-size: 28px;
    transition: all 0.4s ease;
}

.solar-benefits-item:hover .solar-benefit-icon-box {
    background-color: #ffaa17;
    color: #fff;
    transform: rotateY(360deg);
}

.solar-benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1e21;
    margin-bottom: 10px;
    display: block;
}

.solar-benefit-desc {
    font-size: 15px;
    color: #6a7177;
    line-height: 1.6;
}


/* Feature Quote Line Styles */
.solar-feature-quote-box {
    background-color: #f8f9fa;
    border-right: 5px solid #ffaa17;
    padding: 40px;
    margin: 40px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(135deg, #fff 0%, #f4f8fa 100%);
}

.solar-feature-quote-text {
    font-size: 22px;
    font-weight: 600;
    color: #2d3134;
    font-style: italic;
    margin: 0;
    z-index: 1;
    position: relative;
}

.solar-feature-quote-box::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 60px;
    color: #ffaa17;
    opacity: 0.2;
    z-index: 0;
}

/* About Company Section Styles */
.solar-company-profile {
    background-color: #1a1e21;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.solar-company-profile::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 170, 23, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

.solar-company-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffaa17;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.solar-company-text {
    color: #dcdcdc;
    font-size: 15px;
}

.solar-certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.solar-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: #ffaa17;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Conclusion Section Styles */
.solar-conclusion-box {
    margin-top: 30px;
    padding: 30px;
    background-color: #eff6fa;
    border-radius: 12px;
    border-top: 4px solid #1a1e21;
}

.solar-conclusion-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1e21;
    margin-bottom: 15px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solar-blog-title {
        font-size: 24px;
        padding-left: 15px;
    }

    .solar-benefits-list {
        grid-template-columns: 1fr;
    }

    .solar-feature-quote-text {
        font-size: 18px;
    }
}