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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
    height: 70px;
    border-bottom: 3px solid #ff0000;
    box-shadow: 
        0 2px 20px rgba(255, 0, 0, 0.4),
        0 0 40px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 0, 0.15) 2px,
            rgba(255, 0, 0, 0.15) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 0, 0, 0.05) 1px,
            rgba(255, 0, 0, 0.05) 2px
        );
    pointer-events: none;
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid transparent;
}

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

.nav a:hover::before {
    width: 100%;
}

.nav a:hover {
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Hero Section with Storm Animation */
.hero {
    height: 70vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 4px solid #ff0000;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

/* Enhanced Lightning Background System */
.lightning-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1431352832634-845fad190fbd?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=ec80c41e488dc2b99ed543df2f3f0919');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.3;
}

.lightning-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png');    
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(4) contrast(1.5) saturate(1.2);
    -webkit-filter: brightness(4) contrast(1.5) saturate(1.2);
    z-index: -1;
    opacity: 0;
    animation: lightningFlash 8s ease-out infinite;
    animation-delay: 3s;
}

.lightning-flash-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(3) contrast(1.3) saturate(1.1);
    -webkit-filter: brightness(3) contrast(1.3) saturate(1.1);
    z-index: -1;
    opacity: 0;
    animation: lightningFlash2 12s ease-out infinite;
    animation-delay: 7s;
}

.lightning-flash-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(2.5) contrast(1.4) saturate(1.3);
    -webkit-filter: brightness(2.5) contrast(1.4) saturate(1.3);
    z-index: -1;
    opacity: 0;
    animation: lightningFlash3 15s ease-out infinite;
    animation-delay: 11s;
}

@keyframes lightningFlash {
    0%, 85% { opacity: 0; }
    87% { opacity: 0.8; }
    88% { opacity: 0.3; }
    90% { opacity: 0.9; }
    92% { opacity: 0.2; }
    94% { opacity: 0.7; }
    96% { opacity: 0.1; }
    98% { opacity: 0.4; }
    100% { opacity: 0; }
}

@keyframes lightningFlash2 {
    0%, 80% { opacity: 0; }
    82% { opacity: 0.6; }
    84% { opacity: 0.2; }
    86% { opacity: 0.8; }
    88% { opacity: 0.1; }
    90% { opacity: 0.5; }
    92% { opacity: 0.3; }
    100% { opacity: 0; }
}

@keyframes lightningFlash3 {
    0%, 75% { opacity: 0; }
    77% { opacity: 0.7; }
    79% { opacity: 0.2; }
    81% { opacity: 0.9; }
    83% { opacity: 0.1; }
    85% { opacity: 0.6; }
    87% { opacity: 0.3; }
    89% { opacity: 0.8; }
    91% { opacity: 0.2; }
    100% { opacity: 0; }
}

.storm-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Enhanced Lightning Animation */
.lightning {
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #fff, #fff, #ffffff, transparent);
    opacity: 0;
    animation: lightning 4s infinite;
    /* box-shadow: 
        0 0 20px #fff,
        0 0 40px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3); */
    border-radius: 2px;
}

.lightning:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.lightning:nth-child(2) {
    left: 50%;
    animation-delay: 1.5s;
}

.lightning:nth-child(3) {
    left: 80%;
    animation-delay: 3s;
}

@keyframes lightning {
    0%, 85%, 100% {
        opacity: 0;
        transform: scaleY(0) rotate(0deg);
    }
    3%, 12% {
        opacity: 1;
        transform: scaleY(1) rotate(0deg);
    }
    15% {
        opacity: 0;
        transform: scaleY(0) rotate(0deg);
    }
    18%, 28% {
        opacity: 0.8;
        transform: scaleY(1) rotate(1deg);
    }
    30% {
        opacity: 0;
        transform: scaleY(0) rotate(0deg);
    }
    33%, 43% {
        opacity: 0.6;
        transform: scaleY(1) rotate(-1deg);
    }
    45% {
        opacity: 0;
        transform: scaleY(0) rotate(0deg);
    }
}

/* Rain Animation */
.rain {
    position: absolute;
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #4a90e2);
    animation: rain 1s linear infinite;
}

.rain:nth-child(4) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 0.8s;
}

.rain:nth-child(5) {
    left: 30%;
    animation-delay: 0.2s;
    animation-duration: 1.2s;
}

.rain:nth-child(6) {
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 0.9s;
}

@keyframes rain {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    animation: logoBounce 3s ease-in-out infinite;
    transition: all 0.1s ease-out;
}

.hero-logo.thunder-shake {
    animation: thunderShake 0.3s ease-out;
}

@keyframes logoBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
    40% {
        transform: translateY(-15px) scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    }
    60% {
        transform: translateY(-8px) scale(1.02);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
    }
}

@keyframes thunderShake {
    0% {
        transform: translateX(0) scale(1);
    }
    25% {
        transform: translateX(-2px) scale(1.02);
    }
    50% {
        transform: translateX(2px) scale(0.98);
    }
    75% {
        transform: translateX(-1px) scale(1.01);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}



/* Equipment Section */
.equipment-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 80px 0;
    position: relative;
    color: #ffffff;
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #800000, #ff0000);
}

.section-title {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000,
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 20px #ff0000;
}

/* Slider Styles */
.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border: 3px solid #ff0000;
    color: #ffffff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 0, 0, 0.2);
    text-shadow: 0 0 10px #ff0000;
}

