@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    background-color: #fff;
}

h2{
    margin-bottom: 15px;
    font-size: 36px;
    margin-top: 50px;
    max-width: 80%;
}

h3{
    margin-bottom: 10px;
}

p{
    
    color: #666;
}

.nav-active{
    padding: 3px 5px;
    color: white !important;
    background-color: #005F86;
    border-radius: 5px;
    font-weight: 100;
}
nav .upper--socials{
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    gap: 20px;
}
nav .loower--contacts{
    display: flex;
    justify-content: flex-end;
    background-color: #005F86;
    width: 100%;
    gap: 20px;
}

nav {
    background-color: #005F86; /* Your desired nav background color */
    position: relative;
    height: 145px; /* Your desired nav height */
    width: 100%; /* Full width of the container */
    overflow: hidden; /* Ensures pseudo-elements don't cause scrollbars */
    padding-top: 40px;
    z-index: 3; /* Ensure the nav is above other content */
    margin-top: -20px;
    transition: height 0.6s ease-in-out; /* Smooth transition for the height change */
  }

  nav::before{
    content: '';
    position: absolute;
    background-color: white;
    width: 100%;
    height: 40px;
    border-radius: 0 0 100% 100%;
  }

  nav::before {
    top:0;
  }

  nav::after {
    content: '';
    position: absolute;
    background-color: white;
    width: 100%;
    height: 60px;
    border-radius: 100% 100% 0 0;
    bottom: 0;
  }

  /* Hide the bottom curve on the home page */
  .home-page nav::after {
    display: none;
  }


nav .lower{
    display: flex;
    padding: 3px 0;
    justify-content: space-around;
    max-width: 1440px;
    margin: 0px auto;
    background-color: #fff;
    border-radius: 30px;
    width: 80%;
    margin-top: 5px;
    font-size: 14px;
    
}

.upper{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    position: relative;
    z-index: 6;
}
.nav-container a img{
    width: 90%;
    min-width: 400px;
}
nav .lower a{
    text-decoration: none;
    color: black;
    padding: 5px;
}
.search form{
  display: flex;
}
.sb-input{
    border: none;
    height: 50px;
    width:90%;
    max-width: 400px;
    outline: none;
    padding-left: 40px;
    border-radius: 35px 0 0 35px;
    color: rgb(110,110,110);
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    text-align: center;
    border: #000 1px solid;
}
.sb-button{
    text-align: center;
  border: none;
  height: 50px;
  width: 70px;
  background: white;
  border-radius: 0 35px 35px 0;
  color: rgb(170, 170, 170);
  font-size: 1.4rem;
  border: #000 1px solid;
}
.sb-button img{
  width: 32px;
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
    gap: 20px;
}
.nav-container h6{
    font-size: 14px;
    font-weight: 900;
    color: #005F86;
}
.nav-container a{
    font-size: 24px;
    font-weight: 500;
    color: #005F86;
}
.cent{
    justify-content: center;
    gap:10%
}
.open-menu{
    display: none;
}
.search--bar{
    background: white;
    border-radius: 5px;
    padding: 5px;
}

.search--bar button{
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    color:#fff;
    background-color: #005F86;
}

footer{
    padding: 50px 10px;
    color: white;
}

.footer--upper{
    display: flex;
    justify-content: space-around;
    max-width: 1440px;
    margin: 5px auto;
}
.footer--upper--left{
    width: 50%;
}
.footer--upper--right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 3px;
}
.footer--upper--right form {
    width: 60%;
}
.footer--upper--right form input {
    width: 70%;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgb(56, 56, 56);
}
.footer--upper--right form button {
    width: 28%;
    min-width: 84px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgb(56, 56, 56);
    color: #fff;;
    background-color: #005F86;
}
.footer--upper--right p {
    font-size: 12px;
}

.footer--mid{
    display: flex;
    margin: 5px auto;
    margin-top: 50px;
    max-width: 1440px;
}
.footer--mid .col {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px 10px;
}
.footer--mid .col a{
    color:#333;
    text-decoration: none;
    margin-left: 10px;
}
.footer--lower{
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 2px solid #333;
    max-width: 1440px;
    margin: 5px auto;
    margin-top: 50px;
}
.footer--lower a {
    color: #333;
    text-decoration: none;
    margin-right: 10px;
}
.footer--lower a:last-child{
    margin-right: 0;
}

footer h3{
    color:#333
}


/***********  Main Page  ************/

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;

    width: 100%;
}

.hero-bg-big{
    
  /* Creates an ellipse at the top */
    width: 100%;
}
.hero-bg-sm{
    width: 100%;
}
.split{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
}
.split-neg-100{
    margin-top: -90px;
}
.split--left{
    width: 60%;
    padding: 20px;
    /* background-color: #E2EEFF; */
    border-radius: 10px;
}
.split--right{
    width: 40%;
    display: flex;
    justify-content: right;
    align-items: center;
}
.split--right img{
    max-width: 500px;
    aspect-ratio: 1/1;
    /* height: 458px; */
    max-height: 500px;
}

h1{
    font-weight: 100;
    font-size: 40px;
}
h3{
    text-align: center;
}
h1 span{
    font-weight: 700;
    color: #005F86;
}
p{
    line-height: 150%;
}

