* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 -webkit-tap-highlight-color: transparent;
  /* For mobile tap highlight */
  -webkit-focus-ring-color: transparent;
  /* For Safari blue ring */
  outline: none;
    scroll-behavior: smooth;
}

body {
    background-color: #f7f9fc;

    font-weight: 300;
    word-break: normal;
    word-wrap: wrap;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;


}


@media(max-width:1100px) {
  .footer-column-list {
    gap: 80px;
  }

  .footer-column-right {
    margin-left: 4vw;
  }
}

nav {
    height: 60px;
    width: 100vw;
    top: 0;
    z-index: 999999;
    background-color: white;
    padding-left: 4vw;
    padding-right: 4vw;
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bac-btn a {
    text-decoration: none;
    color: #092e55;

}

.bac-btn {
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
}

.logo {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #092e55;
    text-align: right;
}

/* nav completed */
header {

    width: 95vw;
    margin-left: 2.5vw;
}

.hero {
    height: fit-content;
    background: url('');
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    width: 95vw;
    margin-top: 60px;
    overflow-x: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-btn {
    padding: 14px 30px;
    background-color: #ffc107;

    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-btn a {
    color: #000;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #e0a800;
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 12px 25px;
    }
}

.abtus {
    width: 100vw;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-block: clamp(60px, 8vw, 100px);
}

.abtus h2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


    position: relative;
    font-size: clamp(25px, 3vw, 36px);
background: linear-gradient(45deg, red, blue);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent; /* optional fallback */
z-index: 1;


    margin-bottom: clamp(20px, 3vw, 30px);
}

.abtus h2::after {
    content: '';
    position: relative;
    width: 30%;

    height: 5px;
    z-index: 9999;
    border-radius: 10px;
    background: linear-gradient(to right, teal 0%, #092e55 30%, #092e55 70%, teal 100%);

}

h2:hover::after {
    animation: animatebefore 2s linear;
}

@keyframes animatebefore {
    0% {

        width: 30%;

    }

    50% {
        width: 50%;
    }

    100% {
        width: 30%;
    }
}

.abtus p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 24px;
    font-weight: 500;
}

.abtus ul {
    list-style-type: disc;
    font-weight: 450;
    margin: 20px 20px 20px 40px;
}

.abtus li {
    margin-bottom: 5px;
    font-size: clamp(14px, 2vw, 16px);

}

.abtus li i {
    color: #092e55;
}

.abtus h3 {
    margin-top: 40px;
    color: #092e55;
    text-decoration: underline;
}

.img-owner {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 200px;
    border-radius: 10px;
    margin: 30px 0px 30px 0px;
    overflow: hidden;
}

.img-owner img {
    position: absolute;
    width: 100%;
    height: 100%;
    scale: 1;
    filter: grayscale(0.9);


}

.img-owner img:hover {
    animation: animateimgowner 8s ease;
}

@keyframes animateimgowner {
    0% {
        filter: grayscale(0.9);
        scale: 1;
    }

    10% {
        scale: 1.1;
        filter: grayscale(0);
    }

    100% {
        scale: 1;
        filter: grayscale(0.9);
    }
}




.footer {

  padding: 60px 20px 30px;
  color: rgb(162, 162, 162);
  font-size: 14px;
  background-color: white;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow-x: hidden;

  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 10px;
  color: #092e55;
}

.footer-column-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 18vw;
  margin-left: 4vw;
  margin-right: 4vw;
    color: #092e55;
}

.footer-left-icons {
  display: flex;
  gap: 20px;
  width: 10vw;
  font-size: 24px;
  color: #092e55;

}

.footer-column-left p {
  line-height: 20px;
  color: black;

}

.footer-column-list {
  display: flex;
  justify-content: center;
  width: 35vw;
  gap: 150px;
}

.footerList h4 {
  margin-bottom: 20px;
  font-size: 13px;
  color: black;
  font-weight: 700;
  letter-spacing: 1.5PX;
}


