body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
  }
  

  .hero-section-splunk {
    background-color: #f8f9fa;
    padding: 112px 0 26px;
    position: relative;
  }
  
  .hero-section-splunk::before {
    content: none;
  }

  .ourstory-hero-video-shell {
    width: calc(100vw - 96px);
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
  }

  .ourstory-hero-video-shell #heroVideo {
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    background: #000;
  }
  
  .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
  }
  
  .hero-subtitle {
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .hero-title span {
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%); /* Applied gradient */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s ease; /* Smooth transition */
}

.hero-button i {
  margin-left: 8px;
  font-size: 18px;
}

.hero-button:hover {
  background: linear-gradient(135deg, #f26a4b, #b01507); /* Reverse gradient on hover */
}
  
  @media (max-width: 992px) {
    .hero-section-splunk {
      padding: 88px 0 18px;
    }

    .ourstory-hero-video-shell {
      width: calc(100vw - 24px);
      padding: 10px;
      border-radius: 10px;
    }
  
    .hero-title {
      font-size: 28px;
    }
  
    .hero-button {
      font-size: 14px;
      padding: 10px 20px;
    }
  }
  


/* Beginner About Section */
  /* Beginner Section */
.beginner-section {
  background-color: #edecec; /* Light gray background */
  padding: 60px 20px; /* Section padding */
}

.beginner-heading {
  font-size: 2.4rem; /* Larger font for the heading */
  font-weight: 700; /* Bold heading */
  text-transform: uppercase; /* Capitalize heading */
  color: #333; /* Dark text color */
  letter-spacing: 1px; /* Add spacing between letters */
}

.beginner-content {
  max-width: 800px; /* Limit text width for readability */
  margin: 0 auto; /* Center the content */
  color: #555; /* Neutral text color */
  font-size: 20px; /* Text size */
  font-weight: 400; /* Normal font weight */
  line-height: 1.8; /* Improve readability with line spacing */
}

.beginner-content p {
  margin-bottom: 20px; /* Space between paragraphs */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .beginner-heading {
    font-size: 20px; /* Adjust heading size for smaller screens */
  }

  .beginner-content {
    font-size: 14px; /* Adjust text size for smaller screens */
    line-height: 1.6;
  }
}












/* Pivot-to-Cybersecurity Section CSS */
.pivot-cybersecurity-section {
  background-color: #f9f9f9; /* Light background for the section */
  padding: 80px 20px; /* Section padding */
}

.pivot-cybersecurity-title {
  font-size: 32px; /* Main title font size */
  font-weight: 700; /* Bold heading */
  color: #333; /* Dark heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.pivot-cybersecurity-text {
  font-size: 18px; /* Font size for body text */
  line-height: 1.8; /* Line height for readability */
  color: #555; /* Neutral text color */
  margin-bottom: 20px; /* Space below each paragraph */
}

.pivot-cybersecurity-video-wrapper {
  text-align: center; /* Center the video horizontally */
}

.pivot-cybersecurity-video {
  max-width: 100%; /* Ensure the video scales properly */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for the video */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .pivot-cybersecurity-title {
    font-size: 28px; /* Adjust title size for smaller screens */
  }

  .pivot-cybersecurity-text {
    font-size: 16px; /* Adjust text size for smaller screens */
  }

  .pivot-cybersecurity-section {
    padding: 40px 15px; /* Reduce padding for smaller screens */
  }
}

  
  






/* What Defines Us Today section */
.what-defines-us-today-section {
  position: relative;
  padding: 60px 0;
  background-color: #fff; /* Adjust if needed */
}

.what-defines-us-today-video-wrapper {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Ensures the rounded corners apply to the video */
}

.what-defines-us-today-video {
  max-width: 100%; /* Ensure the video scales properly */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for the video */
}

.what-defines-us-today-title {
  font-size: 32px; /* Main title font size */
  font-weight: 700; /* Bold heading */
  color: #333; /* Dark heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.what-defines-us-today-text {
  font-size: 18px; /* Font size for body text */
  line-height: 1.8; /* Line height for readability */
  color: #555; /* Neutral text color */
  margin-bottom: 20px; /* Space below each paragraph */
}

.what-defines-us-today-decorative-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc; /* Adjust the color of the lines */
}

