
/*---------------------------------------
  HEadings              
-----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Karla', sans-serif; /* You can replace with any font-family */
  color: white; /* Global color for all headings */
  line-height: 1.2; /* Ensures consistent spacing between lines */
  margin-top: 0; /* Remove extra margin above headings */
  margin-bottom: 10px; /* You can adjust for more or less spacing */
}

/* Specific styles for each heading level */
h1 {
  font-size: 3rem; /* You can adjust this for responsiveness */
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
}

h4 {
  font-size: 1.75rem;
  font-weight: 500;
}

h5 {
  font-size: 1.5rem;
  font-weight: 400;
}

h6 {
  font-size: 1.25rem;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  h1 {
      font-size: 2.5rem;
  }

  h2 {
      font-size: 2.2rem;
  }

  h3 {
      font-size: 1.8rem;
  }
}

@media screen and (max-width: 580px) {
  h1 {
      font-size: 2rem;
  }

  h2 {
      font-size: 1.8rem;
  }

  h3 {
      font-size: 1.6rem;
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
.section-padding {
  padding-top: 20vh; /* Global top padding for all sections */
  padding-bottom: 10vh; /* Global bottom padding */
}


@media screen and (max-width: 580px) {
  .section-padding {
    padding-top: 85vh; /* Further adjust padding for small screens */
    padding-bottom: 6vh;
  } 

  .aboutus-section-padding {
    padding-top: 78.5vh !important;  
  }

  .services-section-padding {
    padding-top: 128.9vh !important;  
  }  

  .membership-section-padding {
    padding-top: 98vh !important;  
  } 

  .faq-section-padding {
    padding-top: 188vh !important;  
  }   

  .contactus-section-padding {
    padding-top: 63vh !important;  
  } 
}

/* Base container style to fill the viewport height minus the header/menu height */
section {
  min-height: calc(100vh - 60px); /* Total height minus header (100px) and footer (60px) */
  max-height: calc(100vh - 60px); /* Ensure the section does not exceed the viewport */
  padding-top: 10vh; /* Re-added top padding to ensure content starts below navbar */
  padding-bottom: 10vh; /* Ensure proper bottom padding for all sections */
  display: flex;
  align-items: flex-start; /* Start content right below the menu */
  justify-content: flex-start; /* Ensure content is aligned to the top */
  flex-direction: column; /* Vertical content flow */
  box-sizing: border-box; /* Include padding in height calculation */
  overflow-y: hidden; /* Prevent vertical scrolling */
}

/* Enable scrolling for the body */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  margin: 0; /* Remove default margins */
  background-color: black;
}

/* Adjust main section to sit below the fixed navbar */
main {
  margin-top: 100px; /* Adjust this value to match the navbar's height */
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 60px; /* Adjust for smaller screens where the navbar might be smaller */
  }
}

section {
  height: auto; /* Allow section height to adjust to content */
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content */
  padding: 0 15px; /* Add some side padding */
  box-sizing: border-box; /* Include padding in height calculation */
}

@media screen and (max-width: 768px) {
  section {
    min-height: auto; /* Allow height to adapt on mobile */
    overflow-y: auto; /* Enable vertical scrolling within section */
  }

  body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Prevent vertical scrolling */
    margin: 0; /* Remove default margins */
  }  
}

header, .navbar {
  height: 100px; /* Fixed header height */
}

/* Footer styling */
footer, .site-footer {
  height: 60px; /* Fixed footer height */
  padding-bottom: 2vh; /* Ensure bottom padding is there */
}
.container,
.container-fluid {
  max-width: 100%; /* Ensure full width */
  padding-left: 15px; /* Optional: Padding can be adjusted as needed */
  padding-right: 15px;
}

.section-image {
  width: 440px;  /* Specify the width */
  height: 250px; /* Specify the height */
  object-fit: cover; /* This ensures the aspect ratio is maintained while filling the space */
  border-radius: 10px; /* Make image corners rounded to match news items */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow around images */
}

