/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
}


@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter/Inter_18pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}


h1,h2,h3,h4,h5,h6{
  font-family: 'Inter';
  font-weight: 700;
}
body{
  font-family: 'Inter';
}

a{
  text-decoration: none;
}

a:hover{
text-decoration: underline;
    text-underline-offset: 3px;
}

ul{
  margin:0px 0px 20px 30px;
}
.primary-menu-alignment ul{
    display: flex; 
    gap:30px;
    justify-content: flex-end;
}

/* .primary-menu-alignment a{
    text-decoration:none;
    color:var(--white);
    font-size:18px;
    font-weight:500;
}

.primary-menu-alignment a:hover {
    text-decoration: none;
     color: #ffaa00; 
     font-weight: normal;
    background: linear-gradient(90deg, #ffffff, #ffaa00);
    background-size: 100% 3px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 5px; 
} */

.primary-menu-alignment a { 
    text-decoration: none;
    color:var(--white);
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(90deg, #ffffff, #ffaa00);
    background-size: 0% 3px;   /* start hidden */
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease, color 0.3s ease;
    padding-bottom: 5px;
}

.primary-menu-alignment a:hover {
    color: #ffaa00;
    font-weight: normal;
    background-size: 100% 3px; /* expand underline smoothly */
    padding-bottom: 5px;
}


@media(max-width:1024px){
.primary-menu-alignment a:hover {
   /* background:unset; */
}
ul{
  margin:0px 0px 16px 18px;
}

.main-navigation .main-nav ul li a {
    margin-left: 20px;
    margin-right: 20px;
    width: fit-content;
    line-height: 1.5;
    margin-bottom: 30px;
    padding:0px;
    padding-bottom: 5px;
}

.menu-item-has-children .dropdown-menu-toggle {
  padding-right: 0px;
}

.main-navigation .main-nav ul ul li a {
  padding:0px;
  padding-bottom: 5px;
}
}


.primary-menu-alignment ul{
   margin-left:0;
   margin-bottom:0px;
} 

.primary-menu-alignment li{
    list-style:none;
}

.yellow-white-background{
  background-image: linear-gradient(to bottom, var(--white) 0%, var(--white) 35%, var(--white-yellow) 30%, var(--white-yellow) 100%);
}


@media(max-width:1024px){
.yellow-white-background {
    background-image: linear-gradient(to bottom, var(--white) 0%, var(--white) 40%, var(--white-yellow) 20%, var(--white-yellow) 100%);
}
}

/* -- */
.primary-menu-alignment .parent-menu {
  position: relative;
}

.primary-menu-alignment .submenu,
.primary-menu-alignment .submenu-child {
  display: none;
  position: absolute;
  z-index: 10;
  width: 150px;  
  padding: 18px 15px;
 background: linear-gradient(to bottom, #004b8d 0%, #31006e 100%);
  list-style: none;
}

.primary-menu-alignment .submenu a,
.primary-menu-alignment .submenu-child a {
font-size:16px;
}


/* Show submenu when hovering over top-level parent */
.primary-menu-alignment .parent-menu:hover > .submenu {
  display: block;
 
}

/* Show submenu-child when hovering over any item that contains it */
.primary-menu-alignment .submenu li:hover > .submenu-child {
  display: block;
 
}

/* Position 1st-level submenu below */
.primary-menu-alignment .submenu {
  top: 100%;
  left: 0;
}

/* Position 2nd-level submenu (submenu-child) to the right */
.primary-menu-alignment .submenu-child {
  top: 0;
  left: 100%;
  margin-left: 1px; /* small offset to prevent visual gap */
}

/* Keep nested <li> items correctly aligned */
.primary-menu-alignment .submenu li,
.primary-menu-alignment .submenu-child li {
  position: relative;
  padding-bottom: 15px;
}

.primary-menu-alignment .submenu li:last-child,
.primary-menu-alignment .submenu-child li:last-child {
  padding-bottom: 0;
}



/* ---------------------------------------------------------------------------Mobile menus --------------------------------- */
 .fullscreen-menu-container {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    background-image: linear-gradient(to right, #004b8d 0%, #31006e 100%);
    color: black;
    overflow-y: scroll;
    z-index: 1;
  }

   .fullscreen-menu-container.active {
    display: block;
  }

  .menu-close{
    display:none;
    width:25px;
    z-index: 2;
    position: relative;
  }

  .burger-menu{
    width:25px;
  }

   body.no-scroll {
    overflow: hidden;
  }

    .fullscreen-menu-container ul {
    padding-top: 150px;
    padding-left: 70px;
  }

    .fullscreen-menu-container li {
    padding-bottom: 40px;
    list-style: none;
    margin: 0;
  }

  @media(max-width:1024px){
    .primary-menu-alignment ul{
        display: flex; 
        gap:10px;
        justify-content: flex-end;
        flex-direction:column;
    }
  }





  /* Additional global css */

  .white-yellow-hover a:hover {
    text-decoration: none;
     color: #ffaa00; 
    background: linear-gradient(90deg, #ffffff, #ffaa00);
    background-size: 100% 3px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 5px; /* Acts as offset */
}

.yellow-dash-line{
  position:relative;
   display: inline-block;
white-space:pre-wrap;
  z-index:4;
}

.yellow-dash-line::before {
  content: '';
  position:absolute;
  bottom:0;
  background: #ffaa00;
  background-position: 0 100%;
  height: 7px;
  display: inline-block; /* or inline-inline-, depending on your layout */
  z-index: -1;
  width: 100%;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.yellow-hard-line{
  position:relative;
   display: inline-block;
  z-index:4;
   white-space: pre-wrap;
  padding-right: 0.25em;
}
.yellow-hard-line::before {
  content: '';
  position:absolute;
  bottom:0;
  background: #ffaa00;
  background-position: 0 100%;
  height: 15px;
  display: inline-block; /* or inline-block, depending on your layout */
  z-index: -1;
  width: 100%;
  background-position: 0 100%;
  background-repeat: no-repeat;
 
}

/* ---------------------------- */

/* .mobile-menu-control-wrapper.toggled ~ .mobile-menu {
    display: none;
} */

.inside-navigation{
  color:white;
}

button.menu-toggle{
text-align:right;
}

.inside-navigation .mobile-menu{
  display:none;
} 

.inside-navigation .menu-toggle .gp-icon svg {
    width:1.5em;
    height:1.5em;
}

.sub-menu.toggled-on{
    padding-left:20px
}

/* -----------google review style start ------------*/
.google-reviews-container .google-review-card {
       background-color: var(--white);
        /* box-shadow: 0px 0px 10px 1px rgba
    #0000001a
    (0, 0, 0, 0.1); */
        display: flex
    ;
        flex-direction: column;
        position: relative;
        transform: translate3d(0px, 0px, 0px);
        transition: all 0.6s ease 0s;
        width: 100%;
        z-index: 1;
        border-radius: 10px;
        padding: 40px;
        /* box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1); */
}


.google-reviews-container .google-review-card  .review-quote{
    height: auto;
    max-width: 95px;
    object-fit: contain;
    position: absolute;
    right: 0px;
    top: 0px;
    width: auto;
    z-index: -1;
}

.google-reviews-container .google-review-card:is(:hover,:focus) {
    transform: translate3d(0px, -40px, 0px);
    /* box-shadow: 0px 10px 36px 5px rgba(0, 0, 0, 0.1); */
}
.pop-up.google-reviews-container .google-review-card:is(:hover,:focus) {
    transform: translate3d(0px, 0px, 0px);
    box-shadow: 0px 10px 36px 5px rgba(0, 0, 0, 0.1);
}

.google-reviews-container .google-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom:30px;
}

.google-reviews-container .owl-item {
    display: flex; 
}

.google-reviews-container .google-review-card .google-review-content {
    flex-grow: 1;
}


.google-reviews-container .owl-stage {
    display: flex; 
    align-items: stretch; 
    margin: 60px 0px;
}


.google-reviews-container .google-review-content p {
    margin-bottom:4px;
}

.google-reviews-container .google-review-header .google-stars{
     display: flex;
     column-gap: 5px;
}
.google-reviews-container .google-review-header .google-stars .google-star{
    width:30px !important;
    height:30px;
}
.google-reviews-container .google-logo {
    width: 38px !important;
    height: 38px;
}


.google-reviews-container .google-reviewer-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 45px;
}

.google-reviews-container .google-reviewer-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 27px;
    font-weight: bold;
}

.google-reviews-container .google-reviewer-avatar img{
       width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.google-reviews-container .google-reviewer-date p{
    margin-bottom: 0px;
}
.google-reviews-container .google-reviewer-details .google-reviewer-name h6 {
    margin-bottom:0px;
}

.google-reviews-container .google-reviewer-details {
    display: flex;
    flex-direction: column;
}
.google-reviews-container .google-reviewer-details .google-reviewer-position p{
    margin-bottom:0px;
}
.google-reviews-container .owl-nav button:hover {
    /* background-color: #91b4d5 !important; */
    background-color:var(--dark-yellow) !important;
    width:48px;
    height:48px;
    border-radius: 50%;
    opacity:100%;
}
.google-reviews-container .owl-nav button {
    background-color:var(--dark-yellow) !important;
    width:48px;
    height:48px;
    border-radius: 50%;
    color:#fff !important;
    opacity:50%;
  
}
.google-reviews-container .owl-nav
 {  
    justify-self: center;
    display:flex;
    column-gap: 13px;
    justify-content: center;
}
.google-reviews-container .owl-nav button svg {
    fill: #fff;
    height: 100%;
    width: 23px;
}

.pop-up.google-reviews-container{
    padding:0px;
    width:50%;
    border-radius:15px;
}

.fancybox-slide--html .fancybox-close-small:hover {
    background-color:unset!important;
}

/* Specific shadows for each position */
.owl-carousel .owl-item.first-active .google-review-card:hover {
  box-shadow: 14px 5px 20px 5px rgba(0, 0, 0, 0.1); /* First */
}

.owl-carousel .owl-item.second-active .google-review-card:hover {
  box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.1); /* Middle */
}

.owl-carousel .owl-item.last-active .google-review-card:hover {
  /* box-shadow: -13px 10px 14px 5px rgba(0, 0, 0, 0.1);  */
  box-shadow: -14px 5px 20px 5px rgba(0, 0, 0, 0.1);
}
.owl-carousel .owl-item.first-active .google-review-card {
  box-shadow: 14px 5px 20px 1px rgba(0, 0, 0, 0.05); /* First */
}

.owl-carousel .owl-item.second-active .google-review-card {
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.05); /* Middle */
}

.owl-carousel .owl-item.last-active .google-review-card {
  box-shadow: -14px 5px 20px 1px rgba(0, 0, 0, 0.05);
}

@media(max-width:1024px){
    .pop-up.google-reviews-container {
        width:80% !important;
    }
    .owl-carousel .owl-item.second-active .google-review-card:hover {
       box-shadow: -14px 5px 20px 5px rgba(0, 0, 0, 0.1);
    }
}
@media (max-width: 768px) {
    .google-reviews-container .google-review-card {
        width: 100%;
    }
    .google-reviews-container .owl-stage{
        padding: 30px 0px;
        margin: 20px 0px;
    }
    .google-reviews-container .google-reviewer-info{
        margin-top: 45px;
    }
    .google-reviews-container .google-review-header{
        margin-bottom: 30px;
    }
}

/* google review style end */

/* ---------------------Location ------------------ */
 .location-section{
        display:flex;
        column-gap:4px;
        justify-content:space-between;
       }

            .location-section .owl-nav button{
            background-color: var(--dark-yellow) !important;
            width: 48px;
            height: 48px;
            border-radius: 50% !important;
            color: #fff !important;
            opacity: 50%; 
              }

              .location-section .owl-nav button:hover{
              opacity: 100%; 
              }

             .location-section .owl-theme .owl-nav{
              margin-top:30px;
             }

        .location-section h4{
            margin-bottom:16.5px;
        }

        .location-section p{
            margin-bottom:5px;
            place-self: center;
        }

    @media(min-width:1060px){
            .location-category-group  a {
                width: 160px;
                display: block;
                white-space: nowrap
            }
    }

        @media(max-width:530px){
        .location-section{    
            flex-direction:column;
            }
        }


/*------------------------------------------------ Defence Services---------------------------- */
 .defence-services-post-section{       
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    }



    .defence-services-post-section .single-post {
    background-color: var(--white);
    box-shadow: 0px 0px 2em 0px rgba(82, 82, 82, 0.1);
    padding:48px;

    display: flex;
    flex-direction: column;
    height: 100%; 
    border-radius: 7.5px;
    }

    .defence-services-post-section .single-post > a{
      color:inherit;
    }

    .defence-services-post-section .single-post > a:hover{
     font-weight: normal;
    }

    .defence-services-post-section .post-thumbnail{
        margin-bottom:20px;
    }

    .defence-services-post-section .post-thumbnail img{
        max-width:87px;
    }

    .defence-services-post-section .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    }

   .defence-services-post-section .post-title {
    flex-grow: 1;
   }

   .defence-services-post-section a{
    color:inherit;
}

