
/* Solar Page Specific Enhancements */
.solar-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('assets/images/WhatsApp Unknown 2026-04-18 at 3.43.28 PM/WhatsApp Image 2026-04-17 at 9.00.11 PM.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.solar-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 2;
}

.solar-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.solar-hero-content h2 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 30px;
}

.solar-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.solar-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.solar-badge-item {
    background: #008000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    width: fit-content;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.solar-badge-item i {
    background: #fff;
    color: #008000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Use Cases Grid */
.solar-use-cases {
    padding: 100px 5%;
    background: #f8f9fa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.use-case-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #00d4ff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon i {
    font-size: 3.5rem;
    color: #0a192f;
}

.use-case-card h3 {
    font-size: 1.5rem;
    color: #0a192f;
    margin-bottom: 20px;
}

.use-case-card p {
    color: #666;
    line-height: 1.6;
}

/* Solar Join Form */
.solar-form-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a192f 0%, #002d5f 100%);
    display: flex;
    justify-content: center;
}

.solar-join-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.solar-join-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a192f;
    font-size: 2rem;
}

.solar-input-group {
    margin-bottom: 20px;
    position: relative;
}

.solar-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.solar-input-group input, 
.solar-input-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.solar-input-group input:focus {
    border-color: #00d4ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.captcha-container {
    text-align: center;
    margin: 20px 0;
}

.enquire-btn {
    width: 100%;
    padding: 15px;
    background: #1a4dff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.enquire-btn:hover {
    background: #0033cc;
    transform: translateY(-2px);
}

.cancel-btn {
    width: 100%;
    padding: 15px;
    background: #5c6b89;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .solar-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .solar-badges {
        align-items: center;
        margin-top: 30px;
    }
    .solar-hero-content h1 {
        font-size: 2.5rem;
    }
}
