/*
Theme Name: SolarGlow
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Solar Renewable Energy Html Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

/* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */



/* Custom Service Section Styles for Equal Height Cards */
.service-section .row {
    display: flex;
    flex-wrap: wrap;
}

.service-section .service-box-items {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-section .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-section .service-content h3 {
    margin-bottom: 15px;
}

.service-section .service-content p {
    margin-bottom: 15px;
}

.service-section .service-content h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #556B2F;
}

.service-section .service-content ul {
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-section .service-content .link-btn {
    margin-top: auto;
}

/* Custom Contact Form Dropdown Styles */
.contact-section-3 .form-clt .nice-select {
    color: #333 !important;
    background-color: transparent;
}

.contact-section-3 .form-clt .nice-select .current {
    color: #333 !important;
}

.contact-section-3 .form-clt .nice-select .list {
    background-color: #fff;
    z-index: 999;
}

.contact-section-3 .form-clt .nice-select .option {
    color: #333 !important;
    background-color: #fff;
    padding: 10px 20px;
}

.contact-section-3 .form-clt .nice-select .option:hover,
.contact-section-3 .form-clt .nice-select .option.focus,
.contact-section-3 .form-clt .nice-select .option.selected.focus {
    background-color: #f0f0f0;
}

/* Fix Contact Section Image Alignment - Override negative top */
.contact-section-3 .contact-image {
    top: 0 !important;
    bottom: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}

.contact-section-3 .contact-image img {
    object-fit: cover;
    object-position: center top;
    height: 100%;
    width: 100%;
}

/* Number Talks Section - Redesign */
.number-talks-section {
    padding: 100px 0 !important;
    background-color: #f7f9f5;
    position: relative;
    overflow: hidden;
}

.number-talks-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.number-talks-content.text-center {
    width: 100%;
}

.number-talks-section .counter-box {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8dc;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.number-talks-section .counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(107, 142, 35, 0.12);
    border-color: #6b8e23;
}

.number-talks-section .counter-box .icon {
    width: 70px;
    height: 70px;
    background: #f4f7f2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.number-talks-section .counter-box .icon img {
    max-width: 40px;
    height: auto;
}

.number-talks-section .counter-box h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.number-talks-section .counter-box p {
    font-size: 16px;
    font-weight: 700;
    color: #6b8e23;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.number-talks-section .stat-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-top: auto !important;
    text-align: center !important;
    display: block !important;
}

@media (max-width: 991px) {
    .number-talks-section .counter-box h2 {
        font-size: 32px;
    }
}

/* Number Talks Section - Image Vertical Alignment (Kept for compatibility if needed elsewhere) */
.number-talks-section .number-talks-thumb {
    display: flex;
    align-items: center;
    height: 100%;
}

.number-talks-section .number-talks-thumb img {
    width: 100%;
    height: auto;
}

/* Service Card Icon Centering */
.service-card-items-2 {
    position: relative;
}

.service-card-items-2 .service-thumb .icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Know More Center Effect for Service Image */
.service-image {
    position: relative;
    overflow: hidden;
    background-color: #000;
    /* Dark background to enhance blur effect */
}

.know-more-strip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    /* Start slightly lower for entrance effect */
    width: auto;
    min-width: 140px;
    background: rgba(85, 107, 47, 0.95);
    color: #ffffff !important;
    text-align: center;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    text-decoration: none;
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-image:hover .know-more-strip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.service-image img {
    transition: all 0.5s ease;
    display: block;
    width: 100%;
}

.service-image:hover img {
    filter: blur(4px);
    opacity: 0.7;
    transform: scale(1.1);
}

/* Fix for Left Navigation Button persistent highlight */
.array-button .array-prev {
    background-color: transparent !important;
    color: var(--theme) !important;
    border: 1.5px solid var(--border) !important;
}

.array-button .array-prev:hover {
    background-color: var(--theme) !important;
    color: var(--white) !important;
    border: 1.5px solid var(--theme) !important;
}

.array-button .array-next:hover {
    background-color: var(--theme) !important;
    color: var(--white) !important;
    border: 1.5px solid var(--theme) !important;
}