/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", "Segoe UI", "Besley", sans-serif;
  background: white;
  padding-top: 15px;
  scroll-behavior: smooth;
}

.header {
  background: white;
  padding-bottom: 15px;
  padding-top: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

.nav .menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 30px;
  gap: 30px;
  align-items: center;
}

.menu-item {
  position: relative;
}

.menu-item a {
  text-decoration: none;
  color: #102757;
  font-size: 16px;
  font-weight: 4;
  line-height: 20px;
  font-family: "Lato", sans-serif;
}

.menu-item.active a {
  color: #00cde9;
}

.menu-item .arrow {
  font-size: 10px;
  margin-left: 4px;
}

.menu-item.active .underline {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00cde9;
}

.menu-item {
  position: relative;
}

.menu-item .underline {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00cde9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-item:hover .underline,
.menu-item.active .underline {
  transform: scaleX(1);
}

.contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.phone {
  color: #0a1b35;
  font-size: 14px;
}

.quote-btn {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}
.menu-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 0px;
  min-width: 200px;
  display: none;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #0a1b35;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #0a1b35;
  color: #fff;
}

.menu-item.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-item.dropdown:hover .dropdown-menu li a {
  display: block;
  color: #0a1b35;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.menu-item.dropdown:hover .dropdown-menu li a:hover {
  display: block;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-header-right {
    padding-right: 150px !important;
  }

  .container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    width: 100%;
    margin-top: 10px;
  }

  .nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
  }

  .menu-item {
    width: 100%;
  }

  .menu-item .underline {
    top: 25px;
  }

  .contact {
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: relative;
    width: 100%;
    box-shadow: none;
    padding-left: 10px;
  }
}

/* 1024px device responsive */

/* Default: hide mobile block */
.mobile-header-right {
  display: none;
  align-items: center;
  gap: 10px;
  padding-right: 300px;
}

/* Hamburger icon */
.menu-icon {
  width: 35px;
  height: 35px;
  background-color: #00bcd4;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px; /* adjust this value if needed for fine-tuning */
}

/* Text beside the icon */
.mobile-text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #102757;
  font-weight: 300;
}

.mobile-text strong {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #102757;
  font-weight: 400;
}

/* Default: hide mobile menu */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  width: 100%;
  background-color: #102757;
  position: relative;
  z-index: 999;
  margin-top: 100px;
}

.mobile-nav.open {
  max-height: 1000px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  border-bottom: 1px solid #1b2c4d;
}