.what-defines-us-today-decorative-line.top-line {
  top: 0;
}

.what-defines-us-today-decorative-line.bottom-line {
  bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .what-defines-us-today-section {
    padding: 40px 0;
  }

  .what-defines-us-today-title {
    font-size: 24px;
  }

  .what-defines-us-today-text {
    font-size: 14px;
  }
}





/* Our Vision for the Future section */
.our-vision-for-the-future-section {
  position: relative;
  padding: 60px 0;
  background-color: #fff; /* Adjust if needed */
}

.our-vision-for-the-future-video-wrapper {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Ensures the rounded corners apply to the video */
}

.our-vision-for-the-future-video {
  max-width: 100%; /* Ensure the video scales properly */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for the video */
}

.our-vision-for-the-future-title {
  font-size: 32px; /* Main title font size */
  font-weight: 700; /* Bold heading */
  color: #333; /* Dark heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.our-vision-for-the-future-text {
  font-size: 18px; /* Font size for body text */
  line-height: 1.8; /* Line height for readability */
  color: #555; /* Neutral text color */
  margin-bottom: 20px; /* Space below each paragraph */
}

.our-vision-for-the-future-decorative-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc; /* Adjust the color of the lines */
}

.our-vision-for-the-future-decorative-line.top-line {
  top: 0;
}

.our-vision-for-the-future-decorative-line.bottom-line {
  bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .our-vision-for-the-future-section {
    padding: 40px 0;
  }

  .our-vision-for-the-future-title {
    font-size: 24px;
  }

  .our-vision-for-the-future-text {
    font-size: 14px;
  }
}






/* A Message to You Section */
.message-to-you-section {
  position: relative;
  padding: 60px 0;
  background-color: #fff; /* Background color */
}

.message-to-you-video-wrapper {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Ensures the rounded corners apply to the video */
}

.message-to-you-video {
  max-width: 100%; /* Ensure the video scales properly */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners for the video */
}

.message-to-you-title {
  font-size: 32px; /* Main title font size */
  font-weight: 700; /* Bold heading */
  color: #333; /* Dark heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.message-to-you-text {
  font-size: 18px; /* Font size for body text */
  line-height: 1.8; /* Line height for readability */
  color: #555; /* Neutral text color */
  margin-bottom: 20px; /* Space below each paragraph */
}

.message-to-you-decorative-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc; /* Decorative line color */
}

.message-to-you-decorative-line.top-line {
  top: 0;
}

.message-to-you-decorative-line.bottom-line {
  bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .message-to-you-section {
    padding: 40px 0;
  }

  .message-to-you-title {
    font-size: 24px;
  }

  .message-to-you-text {
    font-size: 14px;
  }
}

  


















































/* Ready to Get Started Section */
.ready-to-get-started-section {
  background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%); /* Gradient background */
  height: 250px; /* Adjust the height as needed */
  display: flex; /* Enable flexbox for vertical and horizontal centering */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  text-align: center; /* Center text alignment */
  color: #fff; /* White text color */
}

.ready-to-get-started-title {
  font-size: 32px; /* Font size for the title */
  font-weight: 700; /* Bold font */
  margin-bottom: 20px; /* Space below the title */
  color: #ffffff; /* White color for the title */
}

.ready-to-get-started-button {
  display: inline-block; /* Inline-block for the button */
  padding: 12px 24px; /* Padding inside the button */
  font-size: 16px; /* Font size for the button */
  font-weight: 600; /* Slightly bold text */
  color: #fff; /* White text color */
  background-color: transparent; /* Transparent background */
  border: 2px solid #fff; /* White border */
  border-radius: 50px; /* Rounded corners */
  text-decoration: none; /* Remove underline */
  transition: all 0.3s ease; /* Smooth hover transition */
}

