@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: "Poppins", serif;
}


.navbar {
  z-index: 10;
}

.navbar ul li {
  margin: 0 20px;
  cursor: pointer;
  font-weight: 600;
}

img {
  object-fit: cover;
}

.navbar ul {
  /* backdrop-filter: blur(30px); */
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: #ffff;
}

.text-pry-color {
  background: linear-gradient(80.68deg,
      #008aed 13%,
      #3471ea 35%,
      #6655e7 57%,
      #7544bee3 67%,
      #ff0066 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-pry-color-animation {
  background: linear-gradient(80.68deg,
      #008aed 13%,
      #3471ea 35%,
      #6655e7 57%,
      #7544bee3 67%,
      #ff0066 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  /* Adjust as per your need */
  /* text-align: center; */
  /* Center align the text */
  /* margin: 20px; */
  /* Animation */
  background-size: 200% auto;
  /* Double the background size for animation */
  animation: shimmer 3s linear infinite;
  /* Infinite animation with a 3-second cycle */
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* Sidebar Styles */
.sidebar {
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px 20px;
  transition: all 0.4s ease-in-out;
  z-index: 100;
  opacity: 0;
}

.sidebar.visible {
  left: 0;
  opacity: 1;
}

/* Menu Item Styles */
.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-link {
  margin: 15px 0;
  transition: color 0.3s;
  color: rgb(108, 111, 147);
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.04em;
  /* margin: 0px; */
  font-weight: 600;
  font-family: Faktum, -apple-system, BlinkMacSystemFont, Inter;
  word-break: normal;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  appearance: none;
  /* cursor: pointer; */
}

.menu-link:hover {
  color: #03a9f5;
}


.carousel {
  position: relative;
  width: 98%;
  top: 0;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  margin: 16px;
}

.layout-img {
  position: absolute;
  height: 500px;
  /* background-color: black; */
  /* opacity: 0.1; */
  width: 100%;
  z-index: 1;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  display: block;

}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.174);
  color: white;
  border: none;
  /* padding: 10px; */
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  z-index: 1;
  /* box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
  border: 2px solid white; */
  margin: 0 30px;
}

.carousel-control:hover {
  background-color: #2B8CFF;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}




.txt-carousel {
  position: relative;
  width: 600px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
  /* border: 2px solid #ccc; */
}

.txt-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 280px;
}

.txt-carousel-item {
  min-width: 100%;
  height: 100%;
}

.txt-carousel-item h1 {
  width: 100%;
  display: block;
}

.txt-carousel-dots {
  display: flex;
  justify-content: start;
  margin: 0 0 10px 0;
  /* border: 1px solid black; */
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.txt-active {
  background-color: #2B8CFF;
}




.container {
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* Internet Explorer 10+ */
  overflow-y: scroll;
  /* Enable vertical scrolling */
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 350px;
}

.container::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  width: 380px;
  margin: 12px 0;
  padding: 16px;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3a4df452;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* width: 280px; */
  /* margin-bottom: 40px; */
}

.content p {
  font-size: 24px;
  /* background: linear-gradient(80.68deg,
      #008aed 13%,
      #3471ea 35%,
      #6655e7 57%,
      #7544bee3 67%,
      #ff0066 100%); */
  /* background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-weight: 600;
  color: #fff !important;
  font-size: 24px;
}

.content span {
  font-size: 16px;
  /* color: #00000088; */
  color: #fff;
  margin: 20px 0;
}

.scroll-banner {
  position: sticky;
  top: 100px;
}

:where(.scroll-frame1, .scroll-frame2) {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0 0 0 100px;
}

.gk-frames-list {
  max-width: 80%;
}

.list-of-scrolling-title {
  margin: 10%;
}

.list-of-scrolling-title h1 {
  font-size: 50px;
  line-height: 75px;
  font-weight: 400;
}

.list-of-scrolling-title p {
  font-size: 20px;
  margin: 1.5rem auto;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.scroll-text-header-grd {
  background: linear-gradient(72deg,
      #008bedcc 0.25%,
      #6755e7c4 6.25%,
      #7544bee6 10.25%,
      #b3008bde 9.25%,
      #ff0066d9 18.25%,
      #ff3900e8 32.25%,
      #ff4e00e0 50.25%,
      #ff6d00de 50.25%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.scroll-frame1-img {
  height: 600px;
  width: 720px;
  overflow: hidden;
  z-index: 2;
  border-radius: 20px;
}

.gk-wb-text-gradient {
  background: linear-gradient(80.68deg,
      #008bedcc -0.13%,
      #6755e7c4 14.6%,
      #7544bee6 25.41%,
      #b3008bde 38.18%,
      #ff0066d9 52.91%,
      #ff3900e8 67.64%,
      #ff4e00e0 81.4%,
      #ff6d00de 98.09%);

  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1100px) {
  .scroll-frame1 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .scroll-banner {
    width: 100%;
    background: white;
  }

  .gk-frames-list {
    width: 100%;
    margin: 50px 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  /* .column-reverse{
   display: flex  !important;
    flex-direction:column-reverse !important;
   border: 1px solid red;
  } */
  .scroll-frame2 {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  .carousel-inner{
    height: 100%;
  }
  .carousel-inner img{
    height: 100%;
  }

}

@media (max-width: 600px) {
  .scroll-banner {
    /* width: 100%; */
    background: white;
    width: 360px;
  }

  .gk-frames-list {
    width: 100% !important;
    /* margin: 50px 0; */
  }

  .content {
    width: 80%;
  }

  .content p {
    font-size: 18px;
  }
  .content span {
    font-size: 14px;
  }

  .icon {
    width: 30px;
    height: 30px;
  }

  .card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    width: 340px;
    margin: 12px 0;
    padding: 16px;
  }

  .scroll-frame1-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    border-radius: 20px;
  }

}

@media (max-width: 950px) {
  .responsive-grid-tab {
    font-size: 12px;
  }

  .mobile-width-tab {
    width: 75% !important;
  }

  .tab-font {
    font-size: 14px !important;
  }

  .tab-headings {
    font-size: 34px;
  }

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 14px;
  }
  .carousel {
    height: 250px;
    margin: 0;
  }
  .carousel-inner{
    height: 100%;
  }
  .carousel-inner img{
    height: 100%;
  }

  .carousel-control {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    /* padding: 10px; */
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size:14px;
    border-radius: 4px;
    z-index: 1;
    /* box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
    border: 2px solid white; */
    margin: 0 30px;
  }
}

@media(max-width: 750px){
  .responsive-grid {
    grid-template-columns: 1fr;
    text-align: center;
    font-size: 14px;
  }
}

@media(max-width: 480px) {

  .mobile-font {
    font-size: 13px !important;
  }

  .mobile-width {
    width: 90% !important;
  }

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 14px;
  }

  .mobile-headings {
    font-size: 28px;
  }

}

.dropdown-arrows::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  margin: auto;
}

.dropdown-arrows {
  position: relative;
  top: -8px;
  right: 5px;
  color: #fff;
}


.dropdown-arrows::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  margin: auto;
}