@media (max-width: 768px) {
  .col-md-3.col-12 {
    width: 95vw; /* Set container to 95% of the viewport width */
    margin: 0 auto; /* Center the container */
    overflow: visible; /* Ensure no content is cut off */
  }

  .section-image {
    width: 100%; /* Fill container width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image scales without being cut off */
    border-radius: 0; /* Remove rounded corners for mobile */
    margin-top: 0; /* Ensure no top margin cuts off the image */
  }
}

a {
  color: #004080; /* Dark blue for better contrast */
  text-decoration: underline;
}

a:hover {
  color: #002060; 
}

.btn-submit {
  background-color: #007bff; /* A darker blue for better contrast */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
}

.btn-submit:hover {
  background-color: #0056b3; /* Even darker blue on hover */
  color: #ffffff; /* White text */
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
:root {
  --menu-font-size: 1.0rem; /* Default menu font size */
}

@media (min-width: 768px) {
  :root {
    --menu-font-size: 1.2rem; /* Bigger font for medium screens */
  }
}

@media (min-width: 992px) {
  :root {
    --menu-font-size: 1.4rem; /* Bigger font for large screens */
  }
}

.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;  
  padding-bottom: 8px;  
  transition: background 0.3s ease-out;
}

.navbar {
  background-color: #0d0a02 !important;
}

.sticky-nav {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.sticky-nav .navbar-brand {
  color: var(--dark-color);
}

.sticky-nav .navbar-nav .nav-link {
  color: var(--p-color);
}

.navbar-brand {
  font-size: 40px;
  color: var(--white-color);
}

.logo {
  width: 80px;
  height: 80px;
}

.logo-wrapper {
  background-color: white; /* White background for the circle */
  border-radius: 50%; /* Make it a circle */
  padding: 10px; /* Adjust padding to create space for the white background */
  width: 80px; /* Adjust size to desired circle size */
  height: 80px; /* Ensure height matches width for a perfect circle */
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;  
  padding-left: 20px;
  padding-top: 8px;  
  padding-bottom: 8px;
  color:white;
}

.navbar-nav .nav-link {
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: 600; 
  padding-top: 15px;
  padding-bottom: 15px;
  display: inline-block;
  min-width: 100px; 
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {

  color:#8c887d !important;
}

.fullWidth {
  width: 100%;
}

.navbar-email {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .navbar {
    background-color: #333 !important; /* Set background to white */
  }

  .navbar-toggler {
    border-color: #ccc; /* Set border color for the toggler button */
  }

  .navbar-collapse {
    background-color: #333; /* White background for expanded menu */
    position: absolute; /* Position the menu absolutely */
    top: 100%; /* Place the menu just below the navbar */
    right: 0; /* Align the menu to the right side */
    width: 50%; /* Control the width of the dropdown menu */
    padding: 10px; /* Add padding inside the menu */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a slight shadow for visual effect */
    z-index: 1000; /* Ensure the menu stays above other content */
  }

  /* Align the navbar items to the right */
  .navbar-nav {
    text-align: right; /* Right-align the items */
    padding-right: 10px; /* Add some right padding */
  }

  .navbar-nav .nav-link {
    padding: 10px 0; 
  }

  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: white;
   } 

  /* Keep the toggler button on the right */
  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: white;
  }

}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .001rem;
}

  /* Keep the email link positioned below the menu items */
  .navbar-email {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: block;
    margin-top: 15px; 
    text-align: right; 
  }


.navbar-email .email-link {
  color: black; /* Make the email link black */
  text-decoration: underline;
  font-size: 1rem;
  color:white !important;
}

a {
  color: white;
  text-decoration: underline;
}

.navbar-email .email-link:hover {
  color: #ccc8c8; /* Change color on hover */
}

.navbar-toggler {
  z-index: 1050;
}


/*---------------------------------------
  HOME PAGE             
-----------------------------------------*/
/* Hero Section Adjustments */
.hero {
  position: relative;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  padding-bottom: 0; /* Remove extra padding */
  overflow: hidden; /* Hide overflow to prevent scrollbars */
  width: 100vw; /* Ensure the hero section spans full viewport width */
}

