* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-green: #059669;
    --dark-green: #047857;
    --light-green: #10b981;
    --accent-gold: #d97706;
    --accent-amber: #b45309;
    --accent-orange: #ea580c;
    --bg-deep: #ffffff;
    --bg-surface: #f8fafc;
    --bg-elevated: #f1f5f9;
    --bg-card: #ffffff;
    --glass-bg: rgba(15, 23, 42, 0.04);
    --glass-border: rgba(15, 23, 42, 0.1);
    --glass-border-hover: rgba(15, 23, 42, 0.2);
    --glass-highlight: rgba(15, 23, 42, 0.06);
    /* --text-primary: #0f172a; */
    --text-primary: #162f66;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-dim: #94a3b8;
    --glow-green: rgba(5, 150, 105, 0.15);
    --glow-gold: rgba(217, 119, 6, 0.15);
    --glow-surface: rgba(15, 23, 42, 0.05);
    --error: #dc2626;
    --error-light: #fef2f2;
    --error-border: #fca5a5;
    --stat-blue: #1e3a5f;
    --stat-green: #059669;
    --stat-orange: #f59e0b;
    --stat-purple: #7c3aed;
}

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    z-index: -10;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        text-decoration: none !important;
    }

ul {
    padding: 0;
}

.section-spacing {
    padding: 40px 55px;
    position: relative;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

    .video-background iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        aspect-ratio: 16 / 9;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        pointer-events: none;
    }

.video-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fffffff5 41%, transparent 64%);
    z-index: 0;
}

.ambient-blobs {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -7;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: 20s ease-in-out 0s infinite normal none running blobFloat;
}

.blob-green {
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    top: 15%;
    left: 10%;
    opacity: 0.06;
    animation-delay: 0s;
}

.blob-white {
    width: 400px;
    height: 400px;
    background: rgba(15, 23, 42, 0.54);
    top: 60%;
    right: 15%;
    opacity: 0.03;
    animation-delay: -7s;
    filter: blur(150px);
}

.blob-orange {
    width: 350px;
    height: 350px;
    background: var(--accent-orange);
    bottom: 20%;
    left: 40%;
    opacity: 0.04;
    animation-delay: -14s;
}

@keyframes blobFloat {

    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

.floating-orbs {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -8;
    overflow: hidden;
    pointer-events: none;
}


.grid-pattern {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -9;
    pointer-events: none;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
    position: relative;
    overflow: hidden;
}

    .btn-view-more::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(217, 119, 6, 0.08));
        opacity: 0;
        transition: opacity 0.4s;
        z-index: 0;
    }

    .btn-view-more:hover {
        border-color: var(--primary-green);
        color: var(--primary-green);
        transform: translateY(-3px);
        box-shadow: rgba(5, 150, 105, 0.12) 0px 12px 32px;
        text-decoration: none;
    }

        .btn-view-more:hover::before {
            opacity: 1;
        }

    .btn-view-more span,
    .btn-view-more svg {
        position: relative;
        z-index: 1;
    }

    .btn-view-more svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s;
    }

    .btn-view-more:hover svg {
        transform: translateX(4px);
    }

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .glass-card::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    }

    .glass-card:hover {
        border-color: var(--glass-border-hover);
        transform: translateY(-6px);
        box-shadow: rgba(15, 23, 42, 0.08) 0px 24px 48px, rgba(5, 150, 105, 0.08) 0px 0px 0px 1px, rgba(255, 255, 255, 0.5) 0px 1px 0px inset;
    }

.accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(85deg, rgba(255, 153, 51) 34%, rgba(255, 255, 255) 42%, rgba(19, 136, 8) 57%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagWave 5s ease-in-out infinite;
}

@keyframes flagWave {
    0% {
        background-position: 0% 40%;
    }

    50% {
        background-position: 60% 40%;
    }

    100% {
        background-position: 0% 40%;
    }
}

@media (max-width: 768px) {


    .glass-card {
        padding: 24px;
        border-radius: 20px;
    }
}

/* ============================================================
   FIXED SOCIAL ICONS - Powerelec Bharat
   Updated with new color scheme
   ============================================================ */

/* ===== SOCIAL FIXED SIDEBAR ===== */
.social-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

    /* Vertical line above icons */
    .social-fixed::before {
        content: '';
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--primary-green));
        margin-bottom: 8px;
    }

    /* Vertical line below icons */
    .social-fixed::after {
        content: '';
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, var(--primary-green), transparent);
        margin-top: 8px;
    }

