@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

html
{
    scroll-behavior: smooth;
}

section
{
    scroll-margin-top: 1rem; /* Adjusted this value to give less space */
}

header 
{
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 45, 0, 0.2);
}

body
{
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    overflow-x: hidden;
    padding-bottom: 70px;
}

/* --- Navigation --- */
.nav-link
{
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}
.nav-link:hover, .nav-link.active 
{
    color: #FF073A;
}
.nav-link::after
{
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #FF073A;
            transition: width 0.3s ease;
            box-shadow: 0 0 5px #FF073A;
}
.nav-link:hover::after, .nav-link.active::after
{
    width: 100%;
}

/* --- Neon Effects --- */
.neon-button
{
    background: transparent;
    border: 1px solid rgba(255, 45, 0, 0.5);
    color: #FF073A;
    box-shadow: 0 0 5px #FF073A, 0 0 10px #FF073A inset;
    transition: all 0.3s ease-in-out;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
}
.neon-button:hover
{
    transform: scale(1.05);
    background: rgba(255, 45, 0, 0.1);
    color: #fff;
    box-shadow: 0 0 10px #FF073A, 0 0 20px #FF073A, 0 0 40px #FF2D00;
}
.neon-text-brand 
{
    color: #FF073A;
    text-shadow: 0 0 5px #FF073A, 0 0 10px #FF073A, 0 0 20px #FF2D00;
}
.neon-streams
{
  color: #FFD700 !important;
  animation: pulse 3s infinite;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
  transition: all 0.3s ease-in-out;
}
.neon-streams:hover
{
  color: #FFDF00 !important;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FFCC00, 0 0 30px #FFB700, 0 0 40px #FFA500;
  transform: scale(1.07);
}

/* -- Animations -- */
@keyframes fade-in-up 
{
    from    { opacity: 0; transform: translateY(20px); }
    to      { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up 
{
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}
/* -- Neon Animations -- */
@keyframes pulse
{
   0%  { opacity: 0.8; }
   50% { opacity: 1; }
  100% { opacity: 0.8; }
}

/* -- Slider (Swiper) Custom Styles -- */
.swiper-container
{
    width: 100%;
    max-width: 900px; /* Max width for the slider */
    margin: auto;
    position: relative;
    z-index: 10;
}
.swiper-slide 
{
    background: rgba(255, 45, 0, 0.05);
    border: 1px solid rgba(255, 45, 0, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.swiper-slide img, .swiper-slide video 
{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.slide-description
{
    padding: 1.5rem;
    background: rgba(13, 13, 13, 0.8);
}
.slide-description h3
{
    color: #FF073A;
    text-shadow: 0 0 5px #FF073A;
}
/* --- Slider (Swiper) Navigation Buttons --- */
.swiper-button-next, .swiper-button-prev
{
    color: #FF073A;
    width: 50px;
    height: 50px;
    background: rgba(13, 13, 13, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    top: 280px;
    transform: translateY(-50%);
}
.swiper-button-next:hover, .swiper-button-prev:hover
{
    background: rgba(255, 45, 0, 0.2);
    box-shadow: 0 0 10px #FF073A;
}
.swiper-button-next::after, .swiper-button-prev::after
{
    font-size: 24px;
    font-weight: bold;
}

/* -- Video Mute Button --- */
.swiper-mute-button
{
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    cursor: pointer;
    color: #fff;
    background: rgba(13, 13, 13, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}
.swiper-mute-button:hover
{
    background: rgba(255, 45, 0, 0.2);
}

/* Form styling */
.form-input, .form-textarea
{
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 45, 0, 0.3);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 45, 0, 0.1);
}
.form-textarea 
{
    min-height: 155px;
    resize: none;
}
.form-input:focus, .form-textarea:focus 
{
    outline: none;
    border-color: #FF073A;
    box-shadow: 0 0 8px #FF073A;
}

/* New style for the confirmation message */
.message 
{
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    transition: all 0.5s ease;
    opacity: 0; /* Initially hidden */
}
.message.show 
{
    opacity: 1; /* Fade in when 'show' class is added */
}
.message.error
{
    color: #e3342f; /* Red for error */
}

/* --- New Style for the Footer --- */
.fixed-footer
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 45, 0, 0.2);
    z-index: 40;
}

/* Service Box Hover Effect */
.service-box
{
    transition: all 0.3s ease-in-out;
}
.service-box:hover
{
    transform: scale(1.03);
    box-shadow: 0 0 10px #FF073A, 0 0 20px #FF073A, 0 0 40px rgba(255, 45, 0, 0.5);
    border-color: #FF073A;
}

/* --- Particles.js Background Container --- */
#particles-js 
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}