/* General Hero Splash Section */

/*==============================
    Hero Section Styles feature file Html headerNav.css
    features-report.html
/*==============================*/

.hero-section {
  position: relative;
  min-height: 100vh;

  /* fallback color if image fails to load */
  background-color: #000;
  background-image: url('../images/logoBig1.png');
  background-size: cover;
  background-position: center 60%; /* slight vertical shift */
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45)
  );
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.gradient-blue-green {
  background: linear-gradient(90deg, #00c6ff, #00ff9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



/* Animated Text */
/* General Hero Splash Section */


/* Text Styling */
#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

#hero .highlight {
    color: #0085cc;
}

#hero .sub-title {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 10px;
}

/* Animated Text Styling */
#animated-text {
    color: #0085cc; /* Blue text */
    font-size: 1.5rem;
    opacity: 0; /* Start hidden */
    transition: opacity 1s ease-in-out; /* Smooth fade transition */
}

/* Scroll Button */
.scroll-indicator {
    position: absolute;
    bottom: -50px; /* Adjust position slightly above the bottom */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    z-index: 2;
    cursor: pointer;
    animation: bounce 1.5s infinite; /* Adds bounce effect */
}

.scroll-indicator a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition on hover */
}

.scroll-indicator a:hover {
    color: #1e90ff; /* Changes color to blue on hover */
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}


/* Fade animation */
@keyframes fade {
    0%, 75% { opacity: 1; }    /* Visible for 3 seconds */
    80%, 100% { opacity: 0; }  /* Fade-out over 1 second */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }

    #hero .sub-title {
        font-size: 1rem;
    }

    #animated-text {
        font-size: 1.2rem;
    }
}


/*==============================
    Parallax Separator Styles for the Features Report Section
==============================*/

/* Parallax Separator */
.parallax-separator {
    background-image: url('../images/parallaximg.png');
    height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    /* Center the title horizontally */
    justify-content: center;
    align-items: center;
    /* Center the title vertically */
}

/* Optional: Overlay to darken or lighten the parallax section */
.parallax-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Add a dark overlay (adjust opacity as needed) */
    z-index: 2;
}

/* Parallax Title */
.parallax-title {
    position: relative;
    z-index: 3;
    /* Ensure it appears above the overlay */
    font-size: 2rem;
    /* Adjust size as needed */
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    /* Remove underline from the link */
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* Optional: Add a border for emphasis */
    border-radius: 5px;
    /* Rounded corners */
    background-color: rgba(0, 0, 0, 0.5);
    /* Optional: Semi-transparent background */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

/* Hover Effect for Parallax Title */
.parallax-title:hover {
    background-color: rgba(255, 255, 255, 0.8);
    /* Invert background on hover */
    color: #000;
    /* Change text color to black */
    border-color: #000;
    /* Match border with text color */
    transform: scale(1.1);
    /* Slight enlargement */
}

/* End of Parallax Separator */



/*==============================
    Parallax Separator Styles for the Features Report Section 2 footer page
==============================*/

/* Parallax Separator */
.parallax-separator-mix {
    background-image: url('../images/parallaximg.png');
    height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    /* Center the title horizontally */
    justify-content: center;
    align-items: center;
    /* Center the title vertically */
}

/* Optional: Overlay to darken or lighten the parallax section */
.parallax-separator-mix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Add a dark overlay (adjust opacity as needed) */
    z-index: 2;
}

/* Parallax Title */
.parallax-title-mix {
    position: relative;
    z-index: 3;
    /* Ensure it appears above the overlay */
    font-size: 2rem;
    /* Adjust size as needed */
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    /* Remove underline from the link */
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* Optional: Add a border for emphasis */
    border-radius: 5px;
    /* Rounded corners */
    background-color: rgba(0, 0, 0, 0.5);
    /* Optional: Semi-transparent background */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

/* Hover Effect for Parallax Title */
.parallax-title-mix:hover {
    background-color: rgba(255, 255, 255, 0.8);
    /* Invert background on hover */
    color: #000;
    /* Change text color to black */
    border-color: #000;
    /* Match border with text color */
    transform: scale(1.1);
    /* Slight enlargement */
}

/* End of Parallax Separator */
