/* 
    About Premium Styles for Kusum Solar
    Focus: Glassmorphism, Gradients, and Smooth Animations
*/

:root {
    --premium-green: #2E7D32;
    --energy-green: #256f51;
    --accent-orange: #f8a734;
    --dark-navy: #0B0D17;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(71, 175, 52, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(71, 175, 52, 0.5);
    }
}

.float-anim {
    animation: floatY 6s ease-in-out infinite;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--energy-green);
    transform: translateY(-5px);
}

/* Parallax Effect for Hero */
.hero-premium-v2 {
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.hero-premium-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
}

.title-gradient {
    background: linear-gradient(90deg, #fff 0%, var(--energy-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Journey Section (Timeline) */
.journey-path {
    position: relative;
    padding-left: 50px;
}

.journey-path::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--energy-green), transparent);
}

.journey-step {
    position: relative;
    margin-bottom: 50px;
}

.journey-step::after {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--energy-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--energy-green);
}

/* Subsidy Dashboard Style */
.subsidy-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--energy-green);
    transition: var(--transition-smooth);
}

.subsidy-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(71, 175, 52, 0.15);
}

.subsidy-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--energy-green);
    margin: 10px 0;
}

/* Interactive Image Frames */
.img-frame-premium {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.img-frame-premium img {
    transition: transform 0.8s ease;
}

.img-frame-premium:hover img {
    transform: scale(1.1);
}

.img-frame-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 10px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    pointer-events: none;
}

/* Feature Grid */
.feature-box-v2 {
    text-align: center;
    padding: 40px;
    border-radius: 24px;
    background: #f8f9fa;
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-box-v2:hover {
    background: var(--dark-navy);
    color: #fff;
}

.feature-box-v2 i {
    font-size: 3rem;
    color: var(--energy-green);
    margin-bottom: 20px;
}

.feature-box-v2:hover i {
    color: var(--accent-orange);
    transform: rotateY(360deg);
}

.feature-box-v2 h3 {
    margin-bottom: 15px;
    transition: color 0.3s;
}

.feature-box-v2:hover h3 {
    color: #fff;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-premium-v2 {
        text-align: center;
        min-height: 60vh;
    }
}

/* Team Cards */
.team-card {
    padding: 30px;
    transition: var(--transition-smooth);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(71, 175, 52, 0.2);
}

.team-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--energy-green);
    transition: var(--transition-smooth);
}

.team-card:hover .team-img img {
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
}

.testimonial-item {
    margin: 0 15px;
}

.testimonial-slider .slick-dots {
    bottom: -50px;
}

.testimonial-slider .slick-dots li button:before {
    color: var(--energy-green);
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--energy-green);
}

/* Enhanced Glass Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-color);
}

/* Achievement Stats */
.stat-card {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--energy-green);
    margin-bottom: 10px;
    display: inline-block;
}

.stat-symbol {
    font-size: 2rem;
    vertical-align: super;
}