/* ===== SOCIAL ICON LINK ===== */
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

    /* Top highlight line */
    .social-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
    }

    /* Bootstrap Icon styling */
    .social-icon i {
        font-size: 20px;
        color: var(--text-secondary);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    /* ============================================================
   HOVER EFFECTS - PER PLATFORM
   ============================================================ */

    .social-icon:hover {
        transform: translateY(-4px) scale(1.1);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    /* Facebook */
    .social-icon.facebook:hover {
        border-color: #1877f2;
        background: rgba(24, 119, 242, 0.1);
        box-shadow: 0 8px 24px rgba(24, 119, 242, 0.2);
    }

        .social-icon.facebook:hover i {
            color: #1877f2;
        }

    /* Twitter/X */
    .social-icon.twitter:hover {
        border-color: #1da1f2;
        background: rgba(29, 161, 242, 0.1);
        box-shadow: 0 8px 24px rgba(29, 161, 242, 0.2);
    }

        .social-icon.twitter:hover i {
            color: #1da1f2;
        }

    /* Instagram */
    .social-icon.instagram:hover {
        border-color: #e4405f;
        background: rgba(228, 64, 95, 0.1);
        box-shadow: 0 8px 24px rgba(228, 64, 95, 0.2);
    }

        .social-icon.instagram:hover i {
            color: #e4405f;
        }

    /* LinkedIn */
    .social-icon.linkedin:hover {
        border-color: #0a66c2;
        background: rgba(10, 102, 194, 0.1);
        box-shadow: 0 8px 24px rgba(10, 102, 194, 0.2);
    }

        .social-icon.linkedin:hover i {
            color: #0a66c2;
        }

    /* YouTube */
    .social-icon.youtube:hover {
        border-color: #ff0000;
        background: rgba(255, 0, 0, 0.1);
        box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    }

        .social-icon.youtube:hover i {
            color: #ff0000;
        }

    /* WhatsApp */
    .social-icon.whatsapp:hover {
        border-color: #25d366;
        background: rgba(37, 211, 102, 0.1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
    }

        .social-icon.whatsapp:hover i {
            color: #25d366;
        }

    /* WeChat */
    .social-icon.wechat:hover {
        border-color: #7bb32e;
        background: rgba(123, 179, 46, 0.1);
        box-shadow: 0 8px 24px rgba(123, 179, 46, 0.2);
    }

        .social-icon.wechat:hover i {
            color: #7bb32e;
        }

    /* ============================================================
   TOOLTIP LABEL
   ============================================================ */
    .social-icon::after {
        content: attr(data-label);
        position: absolute;
        right: calc(100% + 12px);
        top: 50%;
        transform: translateY(-50%) translateX(10px);
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        padding: 6px 14px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-secondary);
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        font-family: 'Inter', system-ui, sans-serif;
    }

    .social-icon:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
/* We Chat Start */



.wechat-unique-modal .modal-content {
    border-radius: 20px !important;
    padding: 30px !important;
    background: #ffffff !important;
}

.wechat-unique-modal .wechat-header i {
    font-size: 45px !important;
}

.wechat-unique-modal .wechat-header h5 {
    font-weight: 600 !important;
    margin-top: 10px !important;
    color: #333 !important;
}

.wechat-unique-modal .qr-box {
    background: #f5f5f5 !important;
    padding: 20px !important;
    border-radius: 12px !important;
}

    .wechat-unique-modal .qr-box img {
        width: 200px !important;
    }

.wechat-unique-modal p {
    margin-bottom: 5px !important;
    color: #333 !important;
}

.wechat-unique-modal .scan-text {
    font-size: 13px !important;
    color: #888 !important;
}

.wechat-unique-modal .close-btn {
    border-radius: 30px !important;
}

/* We Chat Start */
/* Banner */
.page-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(217, 119, 6, 0.06) 50%, rgba(5, 150, 105, 0.04) 100%);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(3px);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.page-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: cuFadeInUp 0.8s 0.15s ease-out both;
}

    .page-banner-tag .pulse-dot {
        width: 6px;
        height: 6px;
        background: var(--accent-gold);
        border-radius: 50%;
        animation: cuPulse 2s ease-in-out infinite;
    }

.page-banner-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    animation: cuFadeInUp 0.8s 0.25s ease-out both;
}

.page-banner-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: cuFadeInUp 0.8s 0.35s ease-out both;
}

.page-banner-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin: 24px auto 0;
    animation: cuExpandLine 0.8s 0.5s ease-out both;
}

/* Animations */
@keyframes cuFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cuPulse {

    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@keyframes cuExpandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .page-banner {
        min-height: fit-content;
    }

    .page-banner-content {
        padding-block: 30px;
    }

    .section-spacing {
        padding: 40px;
    }

    .social-fixed {
        gap: 8px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

        .social-icon i {
            font-size: 16px;
        }

    .social-fixed::before,
    .social-fixed::after {
        height: 40px;
    }

    .social-icon::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .social-fixed {
        display: none;
    }

    .section-spacing {
        padding: 20px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .social-icon {
        transition: none;
    }

        .social-icon::after {
            transition: none;
        }
}
