/* Set brand color */
:root {
  --brand-blue: #00426b;
  --brand-background-light: #eef8f9;
}

/* Links and Headings */
a,
h1, h2, h3, h4, h5, h6 {
  color: var(--brand-blue);
}

a:hover {
  color: darken(var(--brand-blue), 10%);
  text-decoration: underline;
}

/* Bootstrap Buttons */
.btn,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background-color: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 0 !important;

}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: #00375a; /* Slightly darker */
  color: #fff;
}
.background-light {
  background-color: var(--brand-background-light);
}
/* Optional: Outline button style */
.btn-outline-primary {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-outline-primary:hover {
  background-color: var(--brand-blue);
  color: #fff;
}
.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  color: #555;
  padding: 0.5rem 1rem;
}

.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  margin-top: 0;
  border-radius: 0;
}

.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}
.three-box-section h2 {
  font-weight: bold;
}

.three-box-section p {
  font-size: 16px;
}

.three-box-section .rounded {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.banner-section {
  background-image: url('https://www.findpaidfocusgroup.com/focusgroup.png');
  background-size: cover;         /* Cover entire section */
  background-position: center;    /* Center the image */
  background-repeat: no-repeat;   /* No repeat */
  color: #fff;                    /* Ensure text is white */
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.banner-section h1,
.banner-section h2,
.banner-section h3,
.banner-section h4,
.banner-section h5,
.banner-section h6 {
  font-size: 2.5rem; /* Adjust size only inside banner */
  margin-bottom: 20px;
  color: #fff;
}
/* Optional: add a dark overlay for better text contrast */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
  z-index: -1;
}

/* Make sure container content is above overlay */
.banner-section .container {
  position: relative;
  z-index: 2;
}
  /* Style menu links */
.navbar-nav .nav-link {
  font-size: 18px;            /* Font size */
  margin: 0 12px;             /* Horizontal spacing between items */
  padding: 8px 0;             /* Top & bottom padding */
  font-weight: 500;           /* Medium weight */
  color: #333;                /* Link color */
}

/* Change link on hover */
.navbar-nav .nav-link:hover {
  text-decoration: none;
   background-color: #00426b;
     color: #fff;
}

/* Active/current menu item */
.navbar-nav .nav-item.current-menu-item .nav-link {
  background-color: #00426b;
  font-weight: 600;
  color: #fff;
}

/* Optional: align logo and menu vertically center */
.navbar-brand img {
  max-height: 40px;
}

.navbar {
  align-items: center;
}

/* Make space between logo and menu on desktop */
@media (min-width: 992px) {
  .navbar-nav {
    margin-left: auto;
  }
}

/* Three Box Compoonent */
.threeBoxSection {
    padding: 2rem 0;
    text-align: center;
    background-image: url('../focusgroup/src/wave.svg');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .threeBoxSection h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  .sectionHeading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .sectionDescription {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
  }
  
  .box {
    padding: 20px;
    color: white;
    /* border-radius: 8px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 200px; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* .box:hover {
    transform: translateY(-10px); 
  } */
  
  .boxTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .boxDescription {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .box {
      margin-bottom: 1.5rem;
    }
  }
  @media (max-width: 430px) {
    .sectionHeading {
      font-size: 1.2rem;
    }
  }

  .FacilitiesList{
  padding: 2rem 0;
  text-align: center;
  background-image: url('/wave2.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.states {
    padding: 2rem 0;
  }
  
  .card {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cardLink {
    display: block;
    color: inherit;
    text-decoration: none;
  }
  
  .card:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .card-text {
    font-size: 1rem;
  }
  /* styles/PostList.module.css */

.postList {
  background-color: #EEF8F9;
}

.postCard {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure the card takes full height */
}

.postCard:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.postImage {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.postContent {
  padding: 15px;
  flex: 1; /* Ensure content area grows to fill remaining space */
  display: flex;
  flex-direction: column;
}

.postTitle {
  font-size: 1.25rem;
  color: #00426B;
  margin-bottom: 0.5rem;
}
.postTitle a {
  color: #00426B;
  text-decoration: none;
}
.postDescription {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1rem;
  flex: 1; /* Allow description to take up available space */
}
.postDescriptionFields {
  font-size: 1rem;
  color: #00426B;
  margin-bottom: 1rem;
  font-weight: bold;
  flex: 1; /* Allow description to take up available space */
}
.btn-primary {
  border-radius: 0.25rem;
}

.postCardFooter {
  padding: 15px;
  text-align: center;
}
/* Focus group SIngel Page */
.singlepostTitle {
    padding: 20px 0; /* Add some padding for better appearance */
    margin: 20px 0; /* Space below the title */
    color: #01426B;
    text-transform: uppercase;
    border-bottom: 1px solid;
    /* font-size: 2.5rem; */
  }
  .fullWidthButton {
    display: block;
    width: 100%;
    padding: 20px;
    margin: 20px 0; /* Space around the button */
    color: white; /* White text color */
    text-align: center; /* Center-align text */
    text-decoration: none; /* Remove underline */
    border-radius: 4px; /* Optional: Add rounded corners */
    font-size: 16px; /* Adjust font size */
  }
  

  /* Ensure the image does not exceed the column width */
.img-fluid {
    max-width: 100%;
    height: auto;
  }
.btn-custom {
  background-color: #00426B;
  color: white !important;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 0px !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Roboto Condensed', sans-serif; /* Apply Roboto Condensed */
  background: rgb(41,98,105);
  background: radial-gradient(circle, rgba(41,98,105,1) 0%, rgba(0,66,107,1) 100%);
}

.btn-custom-2 {
  background-color: #DFF1F3;
  color: #000 !important;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 0px !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Roboto Condensed', sans-serif; /* Apply Roboto Condensed */
}

.btn-custom:hover {
  background-color: #003354; /* Slightly darker on hover */
}

.btn-custom:active {
  background-color: #00263d; /* Even darker when clicked */
}
.w-150-px{
  min-width: 150px;
}
.w-200-px{
  min-width: 200px;
}
.w-100-p{
  min-width: 100%;
}
.normal-p{
  font-size: 20px;
}
/* Two columns  Grid*/
.home-categoris a {
    color: #00426b;
    text-decoration: none;
}

/* Templete Part Focus Group Card */
.focusgroup-card {
 min-height: 400px; /* Ensure equal height for all cards */
}
.focusgroup-card .card-title {
    font-size: 1.25rem;
    color: #00426b;
    text-decoration: none;
}
/* category-block */
.singlepostImage {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center; /* Optional, depends on your layout */
}
.singlepostImage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* optional if you want to crop instead of stretching */
}
.login-buttons {
    margin-top: 20px; /* Space above buttons */
    text-align: center; /* Center align buttons */
    color: #000;
}
.login-buttons label {
    display: block; /* Make labels block elements */
    margin-bottom: 10px; /* Space between label and button */
    font-weight: bold; /* Make label text bold */
    color: #00426b; /* Brand color for labels */
}
.login-buttons input[type="submit"] {
    width: 60%; /* Full width */
    padding: 10px; /* Padding for better appearance */
    background-color: #00426b; /* Brand color */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
}
.login-buttons input[type="submit"]:hover {
    background-color: #00375a; /* Darker shade on hover */
}
.login-buttons input[type="text"] {
    width: 60%; /* Full width */
    padding: 10px; /* Padding for better appearance */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px; /* Rounded corners */
    font-size: 1rem; /* Font size */
}
.login-buttons input[type="text"]:focus {
    border-color: #00426b; /* Brand color on focus */
    outline: none; /* Remove default outline */
}
/* password */
.login-buttons input[type="password"] {
    width: 60%; /* Full width */
    padding: 10px; /* Padding for better appearance */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px; /* Rounded corners */
    font-size: 1rem; /* Font size */
}
.login-buttons input[type="password"]:focus {
    border-color: #00426b; /* Brand color on focus */
    outline: none; /* Remove default outline */
}
.focusgroup-signup-banner{
  color: #00426b;
}
.border-bottom-title {
    padding: 20px 0;
    margin: 20px 0;
    color: #01426b;
    text-transform: uppercase;
    border-bottom: 1px solid;
}

postList {
    list-style-type: none;
    padding: 0;
  }
  
  .listItem {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
   border-left: none;
   border-top: none;

    /* border-radius: 8px; */
    box-shadow: 4px 4px 8px rgba(0, 51, 84, 0.1); /* Shadow only on right and bottom */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  }
  
  .listItem:hover {
    /* transform: scale(1.005); */
    box-shadow: 6px 6px 12px rgba(0, 51, 84, 0.2); /* Enhanced shadow on hover */
  }
  
 
  

  

  