hr{
    width: 80%;
    border:1px solid rgb(91, 91, 91);
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn{
    border: 2px solid #005F86;
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    background-color: #005F86;
    color: #fff;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
}
.btn[disabled] {
    background-color: #ccc; 
    border-color: #ccc; 
    color: darkgray;
    pointer-events: none;
}

/* Button hover animation */
.btn:hover {
    background-color: #1d2b55;
    border: 2px solid #1d2b55;
}
.btn-sec{
    border: 2px solid #005F86;
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    background-color: #fff;
    color: #005F86;
}
.btn-in{
    border: 2px solid #ffffff;
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    background-color: none;
    color: #ffffff;
}
.margin-top-10{
    margin-top: 10px !important;
}
.margin-top-25{
    margin-top: 25px !important;
}
.margin-top-50{
    margin-top: 50px !important;
}
.margin-top-100{
    margin-top: 100px !important;

}
.logo-section{
    padding-top: 75px;
    padding-bottom: 75px;
}
.logo-section h3{
    padding-left: 0px;
}
.logo img{
    height: 135px;
}
.logos{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    height: 150px;
}
.logos img{
    width: inherit;
    opacity: 0.4;
    transition: all 0.2s ease-in-out;
}
.logos img:hover{
    width: inherit;
    opacity: 1;
}
.types{
    background-image: url("../images/yellow-background.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 50px;
}
.split-3-col{
    width: 22%;
    text-align: center;
    max-width: 250px;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}
.split-3-col:hover{
    background-color: rgba(255, 255, 255, 0.774);
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1.05);
}
.split-3-col img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
}
.split-3-col h2{
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    max-width: 100%;
    color: #000;
}
.split-3-col a {
    margin-top: 10px;
    margin-bottom: 10px;
}
.split-top-align{
    align-items: flex-start;
}
.container {
    display: flex;
    width: 100%;
    overflow: hidden; /* Hide any overflow */
}

.left, .right{
    width: 50%;
    padding: 20px;
}
.right{
    display: flex;
    justify-content: flex-end;
}

.text-left{
    text-align: left;
}
.margin-bottom-25{
    margin-bottom: 25px;

}
.sector-p{
    line-height: 150%;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.main-cta{
    background: url("../images/cta-bg.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    padding: 25px;
    height: 300px;
    display: flex;
    align-items: center;
}

.main-cta h2{
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 10px;
    font-weight: 700;
}
.main-cta p{
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 150%;
}


  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
  }

  .swiper {
    height: 100%;
    margin: 20px auto;
    padding-bottom: 50px !important;
  }

  .swiper-pagination {
    bottom: 10px !important;
  }

  /* Customizing the navigation buttons */
.swiper-button-next, .swiper-button-prev {
    background-image: url('../images/Button.svg'); /* Path to your custom icons */
    width: 50px; /* Width of your custom buttons */
    height: 50px; /* Height of your custom buttons */
    background-size: contain;
    background-repeat: no-repeat;
}

/* Adjusting the position */
.swiper-button-next {
    right: 10% !important;
}

.swiper-button-prev {
    left: 10% !important;
}

.rev_swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .rev_swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2) !important;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rev_swiper-button-next, .rev_swiper-button-prev {
    color: #000;
  }

  .rev_swiper-button-next {
    right: 10% !important;
  }

  .rev_swiper-button-prev {
    left: 10% !important;
  }

  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: '' !important;
  }
  .swiper-button-next, .swiper-button-prev {
    width: unset !important;
    width: 50px !important;
  }
  .swiper-button-prev {
    
transform: rotate(180deg);
  }




  /* Reviews */
  .reviewer{
    display: flex;
    margin-bottom: 25px;
    margin-top: 25px;
    width: -moz-fit-content;
    width: fit-content;
    gap: 20px;
    align-items: center;
    border-right: #000 2px solid;
    padding-right: 25px;
  }

  .testimonial p{
    text-align: left;
  }

  .testimonial img{
    height: 19px;
    width: unset;
    object-fit: unset;
    margin-bottom: 25px;
  }

  .reviewer img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0px;
  }
  .reviewer--text{
    font-size: 14px;
  }

.flow-img-4{
    display: none;
}
.search-container-mobile{
    display: none;
}

/* Modal Overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }
  
  /* Modal */
  .modal {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
  }
  
  /* Modal Content */
  .modal-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  /* Search Input */
  .search-input {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  /* Search Button */
  .search-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #005F86;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Close Button */
  .close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Show Modal Animation */
  .modal-open .modal {
    transform: translateY(0); /* Animate into view */
  }
  
  /* Modal Appear Animation */
  .modal-opening {
    animation: modalIn 0.5s forwards;
  }
  
  @keyframes modalIn {
    0% { transform: scale(0.5) translateY(100vh); opacity: 0; }
    60% { transform: scale(1.1) translateY(-20px); opacity: 1; }
    100% { transform: scale(1) translateY(0); }
  }
  
  /* Modal Disappear Animation */
  .modal-closing {
    animation: modalOut 0.5s forwards;
  }
  
  @keyframes modalOut {
    0% { transform: scale(1) translateY(0); }
    40% { transform: scale(1.1) translateY(-20px); }
    100% { transform: scale(0.5) translateY(100vh); opacity: 0; }
  }
  
  /* Media Queries for Mobile Optimization */
  @media screen and (max-width: 700px) {
    .modal {
      width: 90%;
    }
    .breadcrumbs{
        margin-top:-10px;
    }
  }

.quad-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 50px;
}

.col--quad{
    width: 48%;
    max-width: 48%;
    display: flex;
    padding: 35px;
    border-radius: 5px;
    gap: 10px;
}
.col--quad h3{
    text-align: left;
}
.col--quad img{
    height: 100px;
}

.breadcrumbs{
    float: right;
    margin-top: -50px;
    position: relative;
    z-index: 9;
    font-size: 12px;
    padding-right: 20px;
        padding-right: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
}
.breadcrumbs a{
    color: #000;
    text-decoration: none;
}
.breadcrumbs a:last-of-type{
    color: #005F86;
}

