/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Top Info Bar */
.top-info-bar {
    background: #1E3A8A;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-left span, 
.info-right span {
    margin-right: 20px;
}

.info-left i, 
.info-right i {
    color: #F59E0B;
    margin-right: 5px;
}

.social-links {
    display: inline-block;
}

.social-links a {
    color: white;
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #F59E0B;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    background: white;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #1E3A8A;
}

.logo i {
    font-size: 28px;
    color: #F59E0B;
    margin-right: 10px;
}

.tagline {
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1E3A8A;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #F59E0B;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* CTA Buttons */
.nav-cta {
    display: flex;
    gap: 15px;
}

.cta-primary, 
.cta-secondary {
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-primary {
    background: #F59E0B;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-primary:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.cta-secondary:hover {
    background: #1E3A8A;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #1E3A8A;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    padding: 20px;
    border-top: 1px solid #E5E7EB;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-menu li {
    margin: 15px 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: #374151;
    font-size: 18px;
    font-weight: 500;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-cta-btn {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-cta-btn.primary {
    background: #F59E0B;
    color: white;
}

.mobile-cta-btn.secondary {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

/* Sticky Notification */
.sticky-notification {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    animation: slideDown 0.5s ease;
}

.notification-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.notification-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.call-btn {
    background: #1E3A8A;
}

.whatsapp-btn {
    background: #25D366;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 120px;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.8) 0%, 
        rgba(245, 158, 11, 0.6) 100%);
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.hero-image-backup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1), rgba(245, 158, 11, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="solar" patternUnits="userSpaceOnUse" width="100" height="100"><rect fill="%23f59e0b" opacity="0.1" width="100" height="100"/><circle fill="%231e3a8a" opacity="0.2" cx="50" cy="50" r="30"/></pattern></defs><rect fill="url(%23solar)" width="100%" height="100%"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

.hero-left {
    color: white;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 158, 11, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.trust-badge i {
    margin-right: 8px;
    color: #1E3A8A;
}

/* Headlines */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-headline .highlight {
    color: #F59E0B;
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F59E0B;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subtitle strong {
    color: #F59E0B;
    font-weight: 700;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-item i {
    background: #F59E0B;
    color: white;
    padding: 8px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-cta-primary,
.hero-cta-secondary {
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-primary {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(0);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.hero-cta-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.hero-cta-secondary:hover {
    background: white;
    color: #1E3A8A;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 40px;
}

.customer-count {
    text-align: left;
}

.count-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F59E0B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.count-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.rating-display {
    text-align: left;
}

.stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Quick Calculator */
.quick-calculator {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-header {
    text-align: center;
    margin-bottom: 25px;
}

.calculator-header h3 {
    color: #1E3A8A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calculator-header p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Calculate Button */
.calculate-btn {
    width: 100%;
    background: linear-gradient(45deg, #1E3A8A, #3B82F6);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Calculator Results */
.calculator-results {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
    border-radius: 15px;
    border: 2px solid #10B981;
}

.result-header h4 {
    color: #1E3A8A;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.saving-item {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
}

.saving-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 5px;
}

.saving-label {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 600;
}

/* Subsidy Info */
.subsidy-info {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.subsidy-info i {
    margin-right: 8px;
}

/* Result CTA */
.get-detailed-report {
    width: 100%;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.get-detailed-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Lead Capture Form */
.lead-capture-form {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 15px;
    border: 2px solid #3B82F6;
}

.lead-capture-form h4 {
    color: #1E3A8A;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-capture-form p {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.submit-report-btn {
    width: 100%;
    background: linear-gradient(45deg, #3B82F6, #1E3A8A);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* FIXED: Floating Elements - Proper positioning to stay within screen */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.floating-testimonial {
    position: absolute;
    top: 15%;
    left: 20px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatSoft 6s ease-in-out infinite;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-content i {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #374151;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.customer-info strong {
    color: #1E3A8A;
    font-size: 0.85rem;
}

.urgency-notification {
    position: absolute;
    bottom: 25%;
    right: 20px;
    max-width: 250px;
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    animation: gentlePulse 4s ease-in-out infinite;
    pointer-events: auto;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.urgency-notification i {
    margin-right: 8px;
    animation: rotateGentle 3s linear infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
}

/* Animations - Improved and smoother */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-8px); }
    66% { transform: translateY(4px); }
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes rotateGentle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Sticky Header Effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled .top-info-bar {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .quick-calculator {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Fix floating elements for tablets */
    .floating-testimonial {
        position: static;
        transform: none;
        animation: none;
        margin: 20px auto;
        display: block;
        max-width: 400px;
    }
    
    .urgency-notification {
        position: static;
        transform: none;
        animation: none;
        margin: 20px auto;
        display: block;
        max-width: 350px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .info-left, .info-right {
        margin: 5px 0;
    }

    .nav-menu, .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .logo {
        font-size: 20px;
    }

    .hero-section {
        margin-top: 100px;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .savings-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-actions {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .sticky-notification {
        font-size: 14px;
        padding: 8px;
    }

    .notification-content {
        flex-direction: column;
        gap: 5px;
    }

    .notification-close {
        top: 5px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .top-info-bar {
        font-size: 12px;
    }

    .main-nav {
        padding: 10px 0;
    }

    .logo {
        font-size: 18px;
    }

    .tagline {
        font-size: 10px;
    }

    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
    
    .quick-calculator {
        padding: 20px;
        border-radius: 15px;
    }
    
    .count-number {
        font-size: 2rem;
    }

    .sticky-notification {
        font-size: 12px;
        padding: 6px;
    }

    /* Mobile specific fixes for floating elements */
    .hero-floating-elements {
        display: none;
    }
}
/* /////////////////////////////////// */


/* Promotional Video Section Styles - Add to your CSS file */

.promotional-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.section-badge i {
    margin-right: 8px;
    font-size: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: #F59E0B;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #F59E0B;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    background: #000;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .thumbnail-image {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.8) 0%, 
        rgba(245, 158, 11, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.6) 0%, 
        rgba(245, 158, 11, 0.4) 100%);
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    animation: playButtonPulse 2s ease-in-out infinite;
    margin-left: 5px; /* Adjust play icon position */
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

/* Video Info */
.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-duration {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.video-duration i {
    margin-right: 5px;
}

/* Video Player */
.video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Video Stats */
.video-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #F59E0B;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 600;
}

/* Video CTA */
.video-cta {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.video-cta p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.video-cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-cta-btn.cta-primary {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.video-cta-btn.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.video-cta-btn.cta-secondary {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.video-cta-btn.cta-secondary:hover {
    background: #1E3A8A;
    color: white;
}

/* Background Elements */
.video-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(245, 158, 11, 0.1);
    font-size: 60px;
    animation: floatUpDown 8s ease-in-out infinite;
}

.floating-icon.solar-panel {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.leaf {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon.bolt {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

/* Animations */
@keyframes playButtonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
    }
}

@keyframes floatUpDown {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    33% { 
        transform: translateY(-20px) rotate(5deg);
    }
    66% { 
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotional-video-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .video-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .video-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .video-cta {
        padding: 30px 20px;
    }

    .floating-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .video-stats {
        grid-template-columns: 1fr;
    }

    .video-info {
        bottom: 15px;
        left: 15px;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-duration {
        font-size: 0.8rem;
    }

    .video-cta h3 {
        font-size: 1.4rem;
    }

    .video-cta p {
        font-size: 1rem;
    }
}
/* //////////////////////// */
/* //////////////////////////////////////// */


.trusted-partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 15px;
    padding: 20px;
    transition: background 0.3s ease;
}

.partner-card:hover .partner-logo {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1), rgba(30, 58, 138, 0.1));
}

.partner-image {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-info {
    text-align: center;
}

.partner-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 8px;
}

.partner-info p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.partner-stats {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.partner-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
}

.partner-stats i {
    font-size: 0.8rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 600;
    margin-top: 2px;
}

/* Why These Partners */
.why-partners {
    text-align: center;
    margin: 60px 0;
}

.why-partners h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #F59E0B;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3B82F6, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    transform: scale(1.1);
}

.why-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.why-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Partners CTA */
.partners-cta {
    text-align: center;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.partners-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.partners-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Background Pattern */
.partners-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.pattern-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    animation: floatPattern 15s ease-in-out infinite;
}

.pattern-element:nth-child(1) {
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.pattern-element:nth-child(2) {
    top: 60%;
    right: -50px;
    animation-delay: 5s;
}

.pattern-element:nth-child(3) {
    bottom: 10%;
    left: 20%;
    width: 150px;
    height: 150px;
    animation-delay: 10s;
}

@keyframes floatPattern {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-partners-section {
        padding: 60px 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .partner-card {
        padding: 25px 20px;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
        margin: 40px 0;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .why-partners h3 {
        font-size: 1.6rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 25px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .partners-cta {
        padding: 40px 25px;
        margin-top: 40px;
    }

    .partners-cta h3 {
        font-size: 1.6rem;
    }

    .partners-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .video-cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .partner-stats {
        flex-direction: column;
        gap: 8px;
    }

    .partner-stats span {
        justify-content: center;
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}
/* ///////////////////////////////////// */

.successful-projects-section {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    overflow: hidden;
}

/* Background similar to hero section */
.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.9) 0%, 
        rgba(245, 158, 11, 0.7) 50%,
        rgba(30, 58, 138, 0.8) 100%);
    z-index: 2;
}

.projects-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.projects-image-backup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.2), rgba(245, 158, 11, 0.2)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="projects" patternUnits="userSpaceOnUse" width="120" height="120"><rect fill="%23f59e0b" opacity="0.1" width="120" height="120"/><circle fill="%231e3a8a" opacity="0.3" cx="60" cy="60" r="40"/><rect fill="%2310b981" opacity="0.2" x="40" y="40" width="40" height="40" rx="5"/></pattern></defs><rect fill="url(%23projects)" width="100%" height="100%"/></svg>');
    background-size: 200px 200px;
    background-position: center;
    z-index: 1;
}

/* Section Header */
.successful-projects-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.successful-projects-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.successful-projects-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.project-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #F59E0B, #D97706, #10B981);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.project-card:hover::before {
    transform: scaleX(1);
}

/* Project Image */
.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.8), 
        rgba(245, 158, 11, 0.6));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-capacity,
.project-savings {
    background: rgba(255, 255, 255, 0.9);
    color: #1E3A8A;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-capacity i,
.project-savings i {
    color: #F59E0B;
}

/* Project Info */
.project-info {
    padding: 25px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.project-details {
    margin-bottom: 20px;
}

.project-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #6B7280;
}

.project-detail i {
    color: #F59E0B;
    width: 16px;
    text-align: center;
}

/* Project Stats */
.project-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid #F1F5F9;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #10B981;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 600;
    margin-top: 2px;
}

/* Overall Impact */
.overall-impact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 30px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.impact-header {
    text-align: center;
    margin-bottom: 40px;
}

.impact-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.impact-header p {
    color: #6B7280;
    font-size: 1.1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
    border-radius: 18px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    border-color: #F59E0B;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.impact-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1;
}

.impact-label {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 600;
    margin-top: 5px;
}

/* View All Projects */
.view-all-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.view-all-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.view-all-content p {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.view-all-btn {
    background: linear-gradient(45deg, #10B981, #059669);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(45deg, #059669, #047857);
}

.view-all-btn i:last-child {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Featured Testimonial */
.featured-testimonial {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.featured-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(255,255,255,0.1)" cx="10" cy="10" r="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23testimonial)"/></svg>');
    opacity: 0.6;
}

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

.testimonial-content i {
    font-size: 2rem;
    color: #F59E0B;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F59E0B;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.rating {
    color: #F59E0B;
    font-size: 0.9rem;
}

/* Floating Elements */
.projects-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 80px;
    animation: projectsFloat 12s ease-in-out infinite;
}

.floating-element.solar-icon {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element.leaf-icon {
    top: 30%;
    right: 8%;
    animation-delay: 3s;
}

.floating-element.bolt-icon {
    bottom: 40%;
    left: 10%;
    animation-delay: 6s;
}

.floating-element.home-icon {
    bottom: 20%;
    right: 12%;
    animation-delay: 9s;
}

/* Animations */
@keyframes projectsFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-25px) rotate(90deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.15;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.25;
    }
}

/* Project Card Shine Effect */
@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: none;
}

.project-card:hover::after {
    animation: shine 0.8s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 25px;
    }

    .view-all-projects {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .successful-projects-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .project-card {
        border-radius: 20px;
    }

    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 20px;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .overall-impact {
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .impact-header h3 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .impact-stat {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 15px;
    }

    .impact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .impact-number {
        font-size: 1.8rem;
    }

    .view-all-projects {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .view-all-content h3 {
        font-size: 1.6rem;
    }

    .view-all-content p {
        font-size: 1rem;
    }

    .view-all-btn {
        padding: 15px 25px;
        font-size: 1rem;
        justify-content: center;
    }

    .featured-testimonial {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .floating-element {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        margin: 0 10px;
    }

    .project-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .project-capacity,
    .project-savings {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .overall-impact {
        margin: 0 10px 40px 10px;
    }

    .view-all-projects {
        margin: 0 10px;
    }

    .impact-number {
        font-size: 1.5rem;
    }

    .view-all-content h3 {
        font-size: 1.4rem;
    }
}
/* //////////////////////////////////// */

.solar-finance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

/* Finance Highlights */
.finance-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0 60px 0;
}

.highlight-card {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.highlight-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #F59E0B;
}

/* Partner Banks Grid */
.partner-banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.bank-card {
    background: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #F59E0B, #D97706, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.bank-card:hover::before {
    transform: scaleX(1);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F1F5F9;
}

.bank-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    padding: 8px;
}

.bank-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bank-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 5px;
}

.scheme-name {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

.bank-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #374151;
}

.feature-item i {
    color: #10B981;
    width: 16px;
}

.bank-apply-btn {
    width: 100%;
    background: linear-gradient(45deg, #10B981, #059669);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-apply-btn:hover {
    background: linear-gradient(45deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* We Handle Everything */
.we-handle-everything {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 25px;
    padding: 50px 40px;
    margin: 60px 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.we-handle-everything::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.handle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.handle-left {
    text-align: left;
}

.handle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.handle-left h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.handle-left p {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.handle-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
}

.benefit i {
    color: #10B981;
    font-size: 18px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3B82F6, #1E3A8A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 5px;
}

.step-content p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* EMI Calculator */
.emi-calculator-section {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calculator-header p {
    color: #6B7280;
    font-size: 1.1rem;
}

.emi-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #F59E0B 0%, #E5E7EB 0%);
    outline: none;
    appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.input-group span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A8A;
    text-align: center;
    padding: 8px;
    background: #F1F5F9;
    border-radius: 10px;
}

.emi-result {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 35px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.emi-result::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    transform: translate(40px, -40px);
}

.result-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.result-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #F59E0B;
}

/* Finance Final CTA */
.finance-final-cta {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.finance-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="financeGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23financeGrid)"/></svg>');
    opacity: 0.3;
}

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

.finance-final-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.finance-final-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.finance-quote-btn,
.finance-call-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finance-quote-btn {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.finance-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.finance-call-btn {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.finance-call-btn:hover {
    background: white;
    color: #1E3A8A;
}

/* Background Elements */
.finance-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-coin,
.floating-bank,
.floating-percent {
    position: absolute;
    color: rgba(245, 158, 11, 0.1);
    font-size: 120px;
    font-weight: 800;
    animation: floatFinance 15s ease-in-out infinite;
}

.floating-coin {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-bank {
    top: 50%;
    right: 8%;
    animation-delay: 5s;
}

.floating-percent {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

/* Animations */
@keyframes floatFinance {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    33% { 
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.15;
    }
    66% { 
        transform: translateY(20px) rotate(-10deg);
        opacity: 0.12;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .handle-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .handle-benefits {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .emi-calculator {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .finance-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solar-finance-section {
        padding: 60px 0;
    }

    .finance-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0 50px 0;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .partner-banks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 50px 0;
    }

    .bank-card {
        padding: 20px;
        border-radius: 20px;
    }

    .bank-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bank-logo {
        width: 100px;
        height: 60px;
        margin: 0 auto;
    }

    .we-handle-everything {
        padding: 40px 25px;
        margin: 50px 0;
    }

    .handle-left h3 {
        font-size: 1.8rem;
    }

    .process-steps {
        gap: 15px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }

    .emi-calculator-section {
        padding: 30px 25px;
        margin: 50px 0;
    }

    .calculator-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }

    .calc-inputs {
        gap: 25px;
    }

    .emi-result {
        padding: 25px 20px;
        gap: 20px;
    }

    .result-value {
        font-size: 1.5rem;
    }

    .finance-final-cta {
        padding: 40px 25px;
        margin-top: 50px;
    }

    .finance-final-cta h3 {
        font-size: 1.8rem;
    }

    .finance-final-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .finance-quote-btn,
    .finance-call-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .highlight-value {
        font-size: 1.5rem;
    }

    .bank-features {
        margin-bottom: 15px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .handle-left h3 {
        font-size: 1.6rem;
    }

    .handle-left p {
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .calculator-header h3 {
        font-size: 1.3rem;
    }

    .input-group span {
        font-size: 1.1rem;
    }

    .result-value {
        font-size: 1.3rem;
    }

    .floating-coin,
    .floating-bank,
    .floating-percent {
        font-size: 80px;
    }
}
/* ///////////////////////////// */
#contact {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Contact Background */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.85) 0%, 
        rgba(245, 158, 11, 0.75) 100%);
    z-index: 2;
}

.contact-image-backup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1), rgba(245, 158, 11, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="solar" patternUnits="userSpaceOnUse" width="100" height="100"><rect fill="%23f59e0b" opacity="0.1" width="100" height="100"/><circle fill="%231e3a8a" opacity="0.2" cx="50" cy="50" r="30"/></pattern></defs><rect fill="url(%23solar)" width="100%" height="100%"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 158, 11, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.section-badge i {
    margin-right: 8px;
    color: #1E3A8A;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title .highlight {
    color: #F59E0B;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 3;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #1E3A8A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    color: #6B7280;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.whatsapp-btn {
    width: 100%;
    background: linear-gradient(45deg, #25D366, #20BA5A);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Office Info Card */
.office-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.office-icon {
    background: linear-gradient(45deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.office-title {
    color: #1E3A8A;
    font-size: 1.4rem;
    font-weight: 700;
}

.company-name {
    color: #F59E0B;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.address-info {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.address-info i {
    color: #F59E0B;
    margin-right: 8px;
}

/* Google Map */
.map-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-header {
    text-align: center;
    margin-bottom: 20px;
}

.map-header h4 {
    color: #1E3A8A;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-embed {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Social Links */
.social-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-header {
    text-align: center;
    margin-bottom: 25px;
}

.social-header h4 {
    color: #1E3A8A;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.social-header p {
    color: #6B7280;
    font-size: 0.95rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #E5E7EB;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-item.facebook {
    background: linear-gradient(135deg, #1877F2, #0C5AA6);
    color: white;
    border-color: #1877F2;
}

.social-item.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    border-color: #E4405F;
}

.social-item.linkedin {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: white;
    border-color: #0077B5;
}

.social-item.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border-color: #FF0000;
}

.social-item.google {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    border-color: #4285F4;
}

.social-item.email {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border-color: #F59E0B;
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Footer Credit */
.footer-credit {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.credit-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.appveda-link {
    color: #F59E0B;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.appveda-link:hover {
    color: #D97706;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Contact Background Elements */
.contact-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element.solar-icon {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    color: #F59E0B;
    animation-delay: 0s;
}

.floating-element.contact-icon {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    color: #1E3A8A;
    animation-delay: 2s;
}

.floating-element.phone-icon {
    bottom: 30%;
    left: 20%;
    font-size: 2rem;
    color: #F59E0B;
    animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container,
    .office-info,
    .map-container,
    .social-section {
        padding: 25px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .contact-form-container,
    .office-info,
    .map-container,
    .social-section {
        padding: 20px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}