.slider-arrow:hover {
    background: linear-gradient(45deg, #ff0000, #800000);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 50px rgba(255, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    border-color: #ffffff;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slider-content {
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Image Column */
.image-column {
    position: relative;
}

.equipment-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.3);
    border: 4px solid #ff0000;
    background: linear-gradient(45deg, #000000, #1a1a1a);
}

.equipment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #ff0000;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff0000;
}

/* Text Column */
.text-column {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.text-column h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    border-bottom: 2px solid #ff0000;
    padding-bottom: 10px;
}

.text-column p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #cccccc;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.equipment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.detail-item {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.detail-label {
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.detail-value {
    color: #ff0000;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Slider Dots */
.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 8px;
    background: linear-gradient(45deg, #333333, #666666);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.dot.active,
.dot:hover {
    background: linear-gradient(45deg, #ff0000, #800000);
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.8),
        0 0 30px rgba(255, 0, 0, 0.4);
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 100px 0;
    position: relative;
    border-top: 6px solid #ff0000;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* Contact Background Image */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.2) brightness(0.8) saturate(1.5);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 0, 0.05) 2px,
            rgba(255, 0, 0, 0.05) 4px
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    pointer-events: none;
    z-index: 5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

/* Representative Card */
.representative-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.representative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
    border-color: #ffffff;
}

.rep-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.rep-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.representative-card:hover .rep-photo img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.2));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

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

.rep-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff0000;
}

.rep-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rep-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    text-align: justify;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff0000;
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #800000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.contact-details h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 0.95rem;
    color: #cccccc;
    margin: 2px 0;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details p {
    color: #ffffff;
}

/* Social Media */
.social-media {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 0, 0, 0.3);
}

.social-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff0000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    border-color: #1877f2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
    border-color: #e4405f;
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.2);
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.3);
}

.social-link.youtube {
    border-color: #ff0000;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.social-link.twitter {
    border-color: #1da1f2;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 40px 0;
    border-top: 4px solid #ff0000;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.9);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(255, 0, 0, 0.03) 3px,
        rgba(255, 0, 0, 0.03) 6px
    );
    pointer-events: none;
}

.footer-content p {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    font-weight: 700;
    position: relative;
    z-index: 10;
}

/* Extreme Metal Animations */
@keyframes skullFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg) scale(1.5);
        opacity: 0;
    }
}

@keyframes bloodDrip {
    0% {
        transform: translateY(-100px) scaleY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(0) scaleY(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(0) scaleY(1);
    }
    100% {
        transform: translateY(100vh) scaleY(0);
        opacity: 0;
    }
}

@keyframes extremePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Scroll Animation Effects */
.scroll-trigger {
    animation: sectionReveal 1s ease-out;
}

.section-visible {
    animation: sectionGlow 2s ease-out;
}

@keyframes sectionReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(25px) scale(0.98);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes sectionGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes scrollLightning {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes heroLightning {
    0% {
        filter: brightness(1) contrast(1);
    }
    25% {
        filter: brightness(1.5) contrast(1.2);
    }
    50% {
        filter: brightness(1.2) contrast(1.1);
    }
    75% {
        filter: brightness(1.3) contrast(1.15);
    }
    100% {
        filter: brightness(1) contrast(1);
    }
}

@keyframes equipmentGlow {
    0% {
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    }
    25% {
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #2a2a2a 50%, #0a0a0a 75%, #000000 100%);
    }
    50% {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #3a3a3a 50%, #1a1a1a 75%, #000000 100%);
    }
    75% {
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #2a2a2a 50%, #0a0a0a 75%, #000000 100%);
    }
    100% {
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    }
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
        box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    }
    50% {
        transform: scale(1.02);
        box-shadow: inset 0 0 150px rgba(255, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    }
}

/* Enhanced section transitions */
section {
    transition: all 0.5s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation link active state */
.nav a.active {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

/* Staggered item animations */
@keyframes itemReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(5px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(15px) scale(0.98);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes contactItemReveal {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
        filter: blur(5px);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-15px) scale(0.98);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

/* Enhanced scroll effects */
.scroll-lightning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

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

/* Section entrance effects */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

section.section-visible::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slide-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slider-container {
        padding: 0 40px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .equipment-image img {
        height: 300px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav a {
        font-size: 12px;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .representative-card {
        padding: 20px;
    }
    
    .rep-photo {
        width: 120px;
        height: 120px;
    }
    
    .rep-name {
        font-size: 1.3rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .slider-container {
        padding: 0 30px;
    }
    
    .equipment-image img {
        height: 250px;
    }
} 

.lightning{
    position: fixed;
    top: 0;
    left: 0;    
    width: 200px;
    height:  400px;
    background: url('./images/storm.png');
    background-position: center center;
    background-origin: content-box;
    background-size: cover;
    background-attachment: fixed;
    -webkit-filter: brightness(3);
    filter: brightness(3);
    -o-filter: brightness(3);
    -moz-filter: brightness(3);
    z-index:-1;
  }
  
  /*Now just a opacity animation*/
  .flashit{
  -webkit-animation: flash ease-out 7s infinite;
  -moz-animation: flash ease-out 7s infinite;
  animation: flash ease-out 7s infinite;
  animation-delay: 2s;
  }
  
  @-webkit-keyframes flash {
      from { opacity: 0; } 
    92% { opacity: 0; }
      93% { opacity: 0.6; }
    94% { opacity: 0.2; }
    96% { opacity: 0.9; } 
      to { opacity: 0; }
  }
  
  @keyframes flash {
      from { opacity: 0; } 
      92% { opacity: 0; }
      93% { opacity: 0.6; }
      94% { opacity: 0.2; }
      96% { opacity: 1; } 
      to { opacity: 0; }
  }
  /*End! is that simple! */
  