.trusted--container{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 25px;
    margin-bottom: 50px;
}
.trusted--left img{
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
    width: 100%;
}
.trusted--right--logos{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trusted--right h2 span{
    color: #005F86;
}

.trusted--right--logos img{
    width: 40%;
}
.trusted{
    margin-bottom: 50px;
    box-sizing: border-box;
}

.types{
    margin-top: 50px;
}

.trusted--left, .trusted--right{
    width: 50%;
}



.container-3{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 100px;
}
.col--triple {
    width: 30%;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    aspect-ratio: 1/1;
}

.col--triple img {
    width: 100%;
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.col--triple:hover img {
    transform: scale(1.2);
    cursor: pointer;
}

.hover-text {
    position: absolute;
    width: 100%;
    bottom: 0; /* Position the text at the bottom or adjust as needed */
    left: 0;
    color: #fff; /* Choose text color that stands out */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    text-align: center;
    padding: 10px 0; /* Adjust padding to control the text's area */
    /*opacity: 0;*/
    transition: opacity 0.5s ease;
    pointer-events: none; /* Prevents the text from interfering with image hover */
}

.col--triple:hover .hover-text {
    opacity: 1; /* Make text appear on hover */
}
/* .how-we-can-help{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.how-we-can-help a {
    display: inline-block;
    width:30%;
}

.how-we-can-help a img{
    width: 100%;
    margin-bottom: 25px;
} */

.ben_container {
    display: flex;
    flex-direction: column; /* Stack sidebar and content vertically on small screens */
    width: 100%;
    margin: auto;
}

.sidebar {
    order: 2; /* Sidebar comes after the content on small screens */
}

.content {
    order: 1;
    padding: 15px; /* Reduced padding for small screens */
    background-color: #ffffff;
}
#menu{
    list-style-type: none;
}
.menu-item {
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background-color: #D8D8D8;
    transition: background-color 0.3s; /* Smooth transition for hover and active states */
    margin-bottom: 10px;
    border-radius: 10px;
}

.menu-item:hover, .menu-item.active {
    background-color: #005F86; /* Adjust color as needed */
}
.menu-item.active{
    color: #fff;
}
.content-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Smooth transition for fade-in effect */
}

.content-section.active {
    display: block;
    opacity: 1;
}

/* Keyframes for the fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Apply the animation using the class */
.content-section.animate-in {
    animation: fadeIn 0.5s forwards;
}
@media (min-width: 768px) {
    .ben_container {
        flex-direction: row; /* Side-by-side layout for larger screens */
    }

    .sidebar {
        order: 1;
        flex: 1;
    }

    .content {
        order: 2;
        flex: 3; /* Give more space to the content on larger screens */
        padding: 0px 30px;
    }

    .menu-item {
        padding: 15px;
        font-size: 16px; /* Larger font size for larger screens */
    }
}
.container-3{
    display: flex;
    flex-wrap: wrap;
}
.col--triple{
    width: 30%;
    margin-bottom: 25px;
}
.col--triple span {
    width: 100%;
    background-color: #005F86;
    display: block;
    padding: 8px;
    text-align: center;
    color: white;
    border-radius: 25px;
    position: relative;
    bottom: 35px;
}

#contact-form{
    border-radius: 42px;
background: #005F86;

box-shadow: -13px 18px 38.6px 0px rgba(0, 0, 0, 0.25);
width: 100%;
padding: 30px;
}
#contact-form label{
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    width: 100%;
    margin-bottom: 5px;
    display: block;
}
#contact-form input{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid white;
    margin-bottom: 10px;
}
#contact-form textarea{
    width: 100%;
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: 2px solid white;
    margin-bottom: 10px;
}

#contact-form button{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid white;
    margin-bottom: 10px;
    background-color: #fff;
    color: #005F86;
    font-weight: 700;
}

.call-ico-contact{
    display: flex;
    width: 100%;
    font-size: 2em;
    text-decoration: none;
    font-weight: 100;
    margin-bottom: 25px;
    color: #005F86;
}

.call-ico-contact img{
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.location{
    display: flex;
    width: 100%;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: 100;
    margin-bottom: 25px;
    color: #005F86;
    align-items: flex-start;
    gap: 10px;
}

.opening-hours{
    display: flex;
    width: 100%;
    font-size: 1.25em;
    text-decoration: none;
    font-weight: 100;
    margin-bottom: 25px;
    color: #686868;
    align-items: flex-start;
    gap: 10px;
}
.opening-hours--text{

}
.opening-hours--text h4{

}
.opening-hours--text table{
    width: 100%;
}
.opening-hours--text table tr{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}
.opening-hours--text table tr.active{
    font-weight: 700;
    color: black;
}
.opening-hours--text table tr td{
    width: 125px;
}

header {
    height: 100%;
    position: relative; /* Keep the header at a relative position */
}

header img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 300px;
}

header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1200px; /* Same max-width as the wrapper */
    width: 100%;
    margin-left: auto; /* Center the h1 like the wrapper */
    margin-right: auto;
    padding: 0 20px; /* Same side padding as the wrapper */
    color: white;
    font-weight: 700;
    font-size: 40px;
    text-align: left;
}

.search--full--site{
    width: 100%;
    border: 1px solid grey;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding:3px;
    padding-left: 20px;
}
.search--full--site input{
    width: 90%;
    padding: 20px;
    font-size: 16px;
    border:0px;
}

.catagory-container{
    display: flex;
    justify-content: space-between;
}

.catagory{
    width: 20%;
}
.catagory h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.catagory img{
    width: 100%;
    border-radius: 10px;
}

.product-result{
    display: flex;
}
.refine-search{
    width: 20%;
    padding-right: 10px;
    border-right: 1px grey solid;
}
.refine-search h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px grey solid;
    width: -moz-fit-content;
    width: fit-content;
}
.refine-search h4{
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 10px;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
}
.product-container{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding-left: 30px;
}
.product{
    width: 30%;
    padding: 5px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    color: black;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}