.mobile-nav ul li a {
  display: block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.mobile-nav ul li a:hover {
  background-color: #102757;
}

/* Show only at 1024px and below */
@media (max-width: 1024px) {
  .nav,
  .contact {
    display: none !important;
  }

  .mobile-header-right {
    display: flex;
  }

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

  .dropdown-menu1 {
    display: none;
    padding-left: 15px;
  }

  .menu-item1.open .dropdown-menu1 {
    display: block;
  }

  .arrow {
    cursor: pointer;
  }

  .menu-item1.active > a {
    background-color: #3f444b;
    color: #fff;
  }

  .mobile-text-700 {
    display: none;
  }
}

@media (max-width: 700px) {
  .mobile-header-right {
    display: flex;
    justify-content: flex-end; /* hamburger on the right */
    align-items: center;
    flex-wrap: wrap; /* allow text below */
    padding-right: 50px !important;
  }

  /* Hamburger on the right */
  #hamburger {
    order: 1; /* first in flex */
  }

  /* Logo default order (no change) */
  .logo {
    order: 0;
  }

  /* Text below hamburger and logo */
  .mobile-text-700 {
    order: 2;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: 102757;
  }
  .mobile-text {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-text-700 {
    display: none !important;
  }
}

/* Party wall */

.pws-header-banner {
  text-align: center;
}
.pws-header-banner h1 {
  font-family: "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-right: 820px;
  line-height: 58px;
  color: #000;
}
.pws-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pws-image {
  flex: 1 1 45%;
  min-width: 400px;
}
.pws-image img {
  width: 100%;
  height: auto;
}
.pws-content {
  flex: 1 1 50%;
  min-width: 400px;
  padding: 20px;
}
.pws-content h2 {
  font-family: "Besley", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 58px;
  margin-bottom: 30px;
  color: #102757;
}
.pws-divider {
  border: none;
  border-top: 3px solid #00bcd4;
  width: 500px;
  margin: 10px 0 40px 0;
}
.pws-list {
  list-style: none;
  padding: 0;
}
.pws-list li {
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #3b3a3a;
  font-weight: 400;
}
.pws-list i.fas {
  color: #001c48;
  margin-right: 11px;
}

.pws-buttons {
  margin-top: 20px;
}
.pws-btn {
  display: inline-block;
  padding: 22px 20px;
  margin-right: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
}
.pws-btn.quote {
  background-color: #102757;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  font-family: "Segoe UI", sans-serif;
}
.pws-btn.process {
  background-color: #00bcd4;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  font-family: "Segoe UI", sans-serif;
}

@media screen and (max-width: 1200px) {
  .pws-header-banner h1 {
    font-family: "Segoe UI", sans-serif;
    font-size: 40px;
    font-weight: 500;
    margin-right: 780px;
    line-height: 58px;
    color: #000;
  }
}

@media screen and (max-width: 991px) {
  .pws-header-banner h1 {
    margin-right: 550px;
    text-align: center;
  }
}

@media screen and (max-width: 780px) {
  .mobile-header-right {
    padding-right: 59px;
  }

  .pws-section {
    flex-direction: column;
    align-items: center;
  }

  .pws-header-banner h1 {
    margin-right: 0px;
    text-align: center;
  }

  .pws-image,
  .pws-content {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .pws-content {
    padding: 20px;
    text-align: center;
  }

  .pws-divider {
    width: 80%;
    margin: 10px auto 30px auto;
  }

  .pws-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .pws-btn {
    width: 80%;
    text-align: center;
  }

  .pws-list {
    padding: 0 80px;
  }

  .pws-list li {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 12px;
    text-align: left;
  }

  .pws-list i.fas {
    font-size: 16px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 375px) {
  .pws-list {
    padding: 0 40px;
  }
}

/* Party Wall Process */

.pwp-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pwp-left,
.pwp-right {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.pwp-title {
  font-family: "Besley", sans-serif;
  font-size: 32px;
  line-height: 46px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
  color: #102757;
}

.pwp-underline {
  width: 280px;
  height: 3px;
  background: #00bcd4;
  margin: 0 auto 30px auto;
  margin-bottom: 25px;
  margin-top: 25px;
}

.pwp-left p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 16px;
  color: #3b3a3a;
  font-weight: 400;
}

.pwp-left a {
  font-family: "Lato", sans-serif;
  color: #00bcd4;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
}

.pwp-question {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0;
  line-height: 41px;
  color: #3b3a3a;
}

.pwp-final-note {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 16px;
  color: #3b3a3a;
  font-weight: 400;
}

.pwp-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 10px;
}

@media (max-width: 768px) {
  .pwp-left,
  .pwp-right {
    min-width: 300px;
    padding: 0px;
  }

  .pwp-title {
    font-size: 26px;
  }

  .pwp-question {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .pwp-title {
    font-size: 22px;
  }

  .pwp-question {
    font-size: 18px;
  }

  .pwp-container {
    padding: 30px 10px;
  }
}

/* dicussion */

/* Main discussion container */
.pwp-discussion-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px; /* spacing between form and info on desktop */
}

.pwp-discussion-form,
.pwp-discussion-info {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.pwp-discussion-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Form styling */
.pwp-discussion-form {
  background: #f8f8fa;
}

.pwp-discussion-form h2 {
  font-family: "Besley", sans-serif;
  font-size: 32px;
  color: #102757;
  line-height: 46px;
  font-weight: 400;
}

/* Inputs and labels */
input[type="checkbox" i],
input[type="radio" i] {
  transform: scale(1.5);
  margin-right: 8px;
  cursor: pointer;
  border-color: #c2c2c3;
}

.pwp-discussion-form label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
}

.pwp-discussion-form input[type="text"],
.pwp-discussion-form input[type="email"] {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 2px solid #c2c2c3;
}

.pwp-discussion-form input:focus {
  border-color: #c2c2c3;
  box-shadow: 0 0 4px rgba(0, 120, 200, 0.3);
  outline: none;
}

.pwp-owner-type {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.required-star {
  color: red;
}

/* Checkbox styling */
.pwp-checkbox-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.pwp-recaptcha {
  margin: 20px 0;
}

.pwp-recaptcha-box {
  display: flex;
  align-items: center;
  gap: 150px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 7px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 400px;
}

.pwp-recaptcha-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* Submit button */
.pwp-discussion-form button {
  padding: 10px 20px;
  background-color: #066aab;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Info section */
.pwp-discussion-info h2 {
  font-family: "Besley", sans-serif;
  font-size: 40px;
  line-height: 58px;
  color: #102757;
  font-weight: 400;
}

.pwp-discussion-info .underline {
  width: 100%;
  max-width: 800px;
  height: 3px;
  background: #00bcd4;
  margin: 20px 0 30px 0;
}

.pwp-discussion-info p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  color: #3b3a3a;
  font-weight: 700;
}

.pwp-discussion-info p a {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  color: #00bcd4;
  font-weight: 400;
  text-decoration: none;
}

.alter-text {
  font-weight: 400;
}

.pwp-discussion-info img {
  max-width: 100%;
  margin-top: 20px;
  display: block;
  margin-left: auto;
}

.pwp-discussion-info .simon-burrage {
  max-width: 100%;
  margin-top: 40px;
  display: block;
  margin-right: auto;
}

.pwp-postcode {
  width: 150px !important;
}

.pwp-large-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.pwp-recaptcha-image {
  margin-top: 10px;
}

.pwp-recaptcha-image img {
  max-width: 100%;
  height: auto;
}

.rc-anchor-pt a {
  font-size: 10px;
  text-decoration: none;
  color: #555;
}

.rc-anchor-logo-text {
  font-size: 12px;
  color: #555;
}

/* Validation */
.error {
  border-color: red !important;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 3px;
  display: none;
}

.error-icon::before {
  content: "❌ ";
}
@media (max-width: 1024px) {
  .review-wrapper {
    display: none;
  }
}
@media (max-width: 991px) {
  .review-wrapper {
    display: none;
  }
}
@media (max-width: 767px) {
  .pwp-discussion-container {
    display: block; /* fallback from flex if needed */
    padding: 20px 10px;
  }

  .pwp-discussion-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    flex: unset !important;
    display: block;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
  }

  .pwp-discussion-info {
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
    padding: 15px;
    box-sizing: border-box;
  }

  .pwp-recaptcha-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 7px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
  }
}

/* review section */

.review-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Flex layout for the review cards */
.review-section {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Review Card */
.review-card {
  width: 545px;
  box-sizing: border-box;
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Want to begin construction */

.wa-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 80px;
}

.wa-left-image,
.wa-right-text {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding-left: 37px;
}
.wa-left-image img {
  width: 100%;
  height: auto;
  display: block;
}

.wa-right-text {
  padding: 30px 40px;
  color: #333;
}

.wa-right-text h2 {
  font-family: "Lato", sans-serif;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 41px;
  font-weight: 500;
  color: #3b3a3a;
}

.wa-right-text h3 {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  margin: 25px 0 10px;
  font-weight: 700;
  color: #3b3a3a;
}

.wa-right-text h4 {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 15px;
}
.wa-right-text p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}

.wa-text {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}
.wa-text a {
  font-family: "Lato", sans-serif;
  text-decoration: none !important;
  color: #00bcd4;
}

.wa-right-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: none;
}

