/* ✅ GENERAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ✅ NAVBAR STYLING */
.navbar {
    background: #131822;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    width: 140px;
}

/* ✅ Navbar Links */
.navbar-nav .nav-link {
    color: gray;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* ✅ Hover Effect with Bottom Line */
.navbar-nav .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: #ff9800;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
    color: #ff9800;
}

/* ✅ MEGA MENU (Updated Color to Match Navigation) */
.mega-menu {
    position: absolute;
    width: 300px;
    background: #131822 !important; /* Force background color */
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.dropdown:hover .mega-menu {
    display: block;
}

/* ✅ Fix: Ensure Text is Visible on Hover */
.mega-menu .dropdown-item {
    color: gray !important; /* Ensure text is white */
    font-size: 15px;
    padding: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background: transparent !important;
}

.mega-menu .dropdown-item:hover {
    background: rgba(255, 152, 0, 0.2) !important; /* Light orange hover effect */
    color: #ff9800 !important; /* Change text to orange on hover */
}



/* ✅ Right Side: Search, Social, Language & Mode */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ✅ Search Bar */
.search-container {
    display: flex;
    align-items: center;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
}

.search-container input {
    border: none;
    background: transparent;
    color: gray;
    padding: 1px;
    width: 100px;
}

.search-container button {
    border: none;
    background: #ff9800;
    color: gray;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ✅ Social Icons */
.social-icons a {
    color: gray;
    font-size: 16px;
    margin: 0 5px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #ff9800;
}

/* ✅ Mode & Language Switch */
.mode-switch button {
    border: none;
    background: transparent;
    color: gray;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}

.mode-switch button:hover {
    color: #ff9800;
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .navbar-icons {
        flex-direction: column;
        gap: 10px;
    }
    .search-container input {
        width: 120px;
    }
}



/* ✅ HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 93vh; /* Ensures full-screen height while adapting */
    overflow: hidden;
}

/* ✅ Full-Screen Video (NO DARK EFFECT) */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video always covers without cropping */
    z-index: -1; /* Ensures video stays behind text */
}


/* ✅ REMOVE DARK OVERLAY (No Need for This) */
/* .hero-overlay {
    display: none;
} */

/* ✅ HERO CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    width: 90%;
}

/* ✅ HERO TITLE */
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Optional: Light text shadow */
    animation: fadeInUp 1.5s ease-in-out;
}

/* ✅ HERO PARAGRAPH */
.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: none; /* REMOVE DARK SHADOW */
    animation: fadeInUp 2s ease-in-out;
}

/* ✅ BUTTON STYLES */
.btn-primary {
    background-color: #006;
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: 0.3s;
    animation: fadeInUp 2.5s ease-in-out;
}

.btn-primary:hover {
    background-color: #004080;
}

/* ✅ TEXT ANIMATION */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

/* ✅ SMART ENERGY SOLUTIONS */
.smart-energy-section {
    background: url('images/bg_blue.jpg') no-repeat center center/cover;
    padding: 3rem 0;
    color: #ffffff;
}

/* Animated Title */
.animated-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c0c0c0;
    animation: fadeInUp 1s ease-in-out;
}

/* Animated Text */
.animated-text {
    font-size: 1.1rem;
    margin-top: 20px;
    animation: fadeInUp 1.2s ease-in-out;
}