.ready-to-get-started-button:hover {
  background-color: #fff; /* White background on hover */
  color: #123c50; /* Change text color on hover */
  border-color: #123c50; /* Change border color on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ready-to-get-started-title {
    font-size: 24px; /* Adjust font size for smaller screens */
  }

  .ready-to-get-started-button {
    font-size: 14px; /* Adjust button font size for smaller screens */
    padding: 10px 20px; /* Adjust button padding */
  }
}












/* Explore Section */
.explore-section {
  background-color: #f4f7fc; /* Light background color */
  padding: 60px 20px;
}

.explore-title {
  font-size: 28px; /* Title size */
  font-weight: 700;
  color: #000; /* Dark title color */
  margin-bottom: 40px; /* Space below the title */
}

.explore-item {
  text-align: center;
  margin-bottom: 30px; /* Space between rows in smaller screens */
}

.explore-icon {
  width: 60px; /* Icon size */
  height: 60px; /* Ensure consistent sizing */
  margin-bottom: 15px;
}

.explore-heading {
  font-size: 18px; /* Section heading font size */
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.explore-link {
  font-size: 16px;
  font-weight: 500;
  color: #e6007a; /* Bright pink for the link */
  text-decoration: none;
}

.explore-link:hover {
  text-decoration: underline;
  color: #cc005f; /* Slightly darker pink on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .explore-title {
    font-size: 24px; /* Smaller title font for mobile */
  }

  .explore-heading {
    font-size: 16px;
  }

  .explore-link {
    font-size: 14px;
  }
}

/* Dark mode visibility fixes for our story page */
body.dark-mode .hero-section-splunk,
body.dark-mode .ourstory-hero-video-shell,
body.dark-mode .beginner-section,
body.dark-mode .pivot-cybersecurity-section,
body.dark-mode .what-defines-us-today-section,
body.dark-mode .our-vision-for-the-future-section,
body.dark-mode .message-to-you-section,
body.dark-mode .explore-section {
  background-color: #000 !important;
  color: #f5f5f5 !important;
}

body.dark-mode .beginner-heading,
body.dark-mode .pivot-cybersecurity-title,
body.dark-mode .what-defines-us-today-title,
body.dark-mode .our-vision-for-the-future-title,
body.dark-mode .message-to-you-title,
body.dark-mode .explore-title,
body.dark-mode .explore-heading {
  color: #f5f5f5 !important;
}

body.dark-mode .beginner-content,
body.dark-mode .beginner-content p,
body.dark-mode .pivot-cybersecurity-text,
body.dark-mode .what-defines-us-today-text,
body.dark-mode .our-vision-for-the-future-text,
body.dark-mode .message-to-you-text {
  color: #d0d0d0 !important;
}

body.dark-mode .what-defines-us-today-decorative-line,
body.dark-mode .our-vision-for-the-future-decorative-line,
body.dark-mode .message-to-you-decorative-line {
  background-color: #2f2f2f;
}

body.dark-mode .explore-link {
  color: #ff7fb0;
}

body.dark-mode .explore-link:hover {
  color: #ff9ac2;
}

@media (max-width: 1200px) {
  .ourstory-hero-video-shell {
    width: calc(100vw - 48px);
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .ourstory-hero-video-shell {
    width: calc(100vw - 20px);
    padding: 8px;
    border-radius: 10px;
  }

  .ourstory-hero-video-shell #heroVideo {
    max-height: 54vh;
  }

  .ready-to-get-started-section {
    min-height: 220px;
    height: auto;
    padding: 32px 14px;
  }
}

@media (max-width: 576px) {
  .hero-section-splunk {
    padding: 84px 0 16px;
  }

  .ourstory-hero-video-shell #heroVideo {
    max-height: 46vh;
  }

  .beginner-section,
  .pivot-cybersecurity-section,
  .what-defines-us-today-section,
  .our-vision-for-the-future-section,
  .message-to-you-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .ready-to-get-started-title {
    font-size: 22px;
    line-height: 1.25;
  }
}