.wa-right-text li {
  font-family: "Lato", sans-serif;
  margin-bottom: 8px;
  color: #00bcd4;
}

.wa-right-text li a {
  font-family: "Lato", sans-serif;
  margin-bottom: 8px;
  color: #00bcd4;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
}
.wa-number {
  font-family: "Lato", sans-serif;
  color: #3b3a3a;
}
.wa-right-text a {
  color: #00a8de;
  text-decoration: none;
}

.need {
  font-family: "Lato", sans-serif;
  margin-bottom: 8px;
  color: #3b3a3a;
  font-weight: 500;
  font-size: 28px;
  line-height: 41px;
}

.plan-line li {
  font-family: "Lato", sans-serif;
  color: #3b3a3a;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  list-style: disc;
}
/* Responsive styles */
@media (max-width: 1024px) {
  .wa-right-text {
    padding: 25px;
  }
}

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

  .wa-left-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .wa-left-image img {
    width: auto;
    max-width: 100%;
  }

  .wa-right-text {
    padding: 20px;
  }

  .wa-right-text h2 {
    font-size: 22px;
  }

  .wa-right-text h3 {
    font-size: 18px;
  }

  .wa-right-text p,
  .wa-right-text li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wa-right-text h2 {
    font-size: 20px;
  }

  .wa-right-text {
    padding: 15px;
  }
}

