body {
    margin: 0;
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif !important;
  }

  .navbar {
    background-color: #fff;
    z-index: 1050;
  }
  .carousel-caption {
    left: 4% !important;
}
  .navbar-nav .nav-link {
  color: #5c5c62;
  font-weight: 500;
  position: relative;
  padding: 0px !important;
  margin: 0px 20px;
  font-size: 17px;
  padding-bottom: 8px !important;
}

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, #00c389, #1c59b6);
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }


  /* Hamburger icon */
  .hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger span {
    height: 3px;
    width: 100%;
    background: #0e58b3;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Slide-in menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background-color: #0e59b2;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
   /* display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: normal;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 2000;
    padding-top: 70px;
}

  .mobile-menu.show {
    right: 0;
  }

  .mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    display: block !important;
    width: 100%;
    text-align: left;
    padding-bottom: 12px;
    padding-left: 26px;
    padding-top: 14px;
}

.mobile-menu .btn-gradient {
  font-size: 1rem;
  width: 154px;
  margin-top: 12px;
  margin-left: 22px;
}

  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }

  @media (min-width: 992px) {
    .hamburger, .mobile-menu {
      display: none;
    }
  }
  /*slider*/
  .carousel-item {
    /*height: 80vh;*/
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  #customCarousel .carousel-item {
  height: auto;
  min-height: auto;
}
.carousel-caption {
  /*z-index: 10;*/
  top: 12%;
  left: 4%;
}

.carousel-caption h1 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #5c5d62;
  margin-bottom: 30px;
}

  .btn-gradient {
    background: linear-gradient(to right, #00c389, #1c59b6);
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: 0.3s ease !important;
    border: none !important;
  }

  .carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #bbb;
  }

  .carousel-indicators .active {
    background-color: #00c389 !important;
  }

  @media (max-width: 767.98px) {
    .carousel-caption {
      bottom: 15%;
      text-align: center;
    }

    .carousel-caption h1 {
        color: #000;
        font-size: 1.6rem;
        background: rgba(255, 255, 255, 0.8);
        padding: 13px 14px;
        border-radius: 0px;
    }
    .carousel-caption h1 br {
        display: none;
    }
  }
  /*Slder End*/
  /*Border*/
  .border-container {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 40px 0;
  margin-bottom: 8px;
}

  .heartbeat-svg {
    width: auto;
    margin-right: -1px;
  }

  .line {
  height: 5px;
  flex-grow: 1;
  background: linear-gradient(to right, #1c59b6 50%, #00c389 50%);
  position: relative;
  top: -4px;
}
  /*Border End*/
  /*welcome*/
  .welcome-section {
  text-align: center;
  padding: 12px 22px 47px;
}

.welcome-section h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #5c5c62;
  margin-bottom: 30px;
}