.product:hover{
    transform: scale(1.03);
}
.product img{
    width: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.refine-search--item--options{
    margin-left: 10px;
    font-size: 16px;
}
.option{
    margin-bottom: 10px;
    font-size: 16px;
}
.refine-search--item{
    margin-top: 20px;
    padding: 5px;
    border-bottom: 1px rgb(235, 250, 255) solid;
}

.cta-2{
    background-color: #005F86;
    color: white;
    padding-bottom: 50px;
    padding-top: 50px;
    color: white;
}
.cta-2 p{
    background-color: #005F86;
    color: white;
    margin-bottom: 15px;
}
.product-categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.category-sm{
    font-size: 10px;
    padding: 5px;
    background-color: #9dffc9;
    border-radius: 5px;
}




































@media screen and (max-width: 1145px) {
    .split--right img{
        width: 95%;
    }
    .split--right{
        align-items: center;
    }
    .main-cta{
        background-size: auto 100%;
    }
}

  /* Media Queries */
  @media screen and (max-width: 1024px) {
    .split--right{
        width: 40%;
    }
    .split--left{
        width: 60%;
    }
    footer{
        padding: 20px;
    }
    .footer--upper--right form{
        width: 80%;
    }
    .col--triple-v2{
      min-height: 325px;
    }
  }

  @media screen and (max-width: 929px) {
    .call-us, .mail-us{
        flex-direction: column;
        font-weight: 700;
        gap: 5px;
    }
    .call-us--text > :first-child, .mail-us--text > :first-child{
        display: none;
    }
    .call-us--text, .mail-us--text{
        margin-left: 0;
        width: unset;
    }
    .mail-us{
        align-items: unset;
        width: -moz-fit-content;
        width: fit-content;
    }
    .mail-us img{
        height: 24px;
    }
    .mail-us img, .call-us img{
        height: 24px;
    }
    .call-us{
        align-items: unset;
        width: -moz-fit-content;
        width: fit-content;
    }
    .left{
        width: 60%;
    }
    .right{
        width: 40%;
    }
    .flow-img{
        width: 250px;
        object-fit: cover;
        object-position: left;
    }
    .cta-2{
        background-image: url("../images/cta-2.png");
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: top;
        padding-top: 75px;
        color: white;
    }
  }

  @media screen and (max-width: 832px) {
    .call-us--text > :last-child, .mail-us--text > :last-child{
        display: none;
    }
    .call-us, .mail-us{
        justify-content: center;
    }
    nav .lower a {
        font-size: 14px;
    }
    h1{
        font-size: 32px;
    }
    p{
        font-size: 14px;
        line-height: 125%;
    }
  }
  @media screen and (max-width: 768px) {
      .container-3-v2{
         flex-wrap: wrap;
      }
      .col--triple-v2, .col--quad-v2{
        width: 47% !important;
        margin-bottom:25px;
      }
      .cs_split{
        flex-direction: column;
      }
      .cs_left{
          width:100% !important;
      }
      .cs_right{
          width:100% !important;
      }
      .rever{
    flex-direction: column !important;
      }
    .split--left {
        width: 65%;
    }
    .split--right {
        width: 35%;
    }
    .split--right img{
        width: 100%;
    }
    .logos{
        flex-wrap: wrap;
    }
    .logos img{
        width: 30%;
        padding: 10px;
    }
    .split {
    flex-wrap: wrap;
    justify-content: space-around;
    }
    .split-3-col{
        width: 50%;
        margin-bottom: 25px;
    }
    .footer--upper--right form button{
        width: 100%;
    }

    .footer--upper--right form input{
        width: 100%;
        margin-bottom: 10px;
    }
    .footer--lower{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .footer--mid {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer--mid .col {
        width: 33%;
        margin-bottom: 25px;
    }
  }

  @media screen and (max-width: 700px) {
    .how-we-can-help a{
        width: 45%;
    }
    
    .col--triple{
        width: 45%;
    }
    .upper--socials{
        padding-right: 0px;
    }
    #searchInput{
        display: none;
    }

    .lower {
        /* Initially hide the menu */
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
        padding: 0 !important;
        width: 100%;
        margin: 0 auto;
        border-radius: 0px !important;
        border-top: 2px solid #005F86;
    }
    .lower a{
        margin-bottom: 5px;
        border-bottom: rgb(216, 216, 216) 1px solid;
    }
    .lower.open {
        /* Max height during the transition. Adjust as needed */
        max-height: 600px; /* This should be high enough to show all your content */
        
    border-radius: 10px !important;
        padding: 15px !important; 
    }

    .open-menu {
        display: block;
        background-color: #fff;
        padding: 5px;
        text-align: center;    
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        gap: 10px;
        width: 95%;
        margin-top: 4px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    
    }
    .open-menu {
        /* Styles for the menu container */
        cursor: pointer;
    }
    
    .menu-line {
        /* Styles for each line of the menu */
        height: 2px;
        width: 30px;
        background-color: black;
        margin: 5px 0;
        transition: transform 0.3s ease;
    }
    
    /* Transformations for the cross */
    .open-menu.active .menu-line:nth-child(1) {
        /* Rotate the first line to form one part of the cross */
        transform: rotate(45deg) translateY(10px);
    }
    
    .open-menu.active .menu-line:nth-child(2) {
        /* Hide the second line */
        opacity: 0;
    }
    
    .open-menu.active .menu-line:nth-child(3) {
        /* Rotate the third line to form the other part of the cross */
        transform: rotate(-45deg) translateY(-10px);
    }

    .split{
        flex-direction: wrap;
    }
    .split--left{
        width: 100%;
        padding-top: 25px;
    }
    .split--right{
        width: 100%;
        padding-top: 0px;
    }
    .split--right img{
        padding: 50px;
    }
    .split-neg-100{
        margin-top: 0px;
    }
    .wrapper{
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-bg-big{
        height: 330px;
        object-fit: cover;
    }

    .container {
        flex-direction: column;
    }
    .left, .right{
        width: 100%;
    }
    .flow-img {
        display: none;
    }
    .flow-img-4 {
        display: block;
        width: 100%;
    }
    .search-container-mobile{
        display: block;
    }
    .search-container{
        display: none;
    }
  }

  
  @media all and (max-width: 656px) {
    .trusted--container{
        flex-direction: column-reverse;
    }
    .trusted--left, .trusted--right{
        width: 100%;
    }
    .quad-container{
        flex-direction: column;
    }
    .col--quad{
        width: 100%;
        max-width: 100%;
    }
  }
  @media all and (max-width: 540px) {
    .upper--socials{
        display: none !important;
    }
    nav .upper{    
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .loower--contacts{
        justify-content: space-around !important;
    }
    .split{
        flex-direction: column;
        
    }
    .left, .right{
    padding: 0px;
    margin-bottom: 25px;}
    .split-3-col{
        width: 100%;
        max-width: 100%;
    }
    .footer--upper{
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 25px;
    }
    .footer--upper--left, .footer--upper--right{
        width: 100%;
    }
    .footer--upper--left h3.text-left{
        text-align: center;
    }
    .footer--upper--right{
        
    align-items: center;
    }
    .footer--mid .col{
        width: 50%;
    }
  }
  
  @media all and (max-width: 500px) {
  .col--triple{
      width: 100%;
    }
    .how-we-can-help a{
        width: 100%;
    }
    .header h1{
        top:30%;
    }
    }
  @media all and (max-width: 425px) {
    .footer--mid .col {
        width: 100%;
    }
    .footer--mid .col h3{
        
        text-align: left;
    }
  }









.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.wave img{
    position: relative;
    z-index: -1;
    width: 100%;
}
.main-header{
    position: relative;
    margin-top: -61px;
    z-index: 6;
    margin-bottom: 50px;
}
.large-header-img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
    position: relative;
    clip-path: ellipse(99% 100% at 50% 100%);
}
.med-header-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 20% 80%;
    z-index: -2;
    position: relative;
}
.small-header-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: 20% 80%;
    z-index: -2;
    position: relative;
}

.sector-box {
    position: relative;
    padding: 5px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

.more-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: none;
    cursor: pointer;
}

.sector-box:hover .more-info {
    display: block;
    transition: all 0.2s ease-in-out;
}

/* Optional: Add some hover effect to the sector box itself */
.sector-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.sector-box:hover .more-info:hover {
    color: #3f4b6d;
}

.slider {
    position: relative;
    width: 500px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    overflow: hidden;
}

.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    border-radius: 25px;
    transition: opacity 1s ease-in-out;
}