/* testimonial-section */

.wa-testimonial-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.wa-testimonial-card {
  max-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  padding: 50px 20px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  overflow: visible;
  margin: 40px auto 20px;
  position: relative;
  scrollbar-width: thin;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgb(217, 217, 217);
}

.wa-testimonial-card:hover {
  transform: translateY(-30px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.wa-profile-wrapper {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.wa-profile-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.wa-google-icon {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: -6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.wa-testimonial-card h4 {
  margin: 40px 0 5px;
  font-size: 16px;
  font-weight: bold;
}

.wa-date {
  color: #999;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.wa-testimonial-text {
  font-size: 15px;
  line-height: 22px;
  color: #000;
  margin: 0;
  padding-right: 4px;
  max-height: 100px;
  overflow-y: auto;
  font-weight: 400;
}

.wa-testimonial-card::-webkit-scrollbar {
  width: 5px;
}
.wa-testimonial-card::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.wa-testimonial-card::-webkit-scrollbar-track {
  background: transparent;
}

.swiper-button-next,
.swiper-button-prev {
  width: 5px;
  height: 5px;
  border: 1px solid #ccc;
  background-color: rgb(255, 255, 255);
  color: rgb(217, 217, 217) !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700;
  color: rgb(217, 217, 217) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #000;
  border-color: #ccc;
}

.wa-testimonial-heading h2 a {
  font-family: "Segoe UI", sans-serif;
  font-size: 32px;
  line-height: 36px;
  color: #102757;
  text-decoration: none;
  font-weight: 500;
}

.call {
  font-family: "Besley", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  text-decoration: none;
  color: #6ec1e4;
}

.btn-call {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}
.call-sev {
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Responsive Styles */

@media (max-width: 1024px) {
  .wa-testimonial-card {
    margin: 60px auto 30px;
    max-width: 90%;
  }

  .wa-testimonial-section {
    padding: 30px 15px;
  }

  .wa-testimonial-heading h2 a {
    font-size: 28px;
    line-height: 34px;
    padding-right: 20px;
  }

  .call {
    font-size: 20px;
    line-height: 30px;
  }

  .btn-call {
    font-size: 14px;
    padding: 18px 20px;
  }
}

@media (max-width: 992px) {
  .wa-testimonial-card {
    margin: 60px auto 30px;
    max-width: 90%;
  }

  .wa-testimonial-section {
    padding: 30px 0px;
  }

  .call {
    font-size: 20px;
    line-height: 30px;
  }

  .btn-call {
    font-size: 14px;
    padding: 18px 20px;
  }
}

@media screen and (max-width: 576px) {
  .wa-testimonial-card {
    max-width: 160px;
  }
}

/* Delivering Surrey projects */

.surrey-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  min-height: auto;
  margin-top: 32px;
  margin-bottom: 100px;
}

.surrey-left {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 0px 20px;
}

.surrey-left h2 {
  font-family: "Besley", sans-serif;
  color: #102757;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 41px;
}

.surrey-left h3 {
  font-family: "Besley", sans-serif;
  color: #6ec1e4;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 17px;
}

.surrey-left p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #3b3a3a;
}

.surrey-left a {
  color: #00bcd4;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
}

.surrey-left a:hover {
  text-decoration: none;
}

.surrey .surrey-btn {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}
.surrey {
  margin-top: 60px;
}
.surrey a:hover {
  text-decoration: none !important;
}

.surrey-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.surrey-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.surrey-footer {
  padding: 15px;
  font-size: 17px;
  color: #102757;
  text-align: center;
  line-height: 26px;
  word-break: break-word;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

.surrey-footer a {
  font-size: 17px;
  color: #00bcd4;
  text-align: center;
  line-height: 26px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  text-decoration: none;
}

@media (max-width: 991px) {
  .surrey-wrapper {
    flex-direction: column;
  }

  .surrey-left,
  .surrey-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .surrey-right {
    margin-top: 40px;
  }

  .surrey-left {
    padding: 0 15px;
  }

  .surrey {
    text-align: center;
    margin-top: 40px;
  }

  .surrey .surrey-btn {
    width: 90%;
    max-width: 320px;
    padding: 18px 20px;
    font-size: 15px;
  }

  .surrey-footer {
    padding: 20px 10px;
  }

  .surrey-image-wrapper img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .surrey-footer {
    padding: 30px 10px;
  }
}

/* Process section  */

.process-main {
  background: #f0f0f0;
  padding: 30px 0px;
}

.process-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.process-section h2 {
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 10px;
  font-weight: 500;
}

.process-section p.subtitle {
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
  color: #3b3a3a;
  margin-bottom: 30px;
  font-weight: 700;
}

.divider {
  width: 100%;
  max-width: 600px;
  height: 3px;
  background: #00bcd4;
  margin: 0 auto 40px;
}

.custom-icon {
  font-size: 100px;
  color: #00bcd4;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}

.step-icon {
  flex: 0 0 50px;
}

.step-icon img {
  width: 40px;
  height: 40px;
}

.step-content h3 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  margin: 0 0 10px;
  color: #102757;
}

.step-content p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  color: #54595f;
}

.step-content ul li {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  color: #54595f;
  margin-bottom: 7px;
}

.step-content p a {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  color: #00bcd4;
  margin-bottom: 7px;
  text-decoration: none;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #001936;
  color: #fff;
  padding: 6px 14px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 3px;
}

.back-to-top {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 26px;
  margin-top: 10px;
  display: inline-block;
  color: #00bcd4;
  text-decoration: none;
  font-weight: 400;
}
.btn-party {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}
.acc-party {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}
.response-btn {
  margin-top: 40px;
}

.box {
  background: #e8f9fd;
  padding: 10px 15px;
  margin-top: 10px;
  border-left: 4px solid #00bcd4;
}

.link {
  color: #0077cc;
  text-decoration: none;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.step-icon {
  flex: 0 0 200px;
  justify-content: center;
  align-items: center;
}

.step-icon img {
  width: 40px;
  height: 40px;
}

.accordion {
  margin-top: 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-item {
  border-top: 1px solid #fff;
}

.accordion-header {
  background-color: #a6e0e8;
  color: #001936;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  font-size: 15px;
}

.accordion-header::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #f9fdfe;
  font-size: 14px;
  padding: 0 16px;
  line-height: 1.6;
}

.accordion-header.active + .accordion-content {
  padding: 12px 16px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #001936;
  color: #fff;
  padding: 6px 14px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .process-main {
    margin-top: 450px !important;
  }
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-icon {
    margin-bottom: 10px;
  }

  .process-main {
    margin-top: 200px !important;
  }
}

@media (max-width: 576px) {
  .process-main {
    margin-top: 50px !important;
  }
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    margin-bottom: 10px;
  }

  .step-content h3 {
    margin-top: -111px;
  }
}

/* consultation-section */

.consultation-section {
  background-color: #102757;
  color: #fff;
  font-family: "Georgia", serif;
  padding: 50px 20px;
}

/* Grid Layout */
.consultation-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.consultation-item {
  flex: 1;
  min-width: 280px;
}

/* Graphic */
.consultation-item.graphic img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 150px;
}

/* Text Content */
.consultation-item.content h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.coustom-i {
  margin-right: 10px;
  color: #00bcd4;
  font-size: 22px;
}

.features li {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 26px;
}

.consultation-item.content p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 26px;
}

.call-box {
  background: #fff;
  color: #102757;
  padding: 20px 20px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  line-height: 22px;
  font-size: 22px;
}

.call-to-action {
  text-decoration: none;
  color: #102757;
}

/* Form */
.form-version-two .pwp-discussion-form {
  background: #102757;
}

.form-version-two .pwp-recaptcha-box {
  display: flex;
  align-items: center;
  gap: 80px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 360px;
  font-size: 14px;
}

.form-version-two .pwp-recaptcha-image img {
  max-width: 40px;
  height: auto;
}

.form-version-two .pwp-recaptcha {
  margin: 10px 0;
}

.form-version-two .pwp-discussion-form button {
  background: #00bcd4;
}

/* Responsive */
@media (max-width: 480px) {
  .custom-recaptcha-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-recaptcha-image {
    margin-top: 10px;
    width: auto;
  }

  .form-version-two .pwp-recaptcha-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .consultation-grid {
    flex-direction: column;
  }

  .form-options label {
    display: block;
    margin-bottom: 8px;
  }

  button {
    width: 100%;
  }

  .call-box {
    width: 100%;
    text-align: center;
  }

  .call-box {
    background: #fff;
    color: #102757;
    padding: 20px 0px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    line-height: 22px;
    font-size: 22px;
  }
}

/* survey-cost-section */

.survey-cost-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #fff;
}