.defence-services-post-section a:hover{
    font-weight:normal;
    text-decoration: none;
}

 .defence-services-post-section h3{
    margin-bottom:30px;
    text-transform:uppercase;
  }

  .defence-services-post-section .post-excerpt p{
    margin-bottom:0px;
    font-size:16px;
  }

  @media(max-width:1024px){
    .defence-services-post-section{ 
        grid-template-columns: repeat(2, 1fr);
    }

    .defence-services-post-section .single-post {
      padding:38px;
      }
    }

          @media(max-width:790px){
      .defence-services-post-section{ 
         grid-template-columns: repeat(1, 1fr);
         }
    
    }


/* ------------------------Winning Record -------------------- */

   .winning-record-post-section{       
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    }

    @media(max-width:768px){
    .winning-record-post-section{       
    grid-template-columns: repeat(1, 1fr);  
    }
    }

   .winning-record-post-section .single-post{
    background-color: var(--white);
    box-shadow: 0px 0px 2em 0px rgba(82, 82, 82, 0.1);
    padding:48px;
    border-radius:7.5px;
    display: flex;
    flex-direction: column;
    height: 100%; 
    }

    .winning-record-post-section .content{
     display: flex;
    flex-direction: column;
    height: 100%;
    }
    

    .winning-record-post-section .sub-heading p{
       font-size:24px;
    }

    .winning-record-post-section h3,
    .winning-record-post-section .read-more{
    text-transform: uppercase;
    }

        .winning-record-post-section h3{
          margin-bottom: 8px;
        }

    .winning-record-post-section .post-title,
    .winning-record-post-section .sub-heading{
      flex-grow:1;
    }

     .winning-record-post-section .content .post-excerpt p{
      font-size:16px;
     }

    .winning-record-post-section .post-title a{
    color: inherit; 
    }

    .winning-record-post-section .read-more{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color:#000;
    cursor:pointer;
    }
 .winning-record-post-section .read-more:hover{
    color:var(--dark-blue-hover);
    text-decoration: none;
 }


    .winning-record-post-section .read-more a{
    color: inherit;
    font-weight: bold;
    }

    .winning-record-post-section .read-more a:hover{
    color: #004B8D;
    }

  .winning-record-post-section img{
    width:26px;
    height:26px;
  }
   .read-more-records{
    text-align: center;
    margin-top: 75px;
   }

    .read-more-records button{
    font-weight: bold;
   }

   .post-popup{
    width:50%;
    background-color: var(--white);
    padding: 48px !important;
    border-radius: 7.5px;
    }

    .post-popup .post-title h3{
     text-transform: uppercase;
    }

    .post-popup .sub-heading p{
      font-size:24px;
    }

    @media (max-width: 1024px) {
    .post-popup {
        width: 80%;
    }
   }

   @media(max-width:768px){
      .post-popup .sub-heading p{
      font-size:20px;
    }

      .post-popup{
    padding: 38px !important;
    }
   }

   /* -----------------------------------------DUI Resources ------------------------------------ */


   .dui-resources-section,
   .criminal-record-section{       
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    }

    .criminal-record-section{
      position:relative;
      z-index: 1;
    }

    @media(max-width:768px){    
   .dui-resources-section,
   .criminal-record-section{        
    grid-template-columns: repeat(1, 1fr);
    }

    .winning-record-post-section .sub-heading p{
       font-size:20px;
    }

    .read-more-records {
        margin-top: 40px;
    }
      .winning-record-post-section .single-post{
       padding:38px;
    }
    .winning-record-post-section img {
        width: 18px;
        height: 18px;
    }

    }

    .dui-resources-section .single-post,
    .criminal-record-section .single-post{
      display: flex;
      flex-direction: column;
      height: 100%;
    }
      
   .dui-resources-section .content,
   .criminal-record-section .content{
    background-color: var(--white);
    box-shadow: 0px 0px 2em 0px rgba(82, 82, 82, 0.1);
    padding:48px;
    border-bottom-left-radius: 7.5px;
    border-bottom-right-radius: 7.5px;

    display: flex;
    flex-direction: column;
    height: 100%;
    flex:1;
    }
        .dui-resources-section .content  .post-excerpt p,
        .criminal-record-section .content  .post-excerpt p{
      font-size:16px;
    }
  
      .dui-resources-section .read-more img,
      .criminal-record-section .read-more img{
    width:26px;
    height: 26px;
   }
    @media(max-width:1024px){
      .dui-resources-section .content,
      .criminal-record-section .content{
        padding:38px;
      }

      .dui-resources-section .read-more img,
      .criminal-record-section .read-more img{
        width:18px;
        height: 18px;
      }

    }

    .dui-resources-section .content .post-title,
     .criminal-record-section .content .post-title{
      flex-grow:1;
    }

    .dui-resources-section .content .post-title a,
    .criminal-record-section .content .post-title a{
      color:black;
    }

      .dui-resources-section .content .post-title a:hover,
      .criminal-record-section .content .post-title a:hover{
      color:#004b8d;
      text-decoration: none;
    }

    .dui-resources-section .read-more,
    .criminal-record-section .read-more{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    color:#000;
    }

     .dui-resources-section .read-more:hover,
      .criminal-record-section .read-more:hover{
      color: #004b8d;  
      text-decoration: none;
    }
    .dui-resources-section .read-more a,
     .criminal-record-section .read-more a{
    color: black;  
    }

    .dui-resources-section .read-more a:hover,
    .criminal-record-section .read-more a:hover{
    color: var(--dark-blue-hover);  
    }

     .dui-resources-section .post-thumbnail,
     .criminal-record-section .post-thumbnail{
      height:335px;
    }

    .dui-resources-section .post-thumbnail img,
    .criminal-record-section .post-thumbnail img{
      width: 100%;
      height:100%;
      object-fit: cover;
      border-top-left-radius: 7.5px;
      border-top-right-radius: 7.5px;
    }

    .load-more-records{
      text-align: center;
      margin-top: 75px;
    }

    .load-more-records button{
      font-weight:bold;
    }


    .half-split-bg {
    background:
        linear-gradient(to top, #FFF7E6 40%, transparent 40%),
        url('/wp-content/uploads/2025/08/location-background-img.webp');
    background-size: 100% 100%, cover;
    background-position: left top, left center;
    background-repeat: no-repeat;
}

/* ----------------------------------------------------- */
.detail-page-content-section{
  overflow:hidden;
}

.detail-page-content-section::after,
.criminal-code-section::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 768px;
    background:url(/wp-content/uploads/2025/07/resource-detail-page-section-bg-2.webp);
    background-size: cover;
}