.hero img {
  width: 100%; /* Ensure the image takes up full width */
  height: auto; /* Ensure the image takes up auto height */
  object-fit: cover; /* Scale the image while maintaining aspect ratio and covering the section */
}

@media (max-width: 768px) {
  .hero {
      height: 100vh; /* Full height for mobile devices */
  }

  .heroText {
      padding: 20px; /* Add padding to ensure text is not cut off */
  }
}

.overlay {
  background: rgba(128, 142, 176, 0.6); /* Background transparency */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.heroText {
  position: relative;
  z-index: 3; 
  color: white;
  text-align: center;
  opacity: 1;
  font-size: 3rem;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px;
  background-color: #02041c; /* Background behind text */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Text shadow */
  display: block; /* Set display to block for full width control */
  margin-left: auto;
  margin-right: auto; /* These two will center the element horizontally */
  width: 50%;
}

@media screen and (max-width: 991px) {
  .hero {
    height: auto;
    padding-top: 60px;
  }
  
  .heroText {
    width: 90%;
  }

  .bpsi-title{
    font-size: 2rem !important;
  }

  .home-tagline{
    font-size: 1.4rem !important;
  }
}

.home-join-container{
  z-index: 3; 
}

/*---------------------------------------
  PROGRESS BAR              
-----------------------------------------*/
.progress-wrapper {
  width: 50%; /* Set the wrapper to 50% of the container */
  padding: 10px;
  border: 2px solid #1c1c1c; /* Add border around the entire component */
  border-radius: 15px; /* Rounded corners */
  background-color: #1c1c1c; 
  margin-bottom: 20px; /* Spacing below the component */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-aligns the elements */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow */
}

@media screen and (max-width: 768px) {
  .progress-wrapper {
    width: 100%; /* Set the wrapper to 50% of the container */
    padding: 10px;
    border: 2px solid #1c1c1c; /* Add border around the entire component */
    border-radius: 15px; /* Rounded corners */
    background-color: #1c1c1c; 
    margin-bottom: 20px; /* Spacing below the component */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligns the elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow */
  }
}

/* Progress Bar Container and Bar Styling */
.progress-container {
  width: 100%; /* Takes up full width of the wrapper */
  background-color: white;
  border-radius: 25px;
  padding: 5px;
  position: relative;
}

.progress-bar {
  width: 0; /* The progress percentage will be dynamically set */
  height: 30px;
  background-color: #285D29; 
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  color: white;
  transition: width 0.3s;
}

/* Increment Labels */
.increment-labels {
  width: 100%; /* Set width to match progress bar */
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.increment-labels span {
  font-size: 12px;
  text-align: center;
}

/* Goal Achieved Checkmark */
.goal-achieved {
  width: 30px;
  height: 30px;
  background-color: green;
  border: 2px solid white; 
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.goal-achieved.show {
  display: flex;
}

/*---------------------------------------
  NEWS            
-----------------------------------------*/
.news-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}


.news-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #333; /* Darker title color */
}

/* Individual News Items */
.news-item {
  width: 100%;
  background-color: #333333; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: white; 
}

.news-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;  /* Use brand color or accent color for the title */
}

.news-date {
  font-size: 0.9rem;
  color: #777; /* Grey color for the date */
  margin-bottom: 15px;
  font-style: italic;
}

/* Paragraph styles */
.news-item p {
  font-size: 1rem;
  color: white; 
  line-height: 1.6; /* Improve readability */
}

/* Make links within news items stand out */
.news-item a {
  color: #007bff; /* Link color */
  text-decoration: underline;
}

.news-item a:hover {
  color: #0056b3; /* Darker link color on hover */
}

/*---------------------------------------
  VISION           
-----------------------------------------*/
.vision-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.vision-opening-para{
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: white;
}

.key-features-box {
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: #333333;
}