/* Button */
.btn-primary-glow {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #121212;
    background: linear-gradient(90deg, #9e9d99, #898884);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 15px rgba(255, 165, 0, 0.4);
}

.btn-primary-glow:hover {
    background: linear-gradient(90deg, #ff9000, #ffb400);
    box-shadow: 0px 6px 20px rgba(255, 165, 0, 0.6);
    transform: translateY(-3px);
}

/* Image Animation */
.smart-energy-section img {
    width: 100%;
    animation: fadeOut 1.5s ease-in-out;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .animated-title, .animated-text {
        text-align: center;
    }
}




/* OUR PRODUCTS Products Section */
#our-products {
    background: #ffffff;
    padding: 60px 0;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

//* Clean & Modern Product Tabs */
.custom-tabs .nav-link {
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 0; /* No rounded corners */
    padding: 12px 25px;
    margin: 5px;
    transition: all 0.3s ease-in-out;
    background: #e7e4e4; /* Light, flat color */
    color: #333;
    border: none;
}

.custom-tabs .nav-link.active {
    background: #ff9800;
    color: white;
    border-bottom: 3px solid #d87a00; /* Slightly darker border for effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-tabs .nav-link {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Product Card */
.product-card {
    position: relative;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Overlay Effect */
.product-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    text-align: center;
}

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

/* Overlay Text */
.product-card .overlay h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.product-card .overlay p {
    font-size: 1rem;
}

/* Hover Effects */
.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-tabs .nav-link {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .product-card .overlay h4 {
        font-size: 1.2rem;
    }

    .product-card .overlay p {
        font-size: 0.9rem;
    }
}


/* ✅ Full-Width Image Section */
.image-section {
    width: 100%;
    height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ✅ Image Wrapper (Ensures Proper Scaling) */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ✅ Image Styling */
.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

/* ✅ Overlay Effect */
.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

/* ✅ Overlay Text */
.image-overlay h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ✅ CTA Button */
.btn-cta {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #006, #008);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-cta:hover {
    background: linear-gradient(90deg, #008, #00a);
    transform: scale(1.05);
}

/* ✅ Hover Effect: Slight Zoom on Image */
.image-wrapper:hover .full-image {
    transform: scale(1.05);
}

/* ✅ Fade-In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
    .image-section {
        height: 400px;
    }
    
    .full-image {
        height: 400px;
    }
    
    .image-overlay h2 {
        font-size: 2rem;
    }

    .image-overlay p {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 10px 20px;
    }
}



/* 

/* Hero2 (Video Banner) */
.hero2 {
    position: relative;
    width: 100%;
    height: 92dvh;
    overflow: hidden;
}

.hero2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero2-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero2-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero2-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn-primary {
    background-color: #ff9800;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* ✅ SLIDER SECTION */
.slider-section {
    width: 100%;
    padding: 40px 0;
    background: #000; /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 90%;
    max-width: 100%;
    height: 650px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
    position: relative;
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 5px;
    max-width: 80%;
}

.slide-caption h2 {
    font-size: 22px;
    margin: 0;
}

.slide-caption p {
    font-size: 16px;
    margin-top: 5px;
}

/* Fix Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

/* Fix Pagination Dots */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #ffcc00;
    opacity: 1;
}

/* Solar Solutions Showcase */
/* ✅ Advanced Storage Solutions Section */
.storage-section {
    background: #000; /* Black background */
    color: #fff;
    padding: 60px 0;
    position: relative;
}

/* Section Title */
.storage-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc00; /* Yellow Title */
    text-transform: uppercase;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(255, 204, 0, 0.5);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0px 0px 25px rgba(255, 204, 0, 0.2);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    line-height: 1.7;
    transition: all 0.4s ease-in-out;
}

.features-list:hover {
    box-shadow: 0px 0px 30px rgba(255, 204, 0, 0.4);
    transform: scale(1.02);
}

.features-list li {
    margin-bottom: 14px;
    padding-left: 35px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-in-out forwards;
}

.features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffcc00;
    font-size: 1.4rem;
    font-weight: bold;
}

/* Image Styling */
.image-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Image */
.battery-img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Image Hover */
.image-container:hover .battery-img {
    transform: scale(1.07);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.5);
}

/* Call-to-Action Button */
.btn-primary-glow {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #121212;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 15px rgba(255, 204, 0, 0.4);
}

.btn-primary-glow:hover {
    background: linear-gradient(90deg, #ff9000, #ffb400);
    box-shadow: 0px 6px 20px rgba(255, 204, 0, 0.6);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .storage-section h2,
    .storage-section p {
        text-align: center;
    }

    .features-list {
        text-align: left;
        padding: 15px;
    }

    .features-list li {
        font-size: 1rem;
    }
}

/* ✅ OUR VISION SECTION */
.vision-section {
    background: linear-gradient(to right, #ffffff, #f7f7f7);
    padding: 80px 0;
    text-align: left;
}

/* ✅ Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #006;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

/* ✅ Vision Text */
.vision-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ✅ Vision Highlights */
.vision-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.vision-list li {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.vision-list li i {
    color: #ff9800;
    font-size: 1.4rem;
    margin-right: 10px;
}

/* ✅ Call-to-Action Button */
.btn-vision {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: #ff9800;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.btn-vision:hover {
    background: #d87a00;
    box-shadow: 0 7px 20px rgba(255, 152, 0, 0.5);
}

/* ✅ Vision Image */
.vision-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.vision-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

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

/* ✅ Responsive Design */
@media (max-width: 992px) {
    .vision-section {
        text-align: center;
    }

    .vision-list {
        text-align: left;
        margin: 0 auto;
    }
}



/* Events & Projects */
#events {
    background-color: ; /* Dark Section */
    padding: 60px 0;
}

#events img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

#events img:hover {
    transform: scale(1.05);
}

#events p {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Testimonials Section */
.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
}

.testimonial-card h5 {
    margin-top: 10px;
    font-weight: bold;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* Get a Quote */
#quote {
    text-align: center;
   /* background: #ff9800; */ background: url('images/bg-quote.jpg') no-repeat center center/cover;
    color: #0F0;
    padding: 50px 20px;
}

/* Testimonials Section */
.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
}

.testimonial-card h5 {
    margin-top: 10px;
    font-weight: bold;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* ✅ GOOGLE MAP & CONTACT SECTION */
/* ✅ Contact Map Section */
.contact-map-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

/* ✅ Full-Width Map */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ✅ Improved Floating Contact Form */
.floating-contact-form {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 400px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #fff;
}

/* ✅ Form Title & Description */
.floating-contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #006;
}

.floating-contact-form p {
    font-size: 1rem;
    color: rgba(72, 88, 139, 0.9);
    margin-bottom: 15px;
}

/* ✅ Improved Input Fields */
.floating-contact-form input,
.floating-contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    color: #666; /* Ensure text color is visible */
    font-size: 1rem;
}