.slider img:first-child {
    opacity: 1;
}



/*PRODUCT PAGE*/
.product-split{
    display: flex;
    gap: 3%;
}
.product-split--left, .product-split--right{
    width: 50%;
}
.product-image img{
    width: 100%;
    border-radius: 25px;
}

.pGal_swiper-container {
    /* Your styles here */
}

.pGal_swiper-container .swiper-slide{
    width: 400px !important;
}

.call2a{
    width: 100%;
    background-image: url("../images/cta-2.png");
    background-repeat: no-repeat;
    background-size: 100%;
    color: white;
    padding-top: 50px;
}

.no-margin{
    margin: 0px;
    padding-top: 10px;
}

.noflex{
    display: block;
}

.gap-3{
    gap: 3%;
}

.sector--image{
    max-width: none !important;
    max-height: none !important;
    width:100% !important; 
    max-height: 450px !important; 
    object-fit:cover !important; 
    border-radius:10px !important;
}

.align-content-center{
    align-items: center;
}

.blue-section{
    background-color: #005F86;
    color: white;
    padding: 50px;
}

.benefit { margin-bottom: 20px; }
    .benefit h3 { color: #007BFF; text-align: left;}
    .benefit p { margin: 0; padding-left: 10px; }

    .content h2{
        margin-top: 0px;
    }


    .container-3-v2 {
        display: flex;
        gap: 3%;
        margin-top: 50px;
    }
    
    .col--triple-v2 {
        position: relative;
        width: 33.33%; /* Adjust based on your layout */
    }
    
    .col--triple-v2 img {
        width: 100%;
        display: block; /* Ensures no extra space below the image */
    border-radius: 25px;
    height: 100%;
    object-fit: cover;
    }
    
    .hover-text-v2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(16, 14, 138, 0.637); /* Semi-transparent background */
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        padding: 25px;
        border-radius: 25px;
    }
    
    .hover-text-v2 span {
        font-size: 2em;
        font-weight: 300;
        margin-bottom: 0px;
    }
    .hover-text-v2 hr {
        display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
    }
    .hover-text-v2 button {
        padding: 10px 20px; /* Adjust button padding */
        border: none;
        background-color: rgb(255, 255, 255); /* Example button color */
        color: #000000;
        cursor: pointer;
        width: 80%; /* Changed to auto */
        max-width: 80%; /* Optional: limits button width */
        border-radius: 10px;
        margin-top: auto; /* Pushes the button to the bottom */
        align-self: center; /* Center the button horizontally */
        transition: all 0.2s ease-in-out;
    }
    .hover-text-v2 button:hover{
        background-color: rgb(183, 201, 255);
    }
    .col--triple-v2:hover .hover-text-v2 {
        opacity: 1;
    }
    .container-4{
        display: flex;
        flex-wrap: wrap;
        gap: 2%;
    }

    .col--quad-v2{
        width: 23%;
        margin-bottom: 15px;
    }

    .col--quad-v2 img{
        width: 100%;
    }

    .cs_split{
        display: flex;
        gap: 3%;
        align-items: center;
    }

    .cs_left{
        width: 30%;
    }
    .cs_left img{
        width: 100%;
    }
    .cs_right{
        width: 70%;
    }
    .cs_right h3{
        text-align: left;
        font-size: 30px;
        margin-bottom: 10px;
    }
    .cs_right p{
        margin-bottom: 25px;
    }
    .h22{
        margin-top: 50px;
        font-weight: 100;
        font-size: 36px;
        margin-bottom: 50px;
    }

    .rever{
        flex-direction: row-reverse;
    }

    .no-margin{
        margin: 0px;
    }

    .no-padding{
        padding: 0px;
    }

    .services{
    }

    .services h3{
        text-align: left;
        font-size: 1.5em;
        padding: 5px;
        background-color: white;
    }

    .services p{
        margin-bottom: 25px;
        padding: 5px;
    }

    .services img{
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .services-container{
        gap: 3%;
    }

    .delete-image-btn {
        border: none;
        background-color: red;
        color: white;
        cursor: pointer;
        padding: 5px;
        border-radius: 5px;
        height: 25px;
        width: 25px;
        margin-left: -40px;
        margin-right: 15px;
        margin-top: 5px;
    }
    
    .pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination a.active {
    background-color: #007bff;
    color: white;
}




.refine-search-toggle {
        display: none; /* Initially hidden, will be shown via JS */
        cursor: pointer;
    }
@media (max-width: 600px) {
    .refine-search-closed {
    height: 0px !important; /* Force collapse */
    overflow: hidden; /* Hide inner content */
    transition: height 0.5s ease; /* Smooth transition */
}

.refine-search-open {
    height: 100% !important; /* Force expand */
    transition: height 0.5s ease; /* Smooth transition */
}

    .refine-search-toggle {
        display: block; /* Initially hidden, will be shown via JS */
        cursor: pointer;
    }
    .product-result{
        
    flex-direction: column;
    }
    .refine-search{
        width:100%;
        border-right:0px;
    }
    .product-container{
        width:100%;
        padding:0px;
    }
    .product{
        width: calc(50% - 5px);
        box-sizing:border-box;
        height: unset;
    }
    .product img{
        width:100%;
    }
}

@media (max-width: 700px) {
    .product-split{
        flex-direction:column;
    }
    .product-split--left, .product-split--right{
        width:100%;
    }
}

.hover-text{
    
    font-size: 1.25em;
    letter-spacing: 2px;
    font-weight: 400;
    
    background-color: #005F86bf;
}
.how-we-can-help a{
    
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    aspect-ratio: 1 / 1;
    margin-bottom:25px;
}
.how-we-can-help a img{
    width:100%;
    height:100%;
    
}

.modal-prefix {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .modal-content-prefix {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  .close-prefix {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-prefix:hover,
  .close-prefix:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .image-gallery-prefix img {
    width: 100%;
    max-width: 300px;
    margin-right: 10px;
    border-radius: 10px;
}

.search_product{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.search_product img{
    width: 100%;
    max-width: 150px;
    margin-right: 10px;
    border-radius: 10px;
}

.logo img{
    height: 60px;
}

.toggle-button{
        width: 100%;
    padding: 10px;
    background-color: white;
    border: 3px #005F86 solid;
    border-radius: 10px;
}

#search-btn{
        width: 10%;
    padding: 10px;
    background-color: #005F86;
    border: 0px;
    border-radius: 5px;
    height: 100%;
    transition:all ease-in-out 0.3s;
}
#search-btn:hover{
    background-color: #1d2b55;
}

.col--quad-v2 a img{
    border-radius:10px;
}










/*PGSW*/
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    display: block;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    color: #333;
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 200px; /* Fixed height for all images */
    object-fit: cover; /* Ensures the image covers the area without distorting the aspect ratio */
    display: block;
}

.product-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card on hover */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Increase shadow for a lifting effect */
}

@media (max-width: 600px) {
    .products {
        grid-template-columns: 1fr;  /* Stacks cards on smaller screens */
    }
}


.client-categories {
    padding: 20px;
}

.client-categories h2 {
    color: #333;
}

.client-categories p {
    color: #666;
    margin-bottom: 20px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    box-sizing: border-box; /* Ensures padding doesn't affect the grid layout */
}

.category {
    text-decoration: none;
    color: black;
    background: white; /* Adds a background to each category for better readability */
    border: 1px solid #ccc; /* Adds a slight border for definition */
    border-radius: 8px; /* Rounds the corners for a softer look */
    overflow: hidden; /* Keeps the image within the bounds of the border radius */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Soft shadow for depth */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions for hover effects */
}

.category img {
    width: 100%;
    height: 150px; /* Increased height for better visual impact */
    object-fit: cover; /* Ensures images cover the area neatly without distortion */
}

.category h3 {
    padding: 10px 15px; /* Padding around the title for better spacing */
    text-align: center; /* Ensures title is centered */
    font-size: 16px; /* Sets an appropriate font size for readability */
    margin: 0; /* Removes default margin */
    background: rgba(255, 255, 255, 0.8); /* Light background for text for better legibility */
}

.category:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Larger shadow on hover for a 'lifting' effect */
    transform: translateY(-5px); /* Slight upward movement on hover for interaction feedback */
}