.key-features-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white; /* Use brand color or accent color for the title */
}

.key-features-box li {
  list-style-type: disc;
  color: white;
  margin-bottom: 10px;
}


.vision-tag-line {
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color:white; 
  font-size: 1.7rem; 
  font-style: italic;
  font-weight: bold;
}


/*---------------------------------------
  ABOUT US        
-----------------------------------------*/
.aboutus-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.aboutus-tag-line {
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color:white; 
  font-size: 2rem; 
  font-style: italic;
  font-weight: bold;
}

.aboutus-box {
  background-color: #333333; /* Light grey background */
  padding: 20px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  width:100%;
  color:white;
}

/*---------------------------------------
  SERVICES         
-----------------------------------------*/
.services-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 30px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.services-top-para {
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color:white; 
}

.services-middle-para {
  width: 30%; /* Adjust width as needed */
  background-color: #292722; 
  padding: 10px;
  margin: 0 auto 10px; /* 0 for top margin, auto for horizontal centering, 10px for bottom margin */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: white; 
  text-align: center;
}

@media screen and (max-width: 768px) {
  .services-middle-para {
    width: 80%; /* Make it wider on smaller screens */
  }
}

.mlb-logo {
  width: 225px;  /* Specify the width */
  height: 125px; /* Specify the height */
  object-fit: cover; /* This ensures the aspect ratio is maintained while filling the space */
  border-radius: 10px; /* Make image corners rounded to match news items */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow around images */
}

.mlb-logo-container{
  padding-bottom: 5px;
  text-align: center;
}

.services-title{
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white; 
  text-align: center;
}

.services-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white; /* Use brand color or accent color for the title */
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(10, 1fr); /* 9 items in one row */
  gap: 5px; /* Space between grid items */
  width: 100%; /* Full width */
}

.grid-item {
  background-color: #333333; /* Dark background for each item */
  padding: 15px; /* Add some padding inside the items */
  border-radius: 8px; /* Optional: Rounded corners */
  color: white; /* Text color for better contrast */
}

.title {
  font-weight: bold;
  margin-bottom: 10px; /* Space between title and content */
  font-size: 1rem; /* Adjust the title font size */
}

.content {
  font-size: 0.8rem; /* Adjust the content font size */
}

@media screen and (max-width: 1400px) {
  .grid-container {
      grid-template-columns: repeat(6, 1fr); /* 5 columns for smaller screens */
      padding-bottom: 20px;
  }
}


@media screen and (max-width: 1200px) {
  .grid-container {
      grid-template-columns: repeat(4, 1fr); /* 5 columns for smaller screens */
      padding-bottom: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .grid-container {
      grid-template-columns: repeat(3, 1fr); /* 2 columns for smaller screens */
      padding-bottom: 20px;
  }

  .title {
      font-size: 0.9rem; /* Adjust title font size for smaller screens */
  }

  .content {
      font-size: 0.70rem; /* Adjust content font size for smaller screens */
  }
}

@media screen and (max-width: 768px) {
  .grid-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
      padding-bottom: 20px;
  }

  .title {
      font-size: 0.9rem; /* Adjust title font size for smaller screens */
  }

  .content {
      font-size: 0.70rem; /* Adjust content font size for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .grid-container {
      grid-template-columns: 1fr; /* Single column for mobile */
      padding-bottom: 20px;
  }

  .title {
      font-size: 0.85rem;
  }

  .content {
      font-size: 0.65rem;
  }
}




/*---------------------------------------
  MEMBERSHIP           
-----------------------------------------*/
.membership-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.membership-box {
  width: 96%;
  background-color: #333333; /* White background */
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: white;
}

.membership-top-para{
  color: white;
}

.join-now-image {
  width: 20%;  /* Reduce width */
  height: 20%; /* Reduce height */
  object-fit: cover; /* Ensure aspect ratio is maintained */
}