/* ✅ Placeholder Text */
.floating-contact-form input::placeholder,
.floating-contact-form textarea::placeholder {
    color: rgba(171, 168, 168, 0.7);
}

/* ✅ On Focus (Better Visibility) */
.floating-contact-form input:focus,
.floating-contact-form textarea:focus {
    background: rgba(156, 161, 161, 0.5);
    color: #000; /* Dark text when focused */
}

/* ✅ Send Button */
.floating-contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff9800, #d87a00);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.floating-contact-form button:hover {
    background: linear-gradient(45deg, #d87a00, #ff9800);
    transform: scale(1.05);
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-form {
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
    }
}





/* ðŸ”¥ Full-Width YOUTUBE Section - Styled Like "Who We Are" */
.video-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0f1c, #1a2333);
    color: #fff;
    overflow: hidden;
}

/* Left Side - Video Styling */
.video-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border-radius: 15px;
}

/* Right Side - Content */
.video-content {
    padding: 40px;
    text-align: left;
}

/* Glitch Text Effect (Same as "Who We Are") */
.glitch-text {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #FFF;
    text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.8);
    animation: glitchAnimation 1s infinite alternate;
}

/* Call-to-Action Button */
.btn-neon {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: none;
    border: 2px solid #ce000f;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Existing remaining styles unchanged */
.promo-banner {
    background: rgba(255,0,0,0.15);
    border: 1px solid rgba(255,0,0,0.2);
    backdrop-filter: blur(5px);
}
.subscribe-btn {
    background: #ff0000;
    color: white !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}
.btn-neon:hover {
    background: #ce000f;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .video-content {
        text-align: center;
    }
}

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

body {
    font-family: Arial, sans-serif;
}

<style>
/* PRODUCTS Section Styles BY DS */
.products-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.products-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2980b9;
}

.products-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 128, 185, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

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

.product-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-btn {
    padding: 10px 25px;
    background: white;
    color: #2980b9;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #2980b9;
    color: white;
}

.product-info {
    padding: 20px;
    position: relative;
}

.product-badge {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    position: absolute;
    top: -15px;
    right: 20px;
}

.cta-link {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin-bottom: 30px;
    }
}
</style>