.footerList li {
  margin-top: 10px;
  list-style: none;
  color: black;
  font-size: 14px;
  font-weight: 500;

}
.footerList  li a{
    color: #092e55;
}

.second-list {
  margin-left: 20px;
}

.footer-column-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: black;
  margin-right: 4vw;
}

.footer-column-right h4 {

  font-size: 15px;
  color: #092e55;
  font-weight: 700;
  letter-spacing: 1.5PX;

}

.footer-end {
  border-top: 2px solid rgba(163, 156, 156, 0.53);
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-between;
  height: 100px;
  align-items: center;


  margin-top: 100px;
}

.buttons-footer {
  display: flex;
  flex-direction: row;
  width: 40vw;


}

.footer-btn {
  background-color: #092e55;
  border: 1px solid #092e55;
  color: white;
  width: 100%;
  max-width: 165px;
  height: 50px;
  font-size: clamp(10px, 2vw, 18px);
  margin-left: 1.5vw;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-btn a{
  text-decoration: none;
  color: white;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
  cursor: pointer;
}

.footer-copy {
  width: 50vw;
  margin-right: 4vw;
  display: flex;
  justify-content: flex-end;
  color: black;
}

@media(max-width:1100px) {
  .footer-column-list {
    gap: 80px;
  }

  .footer-column-right {
    margin-left: 4vw;
  }
}

@media(max-width:780px) {
  .footer-end {
    flex-direction: column;
  }

  .buttons-footer {
    width: 100vw;
    justify-content: center;
    margin-top: 30px;
  }

  .footer-copy {
    width: 100vw;
    justify-content: center;
  }

  .footer-column-list {
    gap: 80px;
  }

  .footer-left-icons {
    font-size: 20px;
  }

  .footer-column-left {
    width: 20vw;
  }

  .footer-column-list {
    width: 35vw;
    justify-content: flex-start;
    margin-left: 15vw;
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .footer-container {
    justify-content: flex-start;
  }
}

@media(max-width:500px) {
  .footer-column-left {
    width: 90vw;


  }

  .footer-left-icons {
    font-size: 16px;
  }

  .footer-left-icons {
    width: 90vw;
    display: flex;

  }

  .footer-column-list {
    width: 100vw;
    flex-wrap: wrap;
    gap: 40px;
    margin-left: 4vw;
    margin-right: 4vw;

    align-items: center;


  }

  .second-list {
    margin-left: 0px;
  }

  .footer-container {
    justify-content: flex-start;
  }

  .footer-column-right {
    width: 100vw;
    margin-left: 4vw;
    margin-right: 4vw;

  }

  .footer-buttons {
    width: 90vw;
  }

  .footer-btn {
    width: 90vw;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    max-width: 140px;
    height: 50px;
    font-size: 15px;
  }
}


.hero {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('waterproofing-background.jpg.png'); /* Adjust path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.cta-btn {
  background-color: #ffc107;
  color: #000;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-btn a {
  color: inherit;
  text-decoration: none;
}

@media(max-width:330px) {
  .footer-column-list {
    margin-left: 0;
  }

}

@media(max-width:330px) {
  .footer-column-list {
    margin-left: 0;
    width: 90vw;
    margin-left: 4vw;

  }



  .footer-btn {
    width: 90vw;
    justify-content: center;
    align-items: center;

    max-width: 140px;
    height: 50px;
    font-size: 12px;
  }
}





/* ---end footer--- */




/* whatsapp-icon */
.wats-ico {
  position: fixed;
  top: auto;
  bottom: 30px;
  left: auto;
  right: 6vw;
  display: flex;
  z-index: 99999;
  flex-direction: column;



}

.wats-ico p {

  position: absolute;
  margin-left: 35%;

  animation: up-down 1.5s linear infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(-12px);
  }
}

.wats-ico a {
  text-decoration: none;
  font-size: 40px;

}

.fa-brands {
  color: #25D366;


}

.footer-left-icons a{
  text-decoration: none;
   color: rgb(11, 74, 74);
}

/* fade in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}