@media(max-width:600px){
.quote-img{
  height:60px !important;
}

.quote{
  padding-right:0 !important;
}
}

@media(max-width:400px){
.quote-img{
  height:40px !important;
}
}


/* detail page RELATED resource styles */
.rrdp-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
}

.rrdp-wrapper .rrdp-post-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rrdp-wrapper .rrdp-thumbnail {
    height: 335px;
}

.rrdp-wrapper .rrdp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 7.5px;
    border-top-right-radius: 7.5px;
}

.rrdp-wrapper .rrdp-content {
    padding: 38px;
}

.rrdp-wrapper .rrdp-title {
    flex-grow: 1;
}

.rrdp-wrapper .rrdp-content {
    background-color: var(--white);
    box-shadow: rgba(82, 82, 82, 0.1) 0px 0px 2em 0px;
    border-bottom-left-radius: 7.5px;
    border-bottom-right-radius: 7.5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 48px;
    flex: 1 1 0%;
}

.rrdp-wrapper .rrdp-content .rrdp-excerpt p{
      font-size:16px;
    }

.rrdp-wrapper .rrdp-read-button ,
.rrdp-wrapper .rrdp-title a
{
     color: black;
}

.rrdp-wrapper .rrdp-read-button img{
    width: 26px;
    height: 26px;
}