.join-now-button {
  display: inline-block;
  background-color: #610101; 
  color: #ffffff; /* White text */
  font-size: 1.5rem; /* Large font size */
  font-weight: bold; /* Make the text bold */
  padding: 15px 0; /* Vertical padding only */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove underline */
  border-radius: 50px; /* Rounded corners */
  width: 80vw; /* Button width is 80% of the viewport width */
  max-width: 400px; /* Maximum width to ensure it's not too large on bigger screens */
  min-width: 200px; /* Minimum width to ensure it's still legible on smaller screens */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add some shadow for depth */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  margin: 20px auto; /* Center the button horizontally with margin */
}

/* Hover Effect */
.join-now-button:hover {
  background-color: #960505; 
  color: #ffffff; /* Ensure text remains white */
}

.membership-top-para {
  width: 100%;
  background-color: #292722; 
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color:white; 
}

.join-message {
  width: 70%; /* Adjust width as needed */
  background-color: #292722; 
  padding: 10px;
  margin: 0 auto 10px; /* 0 for top margin, auto for horizontal centering, 10px for bottom margin */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: white; 
  text-align: center;
}

@media screen and (max-width: 768px) {
  .services-middle-para {
    width: 80%; /* Make it wider on smaller screens */
  }
}

.membership-join-container {
  display: flex;
  justify-content: center; /* This will center the content horizontally */
  align-items: center;     /* Optionally, this will center the content vertically if needed */
  width: 100%;             /* Ensure the container takes up full width */
  padding: 20px 0;         /* Add padding to give some space */
}

.together-tag-line{
  margin: 0 auto 10px; 
  text-align: center;
  font-size: 1.2em;
}

/*---------------------------------------
  FAQ               
-----------------------------------------*/
.faq-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.faq-list-wrapper {
  max-height: calc(100vh - 310px); 
  overflow-y: auto;  /* Add vertical scroll */
  padding-right: 15px; /* Optional: for a nicer look, add padding to avoid content touching the scrollbar */
}

.faq-item {
  width: 100%; /* Adjust width as needed */
  background-color: #292722; 
  padding: 10px;
  margin: 0 auto 10px; /* 0 for top margin, auto for horizontal centering, 10px for bottom margin */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  color: white; 
  text-align: left;
}

.faq-item h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 10px;
}

.whatsAppAnnouncementsGroupQRCode{
  width: 12%;
  height:14%
}

.mobile-link {
  display: none;
}

.desktop-qr {
  display: block;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
  .mobile-link {
      display: block;
  }

  .desktop-qr {
      display: none;
  }
}

@media screen and (max-width: 768px) {
  /* Remove restrictions on mobile */
  .faq-list-wrapper {
    max-height: none; /* Allow the wrapper to expand naturally */
    overflow-y: visible; /* Remove the scroll */
    padding-right: 0; /* Remove extra padding */
  }
}

/*---------------------------------------
  CONTACT US            
-----------------------------------------*/
.contactus-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.form-wrapper {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-label {
  font-weight: bold;
  color: white;
}
.btn-submit {
  background-color:  #610101;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #960505;
}
.message {
  margin-top: 15px;
  color:green;
}

.contactus-top-para{
  color:white;
}

#contactForm .form-control {
  width: 40%; 
  max-width: 40%; 
  margin-bottom: 1rem; 
}

#contactForm .btn-submit-container {
  display: flex;
  justify-content: left; 
  width: 40%; 
  max-width: 40%; 
}

#contactForm .btn-submit {
  width: auto; /* Button adjusts to the size of its content */
  margin-top: 10px; /* Add space above the button */
}

@media screen and (max-width: 580px) {
  #contactForm .form-control {
    width: 100%; 
    max-width: 100%; 
    margin-bottom: 1rem; 
  }
  
  #contactForm .btn-submit-container {
    display: flex;
    justify-content: left; 
    width: 50%; 
    max-width: 50%; 
  }

}

.btn-submit:disabled {
  background-color: darkgrey; /* Set button color to dark grey when disabled */
  cursor: not-allowed; /* Change cursor to indicate it's disabled */
  opacity: 0.7; /* Reduce opacity to visually indicate it's disabled */
}

