.hidden{
    visibility: hidden;
}

.site-title a{
    font-family: var(--wp--preset--font-family--montserrat) !important;
    font-weight: 700 !important;
}

.container-squares {
  display: flex;
  gap: 20px;
}

p{
    text-align: justify;
}

.container-squares .column {
    display: flex;
  flex: 1;
  padding: 20px;
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering */
}

.container-cards {
  display: flex;
  flex-wrap: wrap !important;
  gap: 20px; 
  width: 100%;
}

.card{
    background: var(--wp--preset--color--silver-blue) !important;
    padding: 20px;
     box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.container-cards .card-3 {
    flex: 0 0 calc(33.333% - 13.33px) !important; /* 3 columns with spacing */
    display: flex;
    align-items: start;
    justify-content: center;
    background: var(--wp--preset--color--silver-blue) !important;
    padding: 20px;
    min-height: 150px; /* optional */
    box-sizing: border-box;
    text-align: center;
    border-radius: 6px;
    text-align: start;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.container-cards .card-3 .wp-block-group{
    width: 100%;
}

.container-cards .card-3 i{
    font-size: 25px;
    color: #2253cb;
}

.six-services i{
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #2253cb;
}

.dark-mode .card-3{
    background:rgba(255, 255, 255, 0.16) !important;
    color: #ebeefc;
}

.dark-mode .dark-bg{
    border: rgba(255, 255, 255, 0.2) !important;
    background:rgba(255, 255, 255, 0.16) !important;
}

.dark-mode .container-cards .card-3 i{
    color: #ebeefc !important;
}

.container-squares .column.column-title {
    text-align: end;
  background: #00467f;
}

.container-squares .column.column-title h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #ebeefc;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  left: 0;
  right: 0;
  padding: 20px;
}

.dark-mode .wp-block-columns,.dark-mode .wp-block-group {
    border-bottom:none !important; 
}



.dark-mode .container-bg-secondary{
    background: #2f2f31 !important;
}

.container-bg-secondary{
    background:  var(--wp--preset--color--silver-blue) !important;
}

.container-bg-primary{
    background: #00467f !important;
}

.container-bg-primary h2{
    color: #f9fafd !important;
}

.container-bg-primary p, .container-bg-primary li{
    color: #ebeefc !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.site-wrapper{
    margin-bottom: 0 !important;
}

.parallax-section p{
    margin: auto;
    max-width: 980px;
    font-weight: bold;
}

.custom-form{
    border-radius: 20px;
    padding: 20px;
    background: #ebeefc;
    font-size: 12px !important;
}

.custom-form label{
    color: #404040;
}

.custom-form input, .custom-form select, .custom-form textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.custom-form .wpcf7-radio {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.custom-form .wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-form .wpcf7-radio label:hover {
  background-color: #f0f0f0;
  border-color: #bbb;
}

.custom-form .wpcf7-radio input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #666;
  border-radius: 50%;
  position: relative;
}

.custom-form .wpcf7-radio input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #0073aa;
  border-radius: 50%;
}

.custom-form .wpcf7-radio input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.wpcf7-list-item{
    margin: 0 !important;
}

.footer-menu-container {
  text-align: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex; /* Align items inline & keep centered */
  gap: 10px; /* Space between items */
}

.footer-nav li {
  display: inline; /* Inline display */
  position: relative;
}

.footer-nav li::after {
  content: " - ";
  margin: 0 5px;
  color: #999;
}

.footer-nav li:last-child::after {
  content: ""; /* Remove dash after last item */
}

.footer-nav a {
  text-decoration: none;
  color: #fff; /* Adjust for dark footer */
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ddd;
}

.footer-widget-2{
    border: none !important;
}

.footer-widget-3{
    text-align: right;
}

.footer-widget-3 li{
    margin-bottom: 0px !important;
    padding: 0px !important;
}

.footer-widget-3 li a{
    font-size: var(--wp--preset--font-size--small) !important;
}


.widget-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.widget-column {
  flex: 1 1 30%; /* 3 columns */
  min-width: 250px;
}

.articles-display .article{
    background: var(--wp--preset--color--silver-blue) !important;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 .1875rem .4375rem 0 rgba(0, 0, 0, .13), 0 .0625rem .125rem 0 rgba(0, 0, 0, .11);
}



.articles-display .article figure{
    max-width: 100% !important;
}

.articles-display .article .wp-block-button__link{
    font-weight: 600 !important;
}

@media only screen and (max-width: 600px) {
    
    .container-squares .column:not(.column-title) {
        padding: 0 !important;
    }
    
    .container-squares .column.column-title h2 {
        text-align: left;
        font-size: 2rem;
    }
    
    .footer-widget-3{
        text-align: left;
    }
    
    .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align to left */
    gap: 0;
  }

  .footer-nav li {
    display: block;
    margin: 0;
  }

  .footer-nav li::after {
    content: ""; /* remove dash on mobile */
  }
  
  .footer-nav li a{
      font-size: var(--wp--preset--font-size--small) !important;
  }
  
  .wp-block-spacer{
      height: 0px !important;
  }
  
  
  .wp-block-group{
      padding-bottom: 30px !important;
  }
  
  .widget-column{
      padding: 0px !important;
  }
  
  .widget-column .wp-block-group{
      padding-bottom: 5px !important;
  }
  
  .articles-display .article .wp-block-group{
      max-width: 100%;
      padding-bottom: 0 !important;
  }

    .dark-mode-menu-item{
        position: absolute;
        top: -80px;
    }
    
    .nav-menu .wp-block-button a{
        padding: 0px !important;
        margin: 0px !important;
        
    }
}