.rrdp-wrapper .rrdp-read-button p{
  
  margin-bottom: 0px;
}

.rrdp-wrapper .rrdp-read-button{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
}
.rrdp-wrapper .rrdp-read-button:hover,
.rrdp-wrapper .rrdp-title a:hover{
  color: var(--dark-blue-hover);
}
.rrdp-no-resource{
  text-align:center;
}
 @media(max-width:1024px){
      .rrdp-wrapper .rrdp-content{
        padding:38px;
      }
      .rrdp-wrapper .rrdp-read-button img{
          width: 18px;
          height: 18px;
      }

    }
.related-r-section{
  position: relative;
  overflow: hidden;
}
  .related-r-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 768px;
    background: url(/wp-content/uploads/2025/07/left-hammer.webp);
    background-size: cover;
     background-position: bottom;
    z-index:1;
}

@media(max-width:768px){
  .rrdp-wrapper {
    grid-template-columns: repeat(1, 1fr);
}

}

/* Single post page styles start*/

.detail-page-content-section blockquote{
    background-color: var(--white);
    box-shadow: 0px 0px 2em 0px rgba(82, 82, 82, 0.1);
    display: flex;
    justify-content: space-between;
    margin-bottom: 75px;
    margin-top: 75px;
    position: relative;
    z-index: 1;
    border-left: 4px solid var(--dark-yellow);
    border-radius: 5px;
    font-style:normal;
}