.welcome-section p {
  margin: 0 auto 55px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5c5c62;
}

  .welcome-border {
    height: 4px;

    margin: 0 auto;
    background: linear-gradient(to right, #00c389 50%, #1c59b6 50%);
  }

  @media (max-width: 768px) {
    .welcome-section h2 {
      font-size: 1.8rem;
    }

    .welcome-section p {
      font-size: 1rem;
    }
  }
  /*welcome End*/
  /*acw-section*/
  .acw-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .acw-text {
    background: linear-gradient(to right, #00c389, #1c59b6);
    color: #fff;
    padding: 60px 40px;
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeUp 1s ease-in;
  }
  .acw-border.boder-top {
  margin-top: 30px;
}
  .acw-text h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 41px;
}

  .acw-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .acw-button {
    background: #fff;
    color: #1c59b6;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
  }

  .acw-button:hover {
    background: #1c59b6;
    color: #fff;
    transform: translateY(-2px);
  }

  .acw-image {
    flex: 1 1 500px;
    background: url('https://yourdomain.com/path-to-image.jpg') no-repeat center center/cover;
    min-height: 350px;
  }

  .acw-border {
    height: 4px;

    margin: 0 auto;
    background: linear-gradient(to right, #1c59b6 50%, #00c389 50%);
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .acw-text {
      padding: 40px 20px;
    }

    .acw-text h2 {
      font-size: 1.5rem;
    }

    .acw-text p {
      font-size: 1rem;
    }

    .acw-image {
      min-height: 250px;
      background-position: top;
    }
  }
  /*acw-section End*/
  .team-section {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
  }

  .team-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #5c5c62;
}

  .team-section p {
  font-size: 1rem;
  max-width: 88%;
  margin: 0 auto 50px;
  line-height: 1.8;
  color: #5c5c62;
}

  .bottom-wave {
    height: 4px;
    margin: 50px auto 0;
    background: linear-gradient(to right, #00c389 40%, #1c59b6 60%);
    position: relative;
  }

  .bottom-wave::after {
  content: "";
  position: absolute;
  right: 0;
  top: -43px;
  width: 90px;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 20h5l5 10 5-20 5 20 5-10h5" stroke="%231c59b6" stroke-width="2" fill="none"/></svg>') no-repeat center;
  background-size: contain;
  background-color: #fff;
}
  .boder-top {
  margin-top: 50px;
}
  @media (max-width: 768px) {
    .network {
      /*height: 450px;*/
    }
    .network img {
  width: 100%;
}
    .profile {
      width: 50px;
      height: 50px;
    }

    .center-logo {
      width: 100px;
      height: 100px;
    }
    .carousel-content img {
  width: 100%;
}
  }
  .acw-help-section {
    
    margin: 40px auto;
  }

  .acw-help-card {
    background-image: url('../images/help_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .acw-help-overlay {
   /* background-color: rgba(255, 255, 255, 0.8);*/
    backdrop-filter: blur(1px);
    padding: 60px 40px;
    text-align: center;
  }

  .acw-help-overlay h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #5c5c62;
  margin-bottom: 20px;
}

.acw-help-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 90%;
  margin: 0 auto;
}

  @media (max-width: 768px) {
    .acw-help-overlay {
      padding: 40px 20px;
    }

    .acw-help-overlay h2 {
      font-size: 1.5rem;
    }

    .acw-help-overlay p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .acw-help-overlay h2 {
      font-size: 1.3rem;
    }

    .acw-help-overlay p {
      font-size: 0.9rem;
    }
  }
  .helping-hand-section {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
  overflow: hidden;
  margin: auto;
  margin-top: 61px !important;
}
.carousel-text h2 {
  color: #5c5c62;
  margin-bottom: 22px;
  margin-top: 24px;
  line-height: 43px;
}
  .helping-hand-image {
    flex: 1 1 50%;
    background: url('../images/helpng.webp') no-repeat center center;
    background-size: cover;
    min-height: 300px;
  }

  .helping-hand-content {
    flex: 1 1 50%;
    background-color: #1a63b3;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .helping-hand-content h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }

  .helping-hand-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .helping-hand-content .cta-button {
  display: block;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  background: linear-gradient(to right, #00c389, #1c59b6);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  width: 159px;
  text-align: center;
}

  .cta-button:hover {
    background-color: #009e68;
  }

  @media (max-width: 768px) {
    .helping-hand-section {
      flex-direction: column;
    }

    .helping-hand-content {
      padding: 30px 20px;
    }

    .helping-hand-content h2 {
      font-size: 1.5rem;
    }

    .helping-hand-content p {
      font-size: 1rem;
    }
  }
  .life-section {
  
    margin: auto;
  }

  .life-title {
  font-size: 3rem;
  font-weight: 700;
  color: #5c5c62;
  float: left;
  margin-right: 14%;
  margin-bottom: 40px;
  display: inline-block !important;
  margin-top: 18px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 30px;
}

.life-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  display: flex;
}
  .life-card:hover {
    transform: translateY(-5px);
  }

  .life-image {
    object-fit: contain;
    float: left;
  }

  .life-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #5c5c62;
  vertical-align: middle;
  display: flex;
  margin-left: 20px;
  padding-right: 30px;
  margin-top: 45px;
}
a.aries {
    margin: 0px;
}
  @media (max-width: 768px) {
    .life-title {
      font-size: 1.6rem;
      text-align: center;
      float: none;
      margin: 0px;
    }
    .life-title br {
  display: none;
}
    .life-grid {
  grid-template-columns: auto !important;
}
    .life-card {
      padding: 20px;
    }

    .life-text {
      font-size: 0.95rem;
    }
  }
  footer {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
  }
  footer a {
    color: #343a40;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
  }
  footer a:hover {
    text-decoration: underline;
  }
  .social-icons a {
  color: white;
  background: linear-gradient(to right, #00b66c, #0a86eb);
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 5px;
  font-size: 22px;
}
  .social-icons a:hover {
    background-color: #218838;
  }
  .footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px !important;
}
  .hero-section {
    position: relative;
    text-align: left;
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  .hero-text {
  position: absolute;
  top: 20px;
  background: linear-gradient(to right, #00b66c, #007bff);
  padding: 20px 30px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 400px;
}

  .cta-section {
    text-align: center;
    padding: 40px 20px;
  }

  .cta-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
  color: #5c5c62;
}

.cta-btn {
    padding: 10px 30px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    background: linear-gradient(to right, #00b66c, #007bff);
    color: #fff !important;
    border: none !important;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

  .cta-btn:hover {
    background: linear-gradient(to right, #007bff, #00b66c);
    color: #fff;
  }

  @media (max-width: 576px) {
    .services_box_ready {
        margin-top: 30px !important;
        padding: 0px 25px !important;
    }
    .hero-text {
      font-size: 1rem;
  padding: 2px 20px;
  max-width: 90%; 
    }
    .mb-3.terry {
  margin-bottom: 27px !important;}
  }
  .carousel-section {
    padding: 60px 0;
    padding-bottom: 0px;
  }

  .carousel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .carousel-text {
    max-width: 700px;
    margin-bottom: 30px;
  }

  .carousel-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5c5c62;
}

  .rounded-image {
    object-fit: cover;
    border-radius: 50%;
  }

  .carousel-buttons .btn {
    margin: 0 10px 10px 0;
  }

  .arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #28a745;
    color: #28a745;
    background: white;
    transition: all 0.3s ease;
  }

  .arrow-btn:hover {
    background: linear-gradient(to right, #00b66c, #007bff);
    color: white;
    border-color: transparent;
  }

  .contact-btn {
    background: linear-gradient(to right, #00b66c, #007bff);
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    border: none !important;
    border-radius: 6px !important;
}
  .contact-btn:hover {
    background: linear-gradient(to right, #007bff, #00b66c);
    color:#fff;
  }

  @media (max-width: 768px) {
    .carousel-content {
      flex-direction: column;
      text-align: center;
    }
   
    .carousel-text {
      max-width: 100%;
    }

    .rounded-image {
      margin-top: 20px;
    }
  }
  .header-boder-top {
  margin-bottom: 10px;
  margin-top: 0px;
}
.header-boder-top .welcome-border {
  height: 2px;
}
section.acw-section-full {
  margin-top: 11px;
}
.mb-3.terry {
  margin-bottom: 4px;
  margin-top: 33px !important;
}
.mb-3.terry_new {
  margin-bottom: 36px !important;
}
img.footer_boder {
  width: 100%;
}
.hero-section {
  margin-top: 66px;
}
section.life-section {
  padding: 57px 0px 35px 0px;
}
.carousel-buttons .btn.contact-btn {
  margin-left: 34px;
}
.acw-text {
  position: relative;
  z-index: 9;
} 
.acw-image {
  position: relative;
}  
.buble {
  height: 80px;
  width: 80px;
  background: #1353bb;
  border-radius: 50%;
  left: -57px;
  position: absolute;
  top: 40%;
}
img.footer_boder {
  padding-bottom: 24px;
}
.helping-hand-content a:hover {
  background: linear-gradient(to right, #007bff, #00b66c);
  color: #fff;
}
.btn-gradient:hover {
  background: linear-gradient(to right, #007bff, #00b66c);
  color: #fff;
}
.carousel-indicators {
  margin-left: 0px !important;
  left: 130px !important;
  display: block !important;
  bottom: 57px !important;
}
.carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
}
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animated-img {
    animation: fadeInUp 1.5s ease-out;
    display: block;
    margin: 0 auto;
  }


  /*Meet_Team */


  p.meet_team {
    margin-bottom: 23px;
}
.meet_our_teme {
    margin-bottom: 39px;
}
.team-wrapper {
    max-width: 1000px;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 40px;
}

  .team-card {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .team-card img {
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .team-card h5 {
    font-weight: 500;
    color: #5c5c62;
  }
  .gradient_box {
    background: linear-gradient(to right, #00b66c, #077aaa);
    height: 35px;
    width: 35px;
    position: absolute;
    z-index: 99;
    left: -5px;
    top: -17px;
}
.gradient_box_next {
    background: linear-gradient(to right, #00b66c, #077aaa);
    height: 35px;
    width: 35px;
    position: absolute;
    z-index: 99;
    left: 15%;
    top: -17px;
}
  .team-card h6 {
    font-weight: 400;
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .team-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  .team_row {
    display: flex;
}
.team_row .col-md-6 {
    display: flex;
}

  @media (max-width: 767px) {
    .team-card {
      margin-bottom: 30px;
    }
  }
  .gradient-border-box {
    padding: 2px; /* Border thickness */
    background: linear-gradient(to right, #00b66c, #007bff);
    display: flex;
  }
  
  .gradient-border-box .content_temes {
    background-color: #fff;
    padding: 25px;
    text-align: center;
    padding-top: 57px;
}
.inner_page_slider .carousel-item {
    min-height: 372px;
}
.inner_page_slider .carousel-indicators {
    bottom: 10px !important;
}
  /*Meet_Team End */

  .services-wrapper {
    margin: auto;
    padding-top: 20px;
    padding-bottom: 40px;
}
.content_temes.services_content {
    text-align: left;
    padding-top: 35px;
    padding-left: 36px;
}
.gradient_box_services {
    background: linear-gradient(to right, #00b66c, #077aaa);
    height: 35px;
    width: 35px;
    position: absolute;
    z-index: 99;
    left: 40px;
    top: -17px;
}
.services_content h2 {
    font-weight: 600;
    color: #5c5c62;
    font-size: 25px;
    text-transform: uppercase;
}
.services_content p {
    color: #5c5c62;
    font-size: 17px;
}
  .btn-gradient {
    background: linear-gradient(to right, #00b894, #0984e3);
    color: #fff;
    font-weight: bold;
    border: none;
  }
  .btn-gradient:hover {
    opacity: 0.9;
  }
  .section-content {
    padding: 50px 15px;
  }
  .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #5c5c62;
}
  .section-subheading {
    font-size: 1.25rem;
    color: #666;
  }

  .contact-container {
    max-width: 783px !important;
    margin: 0px auto;
    background-color: white;
    border: 2px solid;
    border-image: linear-gradient(to right, #00b894, #0984e3);
    border-image-slice: 1;
    padding: 52px;
    padding-left: 40px !important;
    border-radius: 10px;
    padding-right: 40px !important;
    box-shadow: 0px 6px 19px 2px rgb(0 0 0 / 26%);
    margin-bottom: 79px;
}
.contact_page h2 {
    margin-bottom: 0px !important;
}
  .form-label {
    font-weight: 500;
  }
  .btn-gradient {
    background: linear-gradient(to right, #00b894, #0984e3);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 30px;
  }
  .btn-gradient:hover {
    opacity: 0.9;
  }
  .form-label {
    margin-bottom: .5rem;
    color: #5c5c62;
}
p.terms_conditions {
    margin-bottom: 0px;
}
h2.terms_titel {
    margin-top: 33px;
}
.terms_condit h2 {
    color: #5c5c62;
    font-size: 19px;
    padding-top: 19px;
    padding-bottom: 11px;
}
.terms_condit p {
    margin-bottom: 34px;
}
.acw-text ul li {
    line-height: 30px;
    list-style: square;
}
.acw-text ul {
    margin: 0px;
}

/* ===== Audit fixes: accessibility + layout ===== */
.carousel-caption h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #5c5d62;
    margin-bottom: 30px;
    line-height: 1.2;
}
@media (max-width: 767.98px) {
    .carousel-caption h2 {
        color: #000;
        font-size: 1.6rem;
        background: rgba(255,255,255,0.8);
        padding: 13px 14px;
        border-radius: 0;
    }
    .carousel-caption h2 br { display: none; }
}
.carousel-indicators [data-bs-target] {
    width: 24px !important;
    height: 24px !important;
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 50%;
}
.team-card h6,
.content_temes h6 {
    color: #2c3e50;
    font-weight: 500;
}
.service-subheading {
    color: #5c5c62;
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 6px;
}
.footer-contact {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 6px;
}
.footer-contact a {
    color: #0e58b3;
    text-decoration: none;
    margin: 0 4px;
}
.footer-contact a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }


/* Skip-to-main-content link for keyboard / screen reader users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #ffffff;
  color: #000000;
  padding: 8px 12px;
  z-index: 9999;
  border: 2px solid #000000;
  border-radius: 4px;
}
.skip-link:focus {
  left: 8px;
}

/* Mobile-sized hero/section backgrounds for performance */
@media (max-width: 768px) {
  #fullSlider .carousel-item[style*="slider1.webp"] {
    background-image: url('../images/slider1-sm.webp') !important;
  }
  #fullSlider .carousel-item[style*="slider2.webp"] {
    background-image: url('../images/slider2-sm.webp') !important;
  }
  #fullSlider .carousel-item[style*="slider3.webp"] {
    background-image: url('../images/slider3-sm.webp') !important;
  }
  #fullSlider .carousel-item[style*="service_slider.webp"] {
    background-image: url('../images/service_slider-sm.webp') !important;
  }
  #fullSlider .carousel-item[style*="contact_slider.webp"] {
    background-image: url('../images/contact_slider-sm.webp') !important;
  }
  #fullSlider .carousel-item[style*="meet_team.webp"] {
    background-image: url('../images/meet_team-sm.webp') !important;
  }
  .acw-image[style*="howA_CW.webp"] {
    background-image: url('../images/howA_CW-sm.webp') !important;
  }
  .helping-hand-image {
    background-image: url('../images/helpng-sm.webp') !important;
  }
}

/* ---- Cookie consent banner ---- */
.cookie-consent[hidden] { display: none; }
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #06142e;
  color: #ffffff;
  border-top: 3px solid #18c9c9;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.28);
}
.cookie-consent__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.cookie-consent h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  line-height: 1.2;
  color: #ffffff;
}
.cookie-consent p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.55;
  color: #ffffff;
}
.cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.cookie-consent__links a,
.cookie-consent__link-button {
  color: #20d6d2;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}
.cookie-consent__links a:hover,
.cookie-consent__link-button:hover,
.cookie-consent__links a:focus,
.cookie-consent__link-button:focus {
  text-decoration: underline;
}
.cookie-consent__actions {
  display: grid;
  gap: 12px;
}
.cookie-consent__button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-consent__button--primary { background: #18c9c9; color: #00152f; }
.cookie-consent__button--secondary { background: #ffffff; color: #00152f; }
.cookie-consent__button:focus,
.cookie-consent__link-button:focus,
.cookie-consent a:focus {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .cookie-consent {
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .cookie-consent__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---- Cookie preferences modal ---- */
.cookie-preferences-modal[hidden] { display: none; }
.cookie-preferences-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}
.cookie-preferences-modal__panel {
  width: min(100%, 640px);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  color: #06142e;
  border-radius: 16px;
  padding: 24px;
}
.cookie-preferences-modal__panel h2 { margin-top: 0; }
.cookie-preferences-modal__option {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #d8e1ec;
  border-radius: 12px;
}
.cookie-preferences-modal__option small,
.cookie-preferences-modal__option p {
  display: block;
  margin: 4px 0 0;
  color: #41546b;
}
.cookie-preferences-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.cookie-preferences-modal__actions button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-preferences-modal__actions button:first-child,
.cookie-preferences-modal__actions button:nth-child(2) {
  background: #18c9c9;
  color: #00152f;
}
.cookie-preferences-modal__actions button:nth-child(3),
.cookie-preferences-modal__actions button:nth-child(4) {
  background: #06142e;
  color: #ffffff;
}
@media (min-width: 640px) {
  .cookie-preferences-modal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Footer Cookie Preferences link styled like surrounding text links */
.footer-cookie-preferences {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}
.footer-cookie-preferences:hover,
.footer-cookie-preferences:focus {
  text-decoration: underline;
}