.survey-image {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: center;
}

.survey-image img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

.survey-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.survey-content h2 {
  font-family: "Besley", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  color: #102757;
  margin-bottom: 10px;
}

.survey-content h3 {
  font-family: "Besley", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6ec1e4;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.survey-content p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #3b3a3a;
  font-weight: 400;
}

.survey-content a {
  color: #00bcd4;
  text-decoration: none;
}

.survey-content-two .survey-button {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}
.survey-v {
  margin-top: 40px;
}

.survey-button:hover {
  background-color: #142040;
}

@media (max-width: 768px) {
  .survey-cost-section {
    flex-direction: column;
    text-align: center;
  }

  .survey-content h2 {
    font-size: 24px;
  }

  .survey-content p {
    font-size: 15px;
  }

  .survey-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Work Covered */

#work-covered-section {
  background-color: #102757;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#work-covered-section .wc-heading {
  font-family: "Segoe UI", sans-serif;
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 20px;
  font-weight: 500;
}

#work-covered-section .wc-description {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
  color: #e1e7f2;
}

#work-covered-section .wc-types {
  font-size: 1rem;
  margin-bottom: 30px;
}

#work-covered-section .wc-types span {
  margin: 0 5px;
  color: #fff;
}

#work-covered-section .wc-button {
  font-family: "Lato", sans-serif;
  background-color: #6ec1e4;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}