.category h3 {
    margin-top: 8px;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 18px;
    border-radius: 5px;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Optional: Add a light grey background on hover */
.accordion:hover {
    background-color: #ccc;
}

.panel {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.filter-category h4 {
    margin-bottom: 8px;
}

.toggle-buttons {
    margin-bottom: 10px; /* Spacing between each category */
}

.toggle-button {
    background-color: #FFFFFF;
    color: #333;
    border: 2px solid #CCCCCC;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    margin-right: 8px; /* Spacing between buttons */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 10px;
    width: auto;
}

.toggle-button.active, .toggle-button:hover {
    background-color: #0056b3;
    color: #FFFFFF;
    border-color: #0056b3;
}


@media screen and (max-width: 800px) {
    nav .lower{
        width: 95%;
    }
    .nav-container a img {
        width: 100%;
        min-width: 300px;
    }
    .upper{
        width:95%;
    }
    .footer-logo{
        width:100%;
    }
}

@media screen and (max-width: 600px) {
    .nav-container{
        flex-direction: column;
        align-items: center;
    }
    .cent{
        gap: 0px;
        flex-direction: row !important;
    }
    .nav-container a img {
        width: 100%;
        min-width: 300px;
    }
    .upper{
        width:95%;
    }
    .contactInfo{
        width: 100%;
    }
    .nav-container a{
        font-size: 18px;
    }
    
}

.nav-open{
    height: 500px;
}

.showing-stats{
    width: 90%;
    margin: 25px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pill-blue{
    padding: 25px;
    background-color: #005F86;
    border-radius: 25px;;
    display: flex;
    gap: 50px;
}

.pill-white{
    padding: 25px;
    background-color: #fff;
    border-radius: 25px;;
    display: flex;
    gap: 50px;
}
.numbeer{
    font-size: 200px;
    font-weight: 600;
    line-height: 220px;
    margin-left: 20px;
}

.h3-left-white{
    text-align: left;
    font-size: 1.75em;
}
.au-li li{
    margin-bottom: 5px;
    margin-left: 25px;
}
.pillau p{
    color: white;
    margin-bottom: 10px;
}

.intypes {
    background-color: #ffffff;
    padding: 60px 0;
}

.intypes .indwrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.industry-link {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 95, 134, 0.2);
}

.industry-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.industry-link:hover img {
    transform: scale(1.1);
}

.hover-text {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
}

.industry-link:hover .hover-text {
    background: linear-gradient(to top, rgba(0, 95, 134, 0.95) 0%, rgba(0, 95, 134, 0.7) 60%, transparent 100%);
    padding: 30px 20px;
}

/* Tablet - 2 columns between 768px and 450px */
@media (max-width: 768px) {
    .intypes .indwrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile - 1 column below 450px */
@media (max-width: 450px) {
    .intypes {
        padding: 40px 0;
    }

    .intypes .indwrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .industry-link {
        aspect-ratio: 16 / 9;
    }

    .hover-text {
        font-size: 16px;
        padding: 20px 15px;
    }
}

.split--right p{
    color: white !important;
}

.skeleton {
    margin: 10px;
    border-radius: 4px;
    background: #eee;
    background-image: linear-gradient(90deg, #eee, #f5f5f5, #eee);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: pulse 1.5s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0% {
      background-position: -100% 0;
    }
    50% {
      background-position: 100% 0;
    }
    100% {
      background-position: -100% 0;
    }
  }
  
  .product-skeleton {
    height: 200px; /* Adjust based on your actual product card size */
    width: 100%;
  }
  
  .skeleton-text {
    height: 20px;
    width: 80%;
    margin: 10px auto;
  }
  .margin-none{
    margin: 0px;
  }
/* Mobile Search Trigger Button */
.mobile-search-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s ease;
}

.mobile-search-trigger img {
    width: 28px;
    height: 28px;
    filter: invert(23%) sepia(88%) saturate(1000%) hue-rotate(170deg);
}

.mobile-search-trigger:hover {
    transform: scale(1.1);
}

.mobile-search-trigger:active {
    transform: scale(0.95);
}

/* Show mobile search button on smaller screens, hide desktop search */
@media screen and (max-width: 768px) {
    .search {
        display: none !important;
    }
    
    .mobile-search-trigger {
        display: block;
    }
}

/* No results styling */
.no-results {
    text-align: center;
    padding: 50px 20px;
}

.no-results img {
    width: 100px;
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-results h2 {
    margin: 0 auto 15px;
    max-width: 100%;
}

.no-results p {
    margin-bottom: 10px;
}

.no-results .btn {
    display: inline-block;
    margin-top: 20px;
}

/* Remove background from elements */
.no-bg {
    background-color: transparent !important;
}

/* Modal form styling - Fresh redesign */
#enquiryModal .modal-content,
#shareModal .modal-content {
    padding: 0;
    margin-top: 0;
}

#enquiryModal .modal-content h2,
#shareModal .modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #005F86;
}

#enquiryModal .modal-content p,
#shareModal .modal-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

#enquiryModal .modal-content label,
#shareModal .modal-content label {
    display: block;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#enquiryModal .modal-content input.search-input,
#shareModal .modal-content input.search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 16px;
    background-color: #f9f9f9;
}