.dropdown-arrows {
  position: relative;
  top: -8px;
  right: 5px;
  color: #fff;
}

.headerSolution {
  text-decoration: none;
  /* padding: 8px; */
}

.headerSolution .solution-list {
  display: none;
  flex-direction: column;
  border-radius: 6px;
  position: absolute;
  width: 200px;
  padding: 8px;
}

.header-list li:hover {
  cursor: pointer;
}

.header-list-li:hover {
  /* color: var(--highlight-color); */
}

.headerSolution:hover .solution-list {
  display: flex;
  /* transition-delay: 200ms; */
  padding: 4px;
  color: #222;
  box-shadow: 0 11px 90px 0 rgba(65, 67, 132, 0.13);
  background: #FFF;
}

.headerSolution .solution-list li {
  display: flex;
  gap: 10px;
  height: 33px;
  justify-content: start;
  padding: 6px 8px 6px 8px;
  width: 180px;
  margin: 4px;
  border-radius: 4px;
  font-size: 12px !important;
  z-index: 10;
}

.headerSolution .solution-list:hover {
  display: flex;
}

.headerSolution .solution-list li:hover {
  background-color: #03a8f512;
}

.solution-list:hover {
  display: flex;
  /* background: #FFF; */
}

.map-container {
  width: 100%;
  /* max-width: 800px; */
  margin: 20px auto;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Base styles for all list items */
.fencing-types li {
  position: relative;
  padding-left: 32px; /* Spacing for the icon */
  list-style: none; /* Remove default bullets */
  background: linear-gradient(80.68deg,
  #008aed 13%,
  #3471ea 35%,
  #6655e7 57%,
  #7544bee3 67%,
  #ff0066 100%);
background-clip: border-box;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 12px;
/* Adjust as per your need */
/* text-align: center; */
/* Center align the text */
/* margin: 20px; */
/* Animation */
background-size: 200% auto;
/* Double the background size for animation */
animation: shimmer 3s linear infinite;
}

.fencing-types li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  fill:navy;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="navy" d="m8.6 22.5l-1.9-3.2l-3.6-.8l.35-3.7L1 12l2.45-2.8l-.35-3.7l3.6-.8l1.9-3.2L12 2.95l3.4-1.45l1.9 3.2l3.6.8l-.35 3.7L23 12l-2.45 2.8l.35 3.7l-3.6.8l-1.9 3.2l-3.4-1.45zm2.35-6.95L16.6 9.9l-1.4-1.45l-4.25 4.25l-2.15-2.1L7.4 12z"%3E%3C/path%3E%3C/svg%3E') no-repeat center center;
  background-size: contain;
}

/* Highlight specific items with different icons */
.fencing-types li:nth-child(14)::before {
  background: url('special-icon-10.svg') no-repeat center center;
}

.fencing-types li:nth-child(20)::before {
  background: url('special-icon-20.svg') no-repeat center center;
}

.fencing-types li:nth-child(30)::before {
  background: url('special-icon-30.svg') no-repeat center center;
}

#whatsapp .wtsapp{
  position: fixed;
  transform: all .5s ease;
  background-color: #25d366;
  display: block;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  border-radius: 50px;
  border-right: none;
  color:#fff;
  font-weight: 700;
  font-size:30px;
  bottom: 40px;
  left: 20px;
  border: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 9999;
  }
  #whatsapp .wtsapp::before {
                content: '';
                position: absolute;
                z-index: -1;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                display: block;
                width: 60px;
                height: 60px;
                background-color: #25d366;
                border-radius: 50%;
                -webkit-animation:  pluse-border 1500ms ease-out infinite;
                animation:  pluse-border 1500ms ease-out infinite;

  }
  #whatsapp .wtsapp:focus {
                border: none;
                outline: none;
  }
  @keyframes pluse-border{
                0%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;  }
                100%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;  }

  }
  #phone .phone-call{
    position: fixed;
    transform: all .5s ease;
    background-color: #0a41fe;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border-radius: 50px;
    border-right: none;
    color:#fff;
    font-weight: 700;
    font-size:30px;
    bottom: 40px;
    right: 30px;
    border: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    z-index: 9999;
    }
    #phone .phone-call::before {
                  content: '';
                  position: absolute;
                  z-index: -1;
                  left: 50%;
                  top: 50%;
                  transform: translateX(-50%) translateY(-50%);
                  display: block;
                  width: 60px;
                  height: 60px;
                  background-color: #0a41fe;
                  border-radius: 50%;
                  -webkit-animation:  pluse-border 1500ms ease-out infinite;
                  animation:  pluse-border 1500ms ease-out infinite;

    }
    #phone .phone-call:focus {
                  border: none;
                  outline: none;
    }

    #customer .customer-support{
      position: fixed;
      transform: all .5s ease;
      background-color:  #25d366;
      display: block;
      text-align: center;
      box-shadow: 0 0 20px rgba(0,0,0,0.15);
      border-radius: 50px;
      border-right: none;
      color:#fff;
      font-weight: 700;
      font-size:30px;
      bottom: 140px;
      right: 30px;
      border: 0;
      width: 60px;
      height: 60px;
      line-height: 50px;
      z-index: 9999;
      }
      #customer .customer-support img{
                    width:60px;
                    height: 60px;
                    border-radius: 100%;
      }

      #customer .customer-support::before {
                    content: '';
                    position: absolute;
                    z-index: -1;
                    left: 50%;
                    top: 50%;
                    transform: translateX(-50%) translateY(-50%);
                    display: block;
                    width: 62px;
                    height: 62px;
                    background-color: #25d366;
                    border-radius: 50%;
                    -webkit-animation: pluse-border-2 1500ms ease-out infinite;
                    animation:  pluse-border-2 1500ms ease-out infinite;

      }
      #customer-support .customer-support:focus {
                    border: none;
                    outline: none;
      }
      @keyframes pluse-border-2{
                    0%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;  }
                    100%{transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.2); opacity: 0;  }

      }

/* .insta */