.wc-up {
  margin-top: 60px;
}

#work-covered-section .wc-button:hover {
  background-color: #6ec1e4;
}

@media (max-width: 768px) {
  #work-covered-section .wc-heading {
    font-size: 1.6rem;
  }

  #work-covered-section .wc-description,
  #work-covered-section .wc-types {
    font-size: 0.95rem;
  }

  #work-covered-section .wc-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #work-covered-section {
    padding: 40px 15px;
  }

  #work-covered-section .wc-heading {
    font-size: 1.4rem;
  }

  #work-covered-section .wc-button {
    width: 100%;
    max-width: 280px;
  }
}

/* Information section */

/* Info Section */
.info-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.info-box {
  flex: 1 1 300px;
  text-align: center;
}

.info-box h3 {
  font-family: "Segoe UI", sans-serif;
  color: #6ec1e4;
  font-size: 28px;
  line-height: 41px;
  margin-bottom: 10px;
  font-weight: 500;
}

.info-box p {
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
  line-height: 26px;
  font-size: 17px;
  color: #3b3a3a;
}

.info-box a {
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
  line-height: 26px;
  font-size: 17px;
  color: #00bcd4;
  text-decoration: none;
}

/* Blog Card Section */
.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.blog-card {
  flex: 1 1 300px;
  background: #fff;
}

.blog-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-card h4 {
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0 5px;
  color: #54595f;
  line-height: 26px;
}