#enquiryModal .modal-content input.search-input:focus,
#shareModal .modal-content input.search-input:focus {
    outline: none;
    border-color: #005F86;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 95, 134, 0.1);
}

#enquiryModal .modal-content textarea.search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    font-family: 'Barlow', sans-serif;
    min-height: 120px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    background-color: #f9f9f9;
    line-height: 1.5;
}

#enquiryModal .modal-content textarea.search-input:focus {
    outline: none;
    border-color: #005F86;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 95, 134, 0.1);
}

#enquiryModal .modal-content button.search-button,
#shareModal .modal-content button.search-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: #005F86;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#enquiryModal .modal-content button.search-button:hover {
    background-color: #004566;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 134, 0.3);
}

#enquiryModal .modal-content button.search-button:active {
    transform: translateY(0);
}

#enquiryModal .modal-content form,
#shareModal .modal-content form {
    margin-top: 0;
}

/* Share modal specific styling */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.share-buttons button {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.share-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-buttons button:active {
    transform: translateY(0);
}

#shareModal .modal-content input[readonly] {
    background-color: #f0f0f0;
    cursor: text;
    user-select: all;
}

@media screen and (max-width: 600px) {
    .share-buttons {
        grid-template-columns: 1fr;
    }

    #enquiryModal .modal-content h2,
    #shareModal .modal-content h2 {
        font-size: 24px;
    }
}