.flashing-text {
  animation: flash 1s linear infinite; /* Flashes every second */
}

@keyframes flash {
  0% { color: grey; }
  50% { color: white; }
  100% { color: grey; }
}

/* Error message style */
.error-message {
  color: red;
  font-weight: bold;
}

/* Success message style */
.success-message {
  color: green;
  font-weight: bold;
}

/*---------------------------------------
  AREA COVERAGE        
-----------------------------------------*/
.area-section {
  width: 100%; /* Make container full width */
  min-height: 400px; /* Adjust as per your content */
  display: block; /* Change from flex to block to allow normal document flow */
  padding: 40px 15px; /* Add padding to create space around the content */
  color: white; /* Text color to ensure contrast */
  min-height: calc(100vh - 100px - 60px); /* Ensure section fills the space between header and footer */
}

.text-box {
  width: 100%; /* Full width */
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 2px;
  color: white;
  background-color: #444444;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Space between the text box and the map */
}

.areamap-box {
  flex: 1; /* Allows this container to grow and fill the remaining space */
  background-color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

#map {
  width: 100%;
  height: 100%; /* Fill the height of the parent container */
  border: 2px solid red; /* For debugging */
  min-height: calc(100vh - 370px);
}


/*---------------------------------------
  FOOTER 
-----------------------------------------*/
.site-footer {
    background-color: #0d0a02;
    color: #ffffff;
    width: 100%;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    font-weight: bold;
}
.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

/* Anchor Terms to left edge with margin */
.footer-left-links {
  position: fixed;   /* pin it to the viewport */
  bottom: 15px;      /* same vertical offset as footer padding */
  left: 40px;        /* 10px from the left edge */
  text-decoration: underline;
}

/* Center site name */
.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.footer-center p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f5f5f5;
}

/* Anchor Privacy & Cookie to right edge with margin */
.footer-right-links {
  position: fixed;   /* pin to the viewport */
  bottom: 15px;      /* same vertical offset */
  right: 50px;       /* 10px from the right edge */
  display: flex;
  gap: 15px;
}

/* Link colors and underline */
.site-footer a {
    color: #ffffff;
    text-decoration: underline;
}
.site-footer a:hover {
    color: #dddddd;
    text-decoration: underline;
}

@media (max-width: 768px) {
  /* Make the footer itself a flex container */
  .site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;    /* same vertical padding as before */
  }

  /* Hide the centre site name on mobile */
  .site-footer .footer-center {
    display: none;
  }

  /* Inner wrapper becomes static and just lays out its children in a row */
  .footer-container {
    position: static;
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: none;
    width: auto;
    padding: 0;
  }

  /* Reset any fixed/absolute on the link‐blocks */
  .footer-left-links,
  .footer-right-links {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    display: flex;
    gap: 1rem;
  }
}

/*---------------------------------------
  COOKIE DIALOG
-----------------------------------------*/

dialog#cookie-dialog {
  background-color: #333333;             /* dark gray background */
  color: #ffffff;                        /* white text */
  border: 2px solid #ffffff;            /* white border */
  border-radius: 6px;
  width: 60vw;
  height: 69vh;
  padding: 0;                            /* padding moved to content */
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 0 0 4px rgba(255,255,255,0.8),    /* white glow outline */
    0 2px 12px rgba(0,0,0,0.5);         /* dark drop shadow */
}

dialog#cookie-dialog::backdrop {
  background: rgba(0,0,0,0.8);           /* darker backdrop */
}

/* Banner header inside dialog */
dialog#cookie-dialog .dialog-header {
  background-color: #0d0a02;
  width: 100%;                           /* full width */
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: 1px solid #555555;
}

/* Title in banner */
dialog#cookie-dialog .dialog-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 750;
  color: #ffffff;                        /* white title */
}

