.hero2-section {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Adjust as needed */
    min-height: 700px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: smoothZoom 30s ease-in-out infinite;
    z-index: 1; /* Background should be behind content */
}

/* Content wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3; /* Higher than background */
    height: 100%;
    display: flex;
    align-items: center;
}

/* Make sure container and content are properly positioned */
.hero2-section .container {
    position: relative;
    z-index: 4;
}

.hero-header {
    position: relative;
    z-index: 5;
    color: #fff; /* Ensure text is white for better contrast */
}

/* Zoom in animation */
@keyframes smoothZoom {
    0%, 100% {
        transform: scale(1.4);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Optional overlay for better text readability */
.hero2-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2; /* Between background and content */
}

/* Ensure buttons are visible */
.vl-btn2 {
    position: relative;
    z-index: 6;
    display: inline-block;
    background-color: #ff9800; /* Orange color for visibility */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vl-btn2:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Make sure text is visible */
.hero-header h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-header h5 {
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero2-section {
        height: 80vh;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2rem;
    }
    
    .hero-header p {
        font-size: 1rem;
    }
    
    .hero2-section {
        height: 70vh;
        min-height: 500px;
    }
}
/* Base Styles */
.solar-systems-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.solar-systems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 211, 72, 0.1) 0%, transparent 100%);
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 211, 72, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-icon {
    color: #00D348;
    font-size: 20px;
}

.badge-text {
    color: #00D348;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-title .highlight {
    color: #00D348;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 211, 72, 0.2);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Systems Grid */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

/* System Card */
.system-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(0, 211, 72, 0.1);
}

.system-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 211, 72, 0.15);
    border-color: rgba(0, 211, 72, 0.3);
}

.system-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border: 2px solid #00D348;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #00D348;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.system-icon {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto 20px;
    
}
.system-icon img{
    border-radius: 10%;
    border: 1px solid black;
}
.system-icon img:hover{
    transform: translateY(-10px);
    border: 1px solid rgb(6, 11, 147);
    animation: anim 3s ease-in-out;

}
@keyframes anim {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(10deg); }
}
.icon-wrapper {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D348 0%, #00b844 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 211, 72, 0.3);
}

.system-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff9800;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.system-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.system-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Card Body */
.system-highlight {
    background: rgba(0, 211, 72, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #00D348;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #00D348;
}

.system-features h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.system-features ul {
    list-style: none;
    padding: 0;
}

.system-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.system-features li i {
    color: #00D348;
    font-size: 14px;
}

.system-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    border-left: 3px solid #00D348;
}

.system-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.spec-item {
    text-align: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(0, 211, 72, 0.1);
    transform: translateY(-3px);
}

.spec-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-system {
    flex: 1;
    background: linear-gradient(135deg, #00D348 0%, #00b844 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 211, 72, 0.3);
}

.btn-system:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 211, 72, 0.4);
    color: white;
}

.btn-learn-more {
    padding: 15px 20px;
    color: #00D348;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(0, 211, 72, 0.3);
}

.btn-learn-more:hover {
    background: rgba(0, 211, 72, 0.1);
    color: #00D348;
}

/* Card Ornament */
.card-ornament {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    opacity: 0.1;
    pointer-events: none;
}

.ornament-dot {
    width: 100px;
    height: 100px;
    border: 2px dashed #00D348;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ornament-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 2px;
    background: #00D348;
    opacity: 0.3;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.comparison-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    background: #00D348;
    color: white;
    padding: 25px;
}

.header-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.header-item:first-child {
    justify-content: flex-start;
}

.system-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.table-body {
    padding: 0;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    padding: 20px 25px;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(0, 211, 72, 0.05);
}

.row-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.row-item {
    text-align: center;
    color: #555;
    font-weight: 500;
}

.status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status.yes {
    background: rgba(0, 211, 72, 0.1);
    color: #00D348;
    border: 1px solid rgba(0, 211, 72, 0.3);
}

.status.no {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
}

.status.optional {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.price, .duration {
    font-weight: 600;
    font-size: 1.1rem;
}

.price {
    color: #00D348;
}

.duration {
    color: #666;
}

/* Comparison CTA */
.comparison-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.comparison-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.btn-consultation {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #00D348 0%, #00b844 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 211, 72, 0.3);
}

.btn-consultation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 211, 72, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .systems-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .system-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solar-systems-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .card-footer {
        flex-direction: column;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        min-width: 700px;
    }
    
    .system-specs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .system-card {
        padding: 30px 20px;
    }
    
    .system-specs {
        grid-template-columns: 1fr;
    }
    
    .btn-consultation {
        flex-direction: column;
        padding: 15px 25px;
    }
}