/* Product CTA Section - Modern Redesign with Interesting Shape */
.product-cta-section {
    background: linear-gradient(135deg, #005F86 0%, #003d5c 100%);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0 8%,
        100% 0,
        100% 92%,
        0 100%
    );
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.product-cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.product-cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.product-cta-content {
    flex: 1;
    text-align: left;
}

.cta-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.product-cta-content h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
    line-height: 1.2;
}

.product-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.product-cta-content p strong {
    color: white;
    font-weight: 600;
}

.product-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-cta-primary {
    background: white;
    color: #005F86;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.product-cta-features {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.cta-feature svg {
    flex-shrink: 0;
}

.cta-feature span {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .product-cta-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .product-cta-content {
        text-align: center;
    }

    .cta-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .product-cta-buttons {
        justify-content: center;
    }

    .product-cta-features {
        flex: 1;
        width: 100%;
    }

    .cta-feature:hover {
        transform: translateX(0) translateY(-4px);
    }
}

@media screen and (max-width: 768px) {
    .product-cta-section {
        padding: 60px 0;
    }

    .product-cta-content h2 {
        font-size: 32px;
    }

    .product-cta-content p {
        font-size: 16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Related Products Section */
.related-products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.related-products-header {
    text-align: center !important;
    margin-bottom: 50px;
}

.related-products-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #005F86;
    margin-bottom: 12px;
    margin-top: 0;
    text-align: center !important;
}

.related-products-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.related-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 95, 134, 0.15);
}

.related-product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.related-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 95, 134, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-product-card:hover .related-product-overlay {
    opacity: 1;
}

.view-product-btn {
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.related-product-tags .tag {
    font-size: 12px;
    padding: 4px 10px;
    background-color: #e8f4f8;
    color: #005F86;
    border-radius: 12px;
    font-weight: 500;
}

.related-products-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 32px;
    background-color: #005F86;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background-color: #004566;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 95, 134, 0.3);
}

/* Responsive Grid */
@media screen and (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-products-header h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 600px) {
    .related-products-section {
        padding: 60px 0;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .related-products-header h2 {
        font-size: 28px;
    }

    .related-product-image {
        height: 220px;
    }
}

/* Product page modals - override transform when visible */
#enquiryModal,
#shareModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    z-index: 9999 !important;
    align-items: center !important;
    justify-content: center !important;
}

#enquiryModal[style*="display: flex"],
#shareModal[style*="display: flex"] {
    display: flex !important;
}

#enquiryModal .modal,
#shareModal .modal {
    background-color: #fff !important;
    border-radius: 10px !important;
    padding: 30px !important;
    width: 90% !important;
    max-width: 600px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    transform: none !important;
    z-index: 10000 !important;
}

#enquiryModal .close-button,
#shareModal .close-button {
    position: absolute !important;
    right: 15px !important;
    top: 15px !important;
    font-size: 30px !important;
    color: #666 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    line-height: 1 !important;
}

#enquiryModal .close-button:hover,
#shareModal .close-button:hover {
    color: #000 !important;
}

/* Service Pages - Redesigned Sections */

/* Service Features Section */
.service-features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 95, 134, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #e8f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #005F86;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
}

.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-split:last-child {
    margin-bottom: 0;
}

.service-split-reverse {
    direction: rtl;
}

.service-split-reverse > * {
    direction: ltr;
}

.service-split-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
    transition: transform 0.5s ease;
}

.service-split-image:hover img {
    transform: scale(1.05);
}

.service-split-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #005F86;
    margin-bottom: 20px;
    margin-top: 0;
}

.service-split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Service CTA Section - Matching Product Page Style */
.service-cta-section {
    background: linear-gradient(135deg, #005F86 0%, #003d5c 100%);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0 8%,
        100% 0,
        100% 92%,
        0 100%
    );
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.service-cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite reverse;
}

.service-cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.service-cta-content {
    flex: 1;
    text-align: left;
}

.service-cta-content h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
    line-height: 1.2;
}

.service-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-cta-features {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-feature-card {
        padding: 30px;
    }

    .service-split {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-split-reverse {
        direction: ltr;
    }

    .service-split-content h3 {
        font-size: 28px;
    }

    .service-cta-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .service-cta-content {
        text-align: center;
    }

    .cta-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .service-cta-buttons {
        justify-content: center;
    }

    .service-cta-features {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-features-section {
        padding: 40px 0;
    }

    .service-content-section {
        padding: 60px 0;
    }

    .service-split {
        margin-bottom: 40px;
    }

    .service-feature-card h3 {
        font-size: 20px;
    }

    .service-split-content h3 {
        font-size: 24px;
    }

    .service-split-content p {
        font-size: 16px;
    }

    .service-cta-section {
        padding: 60px 0;
    }

    .service-cta-content h2 {
        font-size: 32px;
    }

    .service-cta-content p {
        font-size: 16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