/* Close button in banner */
dialog#cookie-dialog .dialog-header #cookie-close {
  background: #ffffff;                   /* white button */
  color: #0d0a02;                        /* dark text */
  border: none;
  border-radius: 4px;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Content container fills dialog below banner */
dialog#cookie-dialog #cookie-content {
  box-sizing: border-box;
  width: 100%;
  flex: 1 1 auto;                        /* fill remaining space */
  padding: 1rem;
  overflow-y: auto;                     /* scroll if needed */
  text-align: left;
}

/* Reset global section styles inside dialog */
dialog#cookie-dialog #cookie-content section {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Headings—smaller and left‑aligned */
dialog#cookie-dialog #cookie-content h1 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

dialog#cookie-dialog #cookie-content h2 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

/* Body text */
dialog#cookie-dialog #cookie-content p,
dialog#cookie-dialog #cookie-content ul {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* List styling */
dialog#cookie-dialog #cookie-content ul {
  padding-left: 1.25rem;
}

/* Accent links */
dialog#cookie-dialog #cookie-content a {
  color: #66cfff;
  text-decoration: underline;
}
dialog#cookie-dialog #cookie-content a:hover {
  color: #a0e0ff;
}

/*---------------------------------------
  PRIVACY DIALOG
-----------------------------------------*/
dialog#privacy-dialog {
  background-color: #333333;             /* dark gray background */
  color: #ffffff;                        /* white text */
  border: 2px solid #ffffff;             /* white border */
  border-radius: 6px;
  width: 60vw;
  height: 70vh;
  padding: 0;                            /* padding moved to content */
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.8),     /* white glow outline */
    0 2px 12px rgba(0,0,0,0.5);          /* dark drop shadow */
}

dialog#privacy-dialog::backdrop {
  background: rgba(0,0,0,0.8);           /* darker backdrop */
}

/* Banner header inside privacy dialog */
dialog#privacy-dialog .privacy-header {
   background-color: #0d0a02;
   width: 100%;
   padding: 0.75rem 1rem;
   box-sizing: border-box;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex: 0 0 auto;
   border-bottom: 1px solid #555555;
 }

/* Title in privacy banner */
dialog#privacy-dialog .privacy-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;                        /* white title */
}

/* Close button in privacy banner */
dialog#privacy-dialog .privacy-header #privacy-close {
  background: #ffffff;                   /* white button */
  color: #0d0a02;                        /* dark text */
  border: none;
  border-radius: 4px;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Content container fills privacy dialog below banner */
dialog#privacy-dialog #privacy-content {
  box-sizing: border-box;
  width: 100%;
  flex: 1 1 auto;                        /* fill remaining space */
  padding: 1rem;
  overflow-y: auto;                      /* scroll if needed */
  text-align: left;
}

/* Reset global section styles inside privacy dialog */
dialog#privacy-dialog #privacy-content section {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Headings—smaller and left‑aligned */
dialog#privacy-dialog #privacy-content h1 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

dialog#privacy-dialog #privacy-content h2 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

/* Body text */
dialog#privacy-dialog #privacy-content p,
dialog#privacy-dialog #privacy-content ul {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* List styling */
dialog#privacy-dialog #privacy-content ul {
  padding-left: 1.25rem;
}

/* Accent links */
dialog#privacy-dialog #privacy-content a {
  color: #66cfff;
  text-decoration: underline;
}
dialog#privacy-dialog #privacy-content a:hover {
  color: #a0e0ff;
}

/*---------------------------------------
  TERMS DIALOG
-----------------------------------------*/
dialog#terms-dialog {
  background-color: #333333;             /* dark gray background */
  color: #ffffff;                        /* white text */
  border: 2px solid #ffffff;             /* white border */
  border-radius: 6px;
  width: 60vw;
  height: 70vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.8),     /* white glow outline */
    0 2px 12px rgba(0,0,0,0.5);          /* dark drop shadow */
}

dialog#terms-dialog::backdrop {
  background: rgba(0,0,0,0.8);           /* darker backdrop */
}