.blog-card small {
  font-family: "Segoe UI", sans-serif;
  color: #adadad;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.blog-card p {
  font-family: "Segoe UI", sans-serif;
  color: #777;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

.blog-card a {
  font-family: "Segoe UI", sans-serif;
  display: inline-block;
  margin-top: 10px;
  color: #00bcd4;
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  line-height: 26px;
}

.blog-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .info-section,
  .blog-section {
    flex-direction: column;
    padding: 30px 10px;
  }
}
/*  
    bellow section */

.top-bar {
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  font-family: Arial, sans-serif;
}

.breadcrumbs {
  flex: 1 1 100%;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #333;
}

.breadcrumbs a {
  font-weight: 400;
  font-size: 14;
  line-height: 26px;
  color: #00bcd4;
  text-decoration: none;
  font-family: "Segoe UI", sans-serif;
}

.top-bar-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 200px;
  margin-top: 10px;
  text-align: center;
}

.toping-btn {
  font-family: "Lato", sans-serif;
  background-color: #102757;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 21px 23px;
  cursor: pointer;
  line-height: 15px;
  font-size: 15px;
  text-decoration: none;
}

.trustpilot img {
  height: 30px;
  vertical-align: middle;
}

.company-logo {
  height: 30px;
}

.google-reviews img {
  height: 30px;
  vertical-align: middle;
}

.google-reviews span {
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .top-bar-content {
    gap: 80px;
  }

  .toping-btn {
    padding: 16px 20px;
    font-size: 14px;
  }

  .trustpilot img,
  .google-reviews img,
  .company-logo {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 20px;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .breadcrumbs {
    text-align: center;
  }

  .toping-btn {
    padding: 14px 18px;
    font-size: 14px;
  }

  .trustpilot img,
  .google-reviews img,
  .company-logo {
    height: 26px;
  }
}

@media (max-width: 480px) {
  .toping-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .trustpilot img,
  .google-reviews img,
  .company-logo {
    height: 24px;
  }

  .top-bar-content {
    gap: 20px;
  }

  .breadcrumbs {
    font-size: 13px;
  }

  .breadcrumbs a {
    font-size: 13px;
  }
}

/* footer section */

.footer {
  background-color: #0d2a58;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 260px;
}

.footer-column img {
  margin-top: 20px;
}

.footer h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Besley", sans-serif;
}

.footer p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.footer a {
  color: #00bcd4;
  text-decoration: none;
}

.vw img {
  margin-top: 40px;
  max-width: 100px;
  float: right;
}

.quick-links,
.contact-info {
  list-style: none;
  padding: 0;
}

.quick-links li,
.contact-info li {
  font-family: "Segoe UI", sans-serif;
  margin-bottom: 20px;
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
}

.quick-links li a {
  color: #fff;
}

.quick-links li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.quick-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #6ec1e4;
  transition: width 0.3s ease;
}

.w-c {
  color: #fff !important;
}

.quick-links li a:hover::after {
  width: 150%;
}

.quick-links li i,
.contact-info li i {
  margin-left: 5px;
}

.search-box {
  display: flex;
  margin-top: 20px;
  max-width: 400px;
  height: 50px;
}

.search-box input {
  flex: 1;
  border: none;
  font-size: 16px;
  padding: 0 15px;
  height: 120%;
  box-sizing: border-box;
  background-color: #f1f2f3;
  outline: none;
  border: none;
}

.search-box button {
  background-color: #54595f;
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #c9c7c7;
  font-weight: 400;
  line-height: 26px;
}

.footer-bottom a {
  color: #00c1d4;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  border-radius: 2px;
  text-decoration: none;
}

/* Individual background colors */
.footer-socials .facebook {
  background-color: #3b5998;
}

.footer-socials .linkedin {
  background-color: #0077b5;
}

.footer-socials .twitter-x {
  background-color: #ffffff;
}

.footer-socials .email {
  background-color: #e74c3c;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .search-box {
    width: 100%;
  }
}

/* Whatsapp */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  font-size: 32px;
  padding: 15px;
  border-radius: 50%;
  z-index: 9999;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebd5a;
}

/* Scroll to Top */

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(3, 188, 212, 0.8);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none; /* hidden by default */
  transition: opacity 0.3s ease;
}

.scroll-top:hover {
  background-color: rgba(3, 188, 212, 1);
}
