/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variables */
:root {
  --bg-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --accent-color: #444444;
}

/* Base Styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.85rem;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.splash-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  padding: 1rem;
}

.splash-subheading h2 {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
}

.splash-subheading p {
  font-size: 1rem;
  color: #CCCCCC;
  margin: 5px 0 0;
}

.splash-logo {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Video Container */
.video-container {
  position: fixed;
  width: 50%;
  height: 100vh;
  left: 0;
  top: 0;
  overflow: hidden;
}

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

/* Text Logo */
.text-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: bold;
  z-index: 10000;
}

/* Content Section */
.content-section {
  width: 45%;
  margin-left: 50%;
  padding: 0 0.5rem;
  min-height: 100vh; /* Grows with content */
  overflow-y: auto; /* Scroll when needed */
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30vh; /* Starts content ~35% down, approximating center */
}

/* Custom Scroll Bar */
.content-section::-webkit-scrollbar {
  width: 8px; /* Slim scroll bar */
}

.content-section::-webkit-scrollbar-track {
  background: #F0F0F0; /* Light track */
}

.content-section::-webkit-scrollbar-thumb {
  background: var(--accent-color); /* Matches theme */
  border-radius: 4px;
}

.content-section::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker on hover */
}

/* Main Content */
.content-right {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

/* Updating accordion: removing animations and adding a static icon */
.accordion {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  /* Removed transition, transform, and underline effects */
}

.accordion::before {
  content: "\25B8"; /* Right-pointing triangle icon */
  margin-right: 8px;
  font-size: 1.1rem;
 
}

/* Removing the sliding underline effect */
/* .accordion::after { */
/*   content: ''; */
/*   position: absolute; */
/*   left: 0; */
/*   bottom: 0; */
/*   width: 0; */
/*   height: 2px; */
/*   background-color: var(--accent-color); */
/*   transition: width 0.3s ease; */
/* } */

.accordion:hover,
.accordion:focus {
  color: var(--accent-color);
  /* No transform or underline animation */
}

/* Removing default blue outline on accordion focus and active states */
.accordion:focus,
.accordion:active {
  outline: none;
}

.panel {
  display: none;
  padding: 10px;
}
.panel.active {
  display: block;
}

/* Menu Button */
.menu-button {
  position: fixed;
  top: 20px;
  right: 5px;
  z-index: 1000;
}

.menu-button a {
  display: block;
  padding: 8px 12px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  background: var(--bg-light);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.menu-button a:hover {
  background: #F0F0F0;
}

.menu-button ul {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-light);
  padding: 5px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid #E0E0E0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.menu-button:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-button li {
  list-style: none;
}

.menu-button li a {
  color: var(--text-dark);
  padding: 8px 12px;
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.menu-button li a:hover {
  background: #F0F0F0;
}

/* Typography */
.section-title {
  font-size: 2.9rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem;
}

.lead-text, .text-group p {
  font-size: 0.85rem;
  color: #000000;
}

.text-group h3 {
  font-size: 1rem;
  color: var(--accent-color);
  margin: 1.5rem 0 0.8rem;
}

.content-block {
  margin-bottom: 4rem;
}

/* Lists and Images */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5rem 0;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: '\2022';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.grid-image, .content-image {
  width: 100%;

  object-fit: cover;
  filter: contrast(120%);
}

.content-image {
  margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Splash Screen */
  .splash-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .splash-subheading h2 {
    font-size: 1.5rem;
  }
  .splash-subheading p {
    font-size: 0.9rem;
  }
  .splash-logo {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  /* Content Section */
  .content-section {
    width: 100%;
    margin-left: 0;
    padding: 2rem;
    min-height: auto; /* Natural flow */
    padding-top: 2rem; /* Reset to top on mobile */
  }
  .video-container {
    position: relative;
    width: 100%;
    height: 40vh;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1.4rem;
  }
  .grid-image, .content-image {
    height: 200px;
  }
}

.content-video {
  width: 100%; /* Full width of the content box */
  height: auto; /* Maintain aspect ratio */
  padding-top: 10px;
}

.large-image {
  height: 240px; /* Increase height */
}