.detail-page-content-section blockquote p{
    width: calc(100% - 145px);
    font-size: 30px;
    margin-bottom: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-top: 20px;
}
.detail-page-content-section blockquote::before{
    content:'';
    position:absolute;
    right:0px;
    background-image:url('/wp-content/uploads/2025/07/quote.webp');
    width:145px;
    height:100%;
    background-repeat:no-repeat;
    top:0px;
}

@media(max-width:768px){
    .detail-page-content-section blockquote p{ 
    font-size: 24px;
    }
}

/* single post style end */

/* single LOCATION PAGE style start */
.single-location .quote-content-container blockquote{
  background-color: var(--white);
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 3%);
    display: flex
;
    justify-content: space-between;
    margin-bottom: 75px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-left: 4px solid var(--dark-yellow);
    border-radius: 5px;
    font-style: normal;
    font-size:18px;
    padding:30px;
}

@media(max-width:768px){
  .single-location .quote-content-container blockquote{
    font-size:16px;
  }
}
/* single LOCATION PAGE style end */

/* --------------------------------------------------Location Page ----------------- */

.map-section {
    background-image: linear-gradient(to bottom, #ffffff 4%, rgb(0 0 0 / 0%)), url(/wp-content/uploads/2025/08/map-1920.webp);
    background-repeat: no-repeat;
    background-size: 1400px;
}

@media(max-width:1024px){
.map-section{
  background-size: 1100px;
}
}

@media(max-width:768px){
.map-section{
  background-size: 900px;
  background-position: bottom center;
}
}

/* ---------------------------------------------- Contuct Us ------------- */
.contact-us-form label{
    font-weight:400 !important;
}

.contact-us-form input{
    background-color:white;
}

.contact-us-form input,
.contact-us-form textarea {
   border-radius:5px !important;
}

.contact-us-form .ninja-forms-req-symbol {
    color:orange;
}

.contact-us-form .nf-field-description{
margin-right:0 !important;
font-size: 14px;
}

.contact-us-form #nf-field-7{
  scale: 1.5;
  margin-left: 2px;
}