/* Banner header inside terms dialog */
dialog#terms-dialog .terms-header {
  background-color: #0d0a02;
  width: 100%;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: 1px solid #555555;
}

/* Title in terms banner */
dialog#terms-dialog .terms-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;                        /* white title */
}

/* Close button in terms banner */
dialog#terms-dialog .terms-header #terms-close {
  background: #ffffff;                   /* white button */
  color: #0d0a02;                        /* dark text */
  border: none;
  border-radius: 4px;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Content container fills terms dialog below banner */
dialog#terms-dialog #terms-content {
  box-sizing: border-box;
  width: 100%;
  flex: 1 1 auto;                        /* fill remaining space */
  padding: 1rem;
  overflow-y: auto;                      /* scroll if needed */
  text-align: left;
}

/* Reset any global section overrides inside terms dialog */
dialog#terms-dialog #terms-content section {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Headings—smaller and left‑aligned */
dialog#terms-dialog #terms-content h1 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

dialog#terms-dialog #terms-content h2 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

/* Body text */
dialog#terms-dialog #terms-content p,
dialog#terms-dialog #terms-content ul {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* List styling */
dialog#terms-dialog #terms-content ul {
  padding-left: 1.25rem;
}

/* Accent links */
dialog#terms-dialog #terms-content a {
  color: #66cfff;
  text-decoration: underline;
}
dialog#terms-dialog #terms-content a:hover {
  color: #a0e0ff;
}

/*---------------------------------------
  COOKIE CONSENT BANNER
-----------------------------------------*/
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  margin: 0;
  border: none;
  padding: 0;
  background: #333;
  color: #fff;
  z-index: 10000;
}

.consent-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.consent-banner__title {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 1rem;
}

.consent-banner__text {
  flex: 1 1 auto;
  font-size: 0.9rem;
  margin-right: 1rem;
}

.consent-banner__actions {
  flex: 0 0 auto;
}

.consent-banner__actions button {
  background: #fff;
  color: #333;
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.consent-banner__actions button:hover {
  opacity: 0.9;
}

#cookie-consent-dialog {
  position: fixed !important;   /* force fixed positioning */
  left: 0 !important;           /* flush left */
  bottom: 0 !important;         /* flush bottom */
  top: auto !important;         /* cancel any top positioning */
  transform: none !important;   /* remove centering transform */
  width: 100vw !important;
  max-width: 100vw !important;
  border-radius: 0;             /* remove rounded corners */
  margin: 0;                    /* no extra margin */
  box-sizing: border-box;
  padding: 0;                   /* inner spacing handled by children */
  z-index: 10000;               /* sit on top */
}

/* arrange header, body & buttons on one line */
#cookie-consent-dialog .dialog-header,
#cookie-consent-dialog #consent-body,
#cookie-consent-dialog .dialog-footer {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
}

#cookie-consent-dialog .dialog-header {
  flex: 1;                 /* take up just enough space for the title */
  background: #0d0a02;
  color: #fff;
}

#cookie-consent-dialog #consent-body {
  flex: 2;                 /* grow to fill the middle */
  background: #333;
  color: #fff;
}

#cookie-consent-dialog .dialog-footer {
  flex: 1;                 /* buttons area */
  justify-content: flex-end;
  background: #0d0a02;
}

#cookie-consent-dialog .dialog-footer button {
  margin-left: 0.5rem;
}

@media (max-width: 600px) {
  /* Stack everything vertically */
  .consent-banner__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  /* Make the title full width and slightly larger */
  .consent-banner__title {
    width: 100%;
    font-size: 1.1rem;
    margin: 0;
  }

  /* Ensure the text wraps nicely underneath */
  .consent-banner__text {
    width: 100%;
    margin: 0;
    font-size: 0.9rem;
  }

  /* Center the buttons row */
  .consent-banner__actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  /* Shrink button padding for mobile */
  .consent-banner__actions button {
    padding: 0.4rem 0.8rem;
    margin-left: 0.5rem;
  }
}