.contact-us-form h4 a{
 color:inherit;
}

.contact-us-form #nf-label-field-7 {
    display:none;
}

.contact-us-form #nf-field-4{
    background-color: var(--dark-yellow);
    color: var(--black);
    display: inline-block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.3s ease 0s;
    border: 2px solid var(--dark-yellow);
    border-radius: 10px;
    padding: 20px 30px;
}

.contact-us-form #nf-field-4:hover
 {
    background-color: var(--dark-yellow-hover);
    color: var(--black);
    transform: translate3d(0px, -5px, 0px);
    border: 2px solid var(--dark-yellow-hover);
}

.contact-form-bg-map {
    background-position: top right 20%;
    background-image: linear-gradient(to bottom, white 0%, #ffffffab 40%,#00000000 , #00000000), url(/wp-content/uploads/2025/08/map-1920.webp);
    background-repeat: no-repeat;
    background-size: 1200px;
}

@media(max-width:1024px){
  .contact-form-bg-map{
background-size: contain;
  }
}

.footer-cpy-right-section a{
    color:#004b8d !important;
}

.footer-cpy-right-section a:hover{
    color:#004b8d;
    font-weight: normal;
}

.about-us-popup-section {
    width:80%;
    border-radius:10px;
    max-height: 80%;
}

.about-us-popup-section .modal-content p{
    margin-bottom:20px;
}

.about-us-popup-section .link img{
  width:30px;
}


.team-member h3,
.team-member p{
    color:black;
}

@media(max-width:1024px){
   .about-us-popup-section {
    width:80%;
  }
}


.legal-disclaimer p{
   font-size:14px;
    color:#343a40;
}

.archive.category .page-title,
.archive.category .page-header {
    display:none;
}

.about-us-popup-section .link{
  margin-top:20px;
}

.location-call-now a{
    color:white;
    font-size:24px;
    font-weight:bold;
}

@media(max-width:768px){
  .location-call-now a{
    font-size:20px;
}
}

.location-call-now {
    margin-bottom:24px;
}

.location-call-now a:hover {
    text-decoration: none;
    color: #ffaa00;
    background: linear-gradient(90deg, #ffffff, #ffaa00);
    background-size: 100% 3px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 5px;
}

@media(min-width:1024px) and (max-width:1400px){
.adjusted-size{
  font-size:18px;
}
}

.team-member:hover h3,
.team-member:hover p{
    color:#004b8d;
}


.gb-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease !important;
  padding-top: 0;
  padding-bottom: 0;
}

.gb-accordion__item.gb-accordion__item-open .gb-accordion__content {
  max-height: 1000px; 
  padding-top: 15px;
  padding-bottom: 15px;
}
