@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* max-width: 100%; */
}

:root {
  --cgold: rgb(209, 154, 15);
  /* --cbeige: beige; */
  --cbeige: rgb(243, 243, 224);
  --bgblue: #0c1023;
  --primary: #ec994b;
  --white: #ffffff;
  --bg: #f5f5f5;
  --footer-height: 100px;
}

html {
  background-image: url(bg.svg);
  scroll-behavior: auto;
}

html,
body {
  font-family: "Poppins", sans-serif;
  perspective: 1000px;
  height: 100%;
  max-width: 100%;
  margin: 0;
  /* overflow-x: hidden; */
  /* background-color: var(--bgblue); */
  /* background: url('bg.svg'); */

}

.top-bar {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 25px;
  background: var(--cgold);
  font-size: 1.3rem;
  height: 30px;

}

.top-bar span {
  display: inline-flex;
  color: #3e3c3c;
  margin-top: 0.5rem;

  .call {
    /* margin-top: 3px; */
    display: inline-flex;
    align-items: center;
    /* padding-bottom: .25rem; */

  }


}

.top-bar ul {
  list-style: none;
  display: flex;
  align-items: center;

  padding-top: 0.5rem;
}

/*
.top-bar li{
margin: 3px 1px;
} */
.top-bar a {
  color: #2e2b2b;

}

.top-bar a:hover {
  color: rgb(8, 3, 26);

}


.btn-animated {
  display: inline-block;
  padding: 14px 14px;
  margin-top: 10px;
  background-color: var(--cgold);
  /* Navy Blue */

  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.btn-animated::before {
  content: '';

  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  /* background: #1a237e; */
  background-color: var(--cgold);
  color: white;

  /* Yellow overlay on hover */
  /* z-index:1; */
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.4s ease;
}

.btn-animated:hover::before {
  height: 500%;
}

.btn-animated:hover {
  color: #000;
  scale: 1.05;
  transition: 0.5s ease;
}

.btn-animated div {

  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  /* gap: 10px; */
  color: black;
  font-weight: 700;

}

.btn-animated i {
  font-size: 16px;
}

/* Navbar Container */
.navbar {
  margin: 0 0;
  background-color: rgb(12, 16, 35, 0.6);

  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: #0c1023; */
  padding: .7vw 1vw;
  position: relative;
  font-size: 1.5vw;
  z-index: 1000;
}

.logo {


  /* background-color: red; */
  height: auto;
  width: 22vw;
  margin-right: 0.5rem;

  img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
  }
}

/* Menu Links */
.nav-links {
  /* background-color: red; */
  position: relative;
  display: flex;
 
  align-items: center;
  list-style: none;
  gap: 13vw;
  /* margin: 0 1rem; */
}

.nav-links .right {
  /* background-color: blue; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  margin-left: 2rem;
}

.nav-links .right li {
  cursor: pointer;
  /* margin-right: 2vw; */
}

/* Links */
.nav-links a {
  margin: 1rem;  
  color:var(--cbeige);
  text-decoration: none;
  font-size: 1.3vw;
  opacity: 1;
  transform: none;
  transition: color 0.3s;

}

.nav-links a:hover {
  color: #ffcc00;

}

.nav-links li {
  position: relative;
}

.nav-links a span {
  padding: 0.8rem;
  position: absolute;
  /* background-color: red; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  border-bottom: 3px solid rgb(218, 165, 32);
  /* border-top: 4px solid rgb(223, 175, 15); */
  border-radius: 1rem;
  transform: scale(0) translateY(50px);
  opacity: 0;
  transition: .5s;
}

.nav-links a:hover span {
  transform: scale(1) translateY(0);
  opacity: 1;

}




/* Hamburger Button */
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {

  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  left: 0;
  transition: 0.4s ease;
  border-radius: 2px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

/* Animate into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}







@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* navbar end */

.heading {
  margin-bottom: 4.5rem;
  /* display: flex;
    justify-content: center; */

  height: auto;
  max-width: 100%;
  color: beige;



}

.heading-inner-l1 h1 {
  text-shadow: -3px -3px 1px #000000, 1px 1px 1px #000000;
  padding: 2rem;
  padding-top: 2.2rem;
  text-align: left;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  font-family: sans-serif;
  text-transform: uppercase;
  text-spacing-trim: 3px;
  max-width: 100%;
  
}

.heading-inner-l2 {
  /* position: sticky; */
  /* padding: 4px; */
  display: flex;

  /* margin: 20px; */
  font-size: 15px;
  padding-bottom: 1rem;
  

  /* width: 900px; */
  .hero-img {
    img {
      /* border-radius: 5.5%; */
      position: relative;
      /* padding-right: 30px; */
      height: 100%;

      width: 100%;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.872) 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, rgb(192, 40, 40) 90%, transparent 100%);
      /*to makr img fade from bottom*/
      /* box-shadow: rgba(0, 0, 0, 5) 0px 22px 70px 8px; */
    }

  }
}

/* Notched corner container */
.notched-container {
  position: relative;
  margin-left: 20px;
  margin-bottom: 20px;
  display: inline-block;
  /* border: 4px solid white; Optional: match your site design */
  overflow: hidden;
}

/* Image inside the container */
.notched-img {
  display: block;
  width: 400px;
  height: auto;
}

/* Top-left notch */
.notched-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 40px solid #0c1023;
  /* Match with your page background */
  border-right: 40px solid transparent;
  z-index: 2;
}

/* Bottom-right notch */
.notched-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 40px solid #0c1023;
  /* Match with your page background */
  border-left: 40px solid transparent;
  z-index: 2;
}

.hero-div1 {
  display: grid;
  place-items: center;
font-size: 16px;
  p {
    margin-left: 50px;
    padding: 25px;
  }
}

.hero-div2 {
  display: flex;
  width: 500px;

  height: 110px;
  margin: 20px;
  background-color: var(--cgold);

  justify-content: space-evenly;
  align-items: center;

  /* padding-left: 20px; */
  img {

    padding-left: 8px;
    padding-right: 8px;
    height: 5rem;
    width: 8rem;

  }
}
.hero-div2 h1{
  font-size:1.5rem;
}
.hero-div2 h4{
  font-size: 0.9rem;
}
  .hero-div3 {
    padding-left: 14px;
  }




.element-licence {
  height: 275px;
  width: 100%;
  background: var(--cbeige);
  margin: 0px;
  position: sticky;

  .l1 {


    border-style: groove;
    height: 100%;
    max-width: 100%;
    color: var(--bgblue);
    padding: 20px;
    border: thick double var(--bgblue);

    .l2 {

      justify-content: center;
      align-items: center;
      display: flex;
      font-size: 22px;
      gap: 40px;

      .l2-img img {

        width: 200px;
        /* filter: drop-shadow(0 0 0.75rem crimson); */
        filter: drop-shadow(2px 3px 4px);
      }

    }


    h1 {

      filter: drop-shadow(2px 2px 1px);
    }

    h4,
    h2 {
      text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
      /* embosing effect */
    }

  }

}



.whorwe-l1 {
  padding: 20px;
  font-size: 1.2rem;
  /* font-family: sans-serif; */
  color: var(--cbeige);

  line-height: normal;

  height: auto;
  /* background-color: rgb(104, 61, 61); */

}

.whorwe_heading {
  font-size: 1.5rem;

  /* font-weight: 200; */
}

.element-whorwe {
  /* position: relative; */
  display: flex;
  padding: 7rem 0;
  padding-bottom: 40px;
  display: flex;
  max-width: 100%;
  overflow: hidden;
}
.element-whorwe h5{
  line-height: 1.3rem;
}
.Highlight{
  background: #0c1023; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.Highlight h5{
padding-bottom:5px; line-height: 1.1rem;
}

.Highlight h4{
  padding-bottom:5px;  color: rgb(209, 154, 15);
}
.line-seperator-s {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 1rem;
  margin-right: 1rem;
  width: 50vw;
  height: 0.3vh;
  background: linear-gradient(to left, #fdd835, #0c1023);
  border-radius: 2px;
}

.line-seperator-e {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 1rem;
  margin-right: 1rem;
  width: 50vw;
  height: 0.3vh;
  background: linear-gradient(to right, #fdd835, #0c1023);
  border-radius: 2px;
}

.whorwe-l2 {
  margin: 10px 10px;
  display: flex;
  position: relative;
  line-height: normal;
}

.whorwe-l2-img1 {
  /* position: relative; */

  top: 0;

  left: 0;

  img {
    min-height: 500px;
    width: 400px;
  }
}

.whorwe-l2-img2 {
  position: absolute;
  top: 50%;
  left: 40%;



  img {
    border: 10px solid #fff;
    /* height: 100%; */
    /* width: 100%; */
    object-fit: fill;
    min-height: 150px;
    width: 400px;

  }
}



.counter-section {

  margin-top: 55px;
  margin-left: 10px;
  background: var(--cgold);
  /* navy blue */
  width: 225px;
  height: 215px;
  color: white;
  text-align: center;
  /* padding: 2px 0px; */
  font-family: 'Segoe UI', sans-serif;
  display: grid;
  justify-content: center;
}

.counter-box {

  line-height: 1.2;
  padding-bottom: 2px;

  /* background-color: red; */
  /* display: grid; */
  p {
    font-weight: 400;
    font-size: 16px;
  }
}

.counter,
.counter-box h2 {
  font-size: 4rem;
  font-weight: bold;
  color: var(--cbeige);
  /* yellow */

}

.counter+p {
  font-size: 2 rem;
  /* margin-top: 10px; */
}

.intro-text {
  margin: top -2px;
}

.roles-container {
  font-size: 40px;
  overflow: hidden;
  position: relative;
}

.role {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: var(--cgold);
  font-style: italic;
  animation: role-change 6s infinite;
  /* animation-delay: 1s; */
}

@keyframes role-change {

  10% {
    transform: translateY(-102%);

  }

  2% {

    transform: translateY(-100%);

  }

  35% {
    transform: translateY(-202%);

  }

  50% {
    transform: translateY(-200%);

  }

  60% {
    transform: translateY(-302%);

  }

  75% {
    transform: translateY(-300%);
  }

  85% {
    transform: translateY(-402%);
  }

  100% {
    transform: translateY(-400%);
  }

}





.section-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;

}

.top-row {
  display: flex;
  /* flex-wrap: wrap; */
  position: relative;
}

.left-image {
  /* flex: 1 1 50%; */
  position: relative;
  height: 500px;
  width: 350px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-image img {

  width: 400px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;

}

.stats-box {
  flex: 1 1 50%;
  background: #f4600c;
  /* orange */
  color: white;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}

.stats-box h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
}

.stats-box p {
  font-size: 1.2rem;
  margin: 10px 0 30px;
}

.stats-box .stat {
  margin-bottom: 20px;
}

.overlay-image {
  position: absolute;
  bottom: -50px;
  left: 120px;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 5px solid white;
  /* border-bottom-right-radius: 30px; */
  overflow: hidden;
}

.overlay-image img {
  width: 375px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .top-row {
    flex-direction: column;
  }

  .overlay-image {
    position: static;
    margin-top: 20px;
    border-radius: 0;
    border: none;
  }

  .overlay-image img {
    width: 100%;
  }
}

.element-client {
  background-color: var(--cbeige);
  font-size: 30px;
  color: var(--bgblue);
  font-weight: 600;
  font-family: sans-serif;
  padding: 20px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
  padding-top: 20px;
  padding-bottom: 20px;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.image-card {
  cursor: pointer;
  min-width: 300px;
  height: 200px;
  margin: 0 10px;
  border: 2px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  flex-shrink: 0;

}

.image-card:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;

}

.image-card img {

  width: 300px;
  height: auto;
  object-fit: cover;

}


/* Infinite Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}






/* products-page slider */

.slider {
  height: 400px;
  margin-top: -50px;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.slider .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}

.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.slider .list .item .content .title,
.slider .list .item .content .type {
  font-size: 5em;
  font-weight: bold;
  line-height: 1.3em;
}

.slider .list .item .type {
  color: #14ff72cb;
}

.slider .list .item .button {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.slider .list .item .button button {
  border: none;
  background-color: #eee;
  font-family: Poppins;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
  letter-spacing: 2px;
}


.slider .list .item .button button:hover {
  letter-spacing: 3px;
}

.slider .list .item .button button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}





/* Thumbnail Section  */
.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}


/* nextPrevArrows Section  */
.nextPrevArrows {
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nextPrevArrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #14ff72cb;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .5s;
  cursor: pointer;
}

.nextPrevArrows button:hover {
  background-color: #fff;
  color: #000;
}

/* Animation Part */
.slider .list .item:nth-child(1) {
  z-index: 1;
}


/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.slider .list .item:nth-child(1) .content .title {
  animation-delay: 0.4s !important;
}

.slider .list .item:nth-child(1) .content .type {
  animation-delay: 0.6s !important;
}

.slider .list .item:nth-child(1) .content .description {
  animation-delay: 0.8s !important;
}

.slider .list .item:nth-child(1) .content .buttons {
  animation-delay: 1s !important;
}




/* Animation for next button click */
.slider.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.slider.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}

.slider.prev .list .item img {
  z-index: 100;
}


@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}


.slider.next .thumbnail {
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}



/* Animation for prev button click */
.slider.prev .list .item:nth-child(2) {
  z-index: 2;
}

.slider.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px;
  }
}

.slider.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}

.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button {
  pointer-events: none;
}


.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description,
.slider.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

@media screen and (max-width: 678px) {
  .slider .list .item .content {
    padding-right: 0;
  }

  .slider .list .item .content .title {
    font-size: 50px;
  }
}



.product-section {
  min-width: 100%;
margin:3.5rem 0;
   max-width: 100%;
    height: auto;
    padding: 20px;
    color: var(--cbeige)
}

.prod-title-l1 {
    /* padding-top: 2rem; */
    display: block;
    color: var(--cbeige);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    font-family: sans-serif;
}
.prod-title-l1 p{
  padding-bottom: 1rem;
}
.prod-title-l2 {
    padding-top: 5px;
    font-size: 26px;
    font-family: sans-serif;
    font-weight: 600;
}

/* arrow-btn */
.btn-animated {
  width: 180px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 12px;
    /* margin-top: 10px; */
    /* background-color: #1a237e; */
    background-color: var(--cgold);
    /* Navy Blue */
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-animated::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 0;
    top: 50%;
    left: 50%;
    /* background: #fbc02d; */
    background-color: #1a237e; 
    
    /* Yellow overlay on hover */
    z-index: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.4s ease;
}

.btn-animated:hover::before {
    height: 500%;
}

.btn-animated:hover {
    color: #000;
}

.btn-animated span {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  
}

.btn-animated i {
    font-size: 18px;
    justify-content: center;
}


.product-main {
    padding: 30px;
    padding-top: 70px;
}

.prod-main-l1 {
   height: auto;
    /* height: 28rem; */
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);       */
display: flex;
overflow: visible;
    .description {
        /* padding: 20px; */
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .image {
/* background-color: red; */
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
padding: 20px 0;
        .image-1 {

            width: 275px;
            /* background-color: red; */
            height: 350px;
            position: relative;
            border: 8px solid var(--cblue);
            cursor: pointer;

            .overlay {
                position: absolute;
                border-radius: 23px;
                top: 1%;
                background: var(--cbeige);
                background: rgba(219, 205, 205, 0.5);
                /* Black see-through */
                color: #f1f1f1;
                width: 100%;

                opacity: 0;
                color: var(--bgblue);
                font-size: 20px;
                font-weight: 800;
                padding: 20px;
                text-align: center;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: fill;
                border-radius: 30px;
                border: 6px solid var(--cbeige);
                cursor: pointer;
            }

        }

        .image-1:hover .overlay {
            transition: 0.75s ease;
            opacity: 1;
            z-index: 1;

        }

        .image-1:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease-in-out;
        }

        .image-2 {
            margin-top: 40px;
            width: 275px;
            /* background-color: red; */
            height: 350px;
            position: relative;
            border: 8px solid var(--cblue);
            cursor: pointer;

            .overlay {
                position: absolute;
                border-radius: 23px;
                top: 1%;
                background: var(--cbeige);
                background: rgba(219, 205, 205, 0.5);
                /* Black see-through */
                color: #f1f1f1;
                width: 100%;

                opacity: 0;
                color: var(--bgblue);
                font-size: 20px;
                font-weight: 800;
                padding: 20px;
                text-align: center;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: fill;
                border-radius: 30px;
                border: 6px solid var(--cbeige);
                cursor: pointer;
            }

        }

        .image-2:hover .overlay {
            transition: 0.75s ease;
            opacity: 1;
            z-index: 1;
        }

        .image-2:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease-in-out;
        }
    }

    .description-l2 {
        margin-top: 10px;
        padding-left: 20px;
        height: auto;
    }
}
.description-inner-l1{
    margin:2rem 0;
    line-height: normal;
   
}
.description-l2{
    margin:2rem;
   line-height: normal;
}

.element-application {
  padding: 5rem .7rem;
  background-color: var(--cbeige);
  color: var(--bgblue);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  font-family: sans-serif;

  .heading-inner-l1 {
    padding-bottom: 20px;
  }

}
.element-heading-inner-l1{
  font-size: 30px;
  padding-bottom: 30px;
}

.swiper {
  width: 100%;
  height: 400px;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Customize the default arrow buttons */
.custom-button-next,
.custom-button-prev {
  position: absolute;
  top: 40%;

  transform: translateY(-50%);
  font-size: 50px;
  color: var(--cgold);

  padding: 10px 15px;
  z-index: 10;
  cursor: pointer;
  user-select: none;
}

.custom-button-next {
  right: 10px;
}

.custom-button-prev {
  left: 10px;
}

.custom-button-next:hover,
.custom-button-prev:hover {

  color: navy;
  transition: 0.3s;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 350px;
  position: relative;
  max-width: 300px;
  max-height: 300px;

  .slide-overlay {
    position: absolute;
    /* border-radius: 23px; */
    bottom: -10%;

    /* Black see-through */
    color: #f1f1f1;

    width: 98%;
    opacity: 1;
    color: var(--cbeige);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding-left: 2px;
    margin-left: 2px;
    text-align: center;
  }



}

.swiper-slide img {
  display: block;
  width: 300px;
  height: 350px;
  border-radius: 30px;
  border: 5px solid var(--bgblue);
}

.swiper-slide:hover .slide-overlay {
  /* color: var(--bgblue); */
  text-decoration: underline;
  font-size: 21px;
  transition: 0.75s ease;
}

/* services slider  */
.section {
  position: relative;
  width: 100%;
  min-width: none;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2196f3;
  /* overflow: hidden; */
}

.application-desc {
  font-size: 1rem;
  padding-bottom: 3rem;

}





/* footer start */

/* ======= Base Footer ======= */
footer {
  position: relative;
  width: 100%;
  color: var(--cbeige);
  padding: 40px 0 30px;
  border-top-left-radius: 125px;
  font-size: 10px;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  color: var(--cbeige);
}

.col {
  flex-basis: 25%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.col h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.col p {
  font-size: 14px;
  padding-top: 10px;
  line-height: 1.6;
}

.email-id,
.phone-number {
  display: flex;
  align-items: center;
  color: var(--cbeige);
  margin-bottom: 10px;
}

.email-id span {
  padding-left: 8px;
  font-size: 14px;
  border-bottom: 1px solid var(--cbeige);
}

.phone-number ion-icon,
.email-id ion-icon {
  padding-right: 8px;
  width: 18px;
  height: 18px;
}

footer ul li {
  list-style: none;
  margin-bottom: 12px;
}

footer ul li a {
  color: var(--cbeige);
  text-decoration: none;
  font-size: 14px;
  transition: 0.5s ease;
}

footer ul li a:hover {
  color: rgb(218, 165, 32);
  transform: translateX(-3px);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons ion-icon {
  width: 22px;
  height: 22px;
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 15px;
}

.footer-bottom {
  width: 100%;
  background-color: var(--bgblue);
  padding: 20px 0;
  text-align: center;
  color: var(--cgold);
  font-size: 14px;
}

/* 
.back-to-top {
  position: absolute;
  border: 2px solid var(--cgold);
  right: 24px;
margin-top:20px;
  
  top: 0;
  bottom: 130px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cgold);
  color: var(--bgblue);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(12, 16, 35, 0.2);
  z-index: 9999;
  /* very high so it sits above other elements */
  /* transition: transform .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;


   
} */

/* .back-to-top:hover {
  transform: translateY(-4px);
  background: var(--bgblue);
  color: var(--cgold);
  border: 2px solid var(--cgold);
} */ 
.back-to-top {
  position: absolute;

  right: 24px;
  

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--cgold);
  color: var(--bgblue);

  border: 2px solid var(--cgold);
  border-radius: 50%;

  text-decoration: none;
  font-size: 25px;
  font-weight: 1000;

  box-shadow: 0 8px 20px rgba(12,16,35,.25);
  z-index: 10;

  transition: all .3s ease;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--bgblue);
  color: var(--cgold);
}
/* footer-end */
/* back-to-top button */


/* whychooseus */

/* Main Section */
.why-choose-us {
  --df-navy: #002147;
  --df-yellow: #ffcc00;
  --df-black: #000;
  --df-white: #fff;

  background: var(--cbeige);
  padding: 60px 20px 100px;
  /* Extra bottom padding for sticky button */
  color: var(--cbeige);
  text-align: center;
}

.why-choose-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  color: var(--bgblue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--cgold);
  margin-bottom: 10px;
  font-weight: 300;
}

.microcopy {
  font-size: 0.9rem;
  color: var(--bgblue);
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--df-white);
  padding: 26px 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--cgold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--df-yellow);
  display: grid;
  place-items: center;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--df-black);
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-card p {
  font-size: .96rem;
  color: #333;
  line-height: 1.55;
}

.feature-card h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 8px auto 0;
  background: var(--df-yellow);
  opacity: .8;
  border-radius: 6px;
}

/* ===== Sticky CTA Button ===== */
.sticky-cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--df-yellow);
  color: var(--df-black);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: background .3s ease, transform .2s ease;
  z-index: 999;
}

.sticky-cta-btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* End of whychooseus section */



/* product page css */
/* Product Section */
/* product page start */
/* Reset */


/* Banner Section */
.banner-flange {
  position: relative;
  height: 270px;
  background: linear-gradient(rgba(12, 16, 35, 0.7), rgba(12, 16, 35, 0.7)),
    url("flange.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-buttweld {
  position: relative;
  height: 270px;
  background: linear-gradient(rgba(12, 16, 35, 0.7), rgba(12, 16, 35, 0.7)),
    url("buttweld.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-socketweld {
  position: relative;
  height: 270px;
  background: linear-gradient(rgba(12, 16, 35, 0.7), rgba(12, 16, 35, 0.7)),
    url("socketweld.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-olet {
  position: relative;
  height: 270px;
  background: linear-gradient(rgba(12, 16, 35, 0.7), rgba(12, 16, 35, 0.7)),
    url("assets/productspg_img/olet/OLET\ FITTINGS\ COVER\ \(1\).webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.buttweld-card-image {
  background-color: #0c1023;
  max-height: 250px;
  max-width: 250px;

}

.buttweld-card-image .img {
  width: 100%;
  height: 100%;

}

.banner-flange {
  position: relative;
  height: 270px;
  background: linear-gradient(rgba(12, 16, 35, 0.7), rgba(12, 16, 35, 0.7)),
    url("flange.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 3vw;
  color: #f5c518;
  /* yellow highlight */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.banner-content p {
  font-size: 1.6vw;
  color: #ffffff;
}

/* Product Section
.product-section {
  
  padding: 60px 20px;
  color: #fff;
} */

.container {
  max-width: 100%;
  padding: 2vw 2vw;
  /* background-color: rgb(188, 188, 188); */
  background-color: var(--cbeige);
}

.product-page-section {
  text-align: center;
  font-size: 2.5vw;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--bgblue);
  /* yellow heading */
  letter-spacing: 1px;

}
.product-page-section-title{
  color:var(--cgold);font-size: 2.5vw;
  padding-bottom: 20px;
}
.product-page-container{
  margin-top: 30px;
}

/* Product Grid */
.product-page-product-grid {
  display: grid;
  margin: 1rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
}

/* Product Card */
.product-page-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 70vh;
}

.product-page-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-page-product-image {
  height: 50%;
  width: 100%;


}

.product-page-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;

}

/* Info */
.product-page-product-info {
  padding: 20px;
  flex: 1;
}

.product-page-product-info h3 {
  font-size: 1.2rem;

  margin-bottom: 10px;
}

.product-page-product-info p {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #f5c518;
  font-size: 16px;
  /* yellow */
  color: #0c1023;
  /* navy text */
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: #0c1023;
  color: #f5c518;
  border: 1px solid #f5c518;
}

/* Responsive */
@media (max-width: 768px) {
  .banner {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 180px;
    padding: 20px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}


/* peoduct page end */


/* floating whatsapp btn */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 21vh;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}








/* contactus page */
.location {
  width: 80%;
  height: 35rem;
  height: auto;
  border-radius: 2%;
  display: flex;
  margin: auto;
  padding: 1rem 1rem;
  background-color: var(--cbeige);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(10, 15, 96, 0.902);
}

.location iframe {

  width: 90%;
  height: 30rem;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(53, 52, 50, 0.853);

}


/* ===== Intro Section ===== */
.contact-intro {
  text-align: center;
  padding: 50px 20px;
  /* background: linear-gradient(135deg, #0c1023, #1d2b64); */
  background-color: var(--cbeige);
  color: var(--bgblue)
    /* color: #fff; */
}

.contact-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-intro p {
  font-size: 1.1rem;
  opacity: 0.9;

}

/* ===== Contact Form ===== */
.contact-form {
  background: #fff;
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: 0.3s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f7c325;
  /* yellow */
  outline: none;
  box-shadow: 0 0 6px rgba(247, 195, 37, 0.4);
}

.contact-form button {
  background: #f7c325;
  color: #0c1023;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e5b71f;
}






#submitBtn {
  position: relative;
  overflow: hidden;
}

#submitBtn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

#submitBtn.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid #0c1023;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

#formStatus {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ===== Contact Info Section ===== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.contact-info div {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 8px;
  color: #0c1023;
}




/* ===== Social + Subscribe ===== */
.social-subscribe {
  text-align: center;
  padding: 40px 20px;
  background: #0c1023;
  color: #fff;
}

.social-subscribe h3 {
  margin-bottom: 12px;
}

.social-subscribe form {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-subscribe input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 280px;
  max-width: 100%;
}

.social-subscribe button {
  background: #f7c325;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  color: #0c1023;
}

.social-subscribe button:hover {
  background: #e5b71f;
}

/* ===== Responsive Media Queries ===== */
@media (max-width: 768px) {
  .contact-intro h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    margin: 20px;
    padding: 20px;
  }

  .location iframe {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .contact-intro h2 {
    font-size: 1.5rem;
  }

  .contact-intro p {
    font-size: 1rem;
  }

  .contact-form button,
  .social-subscribe button {
    width: 100%;
  }

  .social-subscribe form {
    flex-direction: column;
  }
}




/* flange page */

.flange-page-body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #0c1023;
  background-color: #f8f9fa;
  padding: 40px 20px;
}

.flange-page-section {
  max-width: 100%;

  margin: 60px 60px;
  padding-bottom: 40px;
}

.flange-page-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #0c1023;
}

.flange-page-note-box {
  background: linear-gradient(135deg, #1a2038, #12172a);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 28px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.flange-page-note-box strong {
  color: #ffd84d;
}

/* GRID */
.flange-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 30px;
}

/* CARDS */
.flange-page-card {
  background: linear-gradient(180deg, #161d34, #0d1326);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.flange-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.flange-page-card img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.flange-page-card h3 {
  margin: 12px 0;
  font-size: 18px;
  color: #ffd84d;
}

.flange-page-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.flange-page-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #cfd5e3;
  border-left: 3px solid #ffd84d;
  padding-left: 8px;
}

.flange-page-card p {
  font-size: 15px;
  color: #cfd5e3;
  margin: 0;
}

/* IMAGE STYLE */
.flange-page-card img {
  width: 100%;
  height: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  background: #0c1023;
}

.flange-page-container {
  max-width: 100%;
  padding: 2vw 2vw;
  background-color: #cfd5e3;
}

.product-page-section .section-title {
  text-align: center;
  font-size: 2.2vw;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--bgblue);
  /* yellow heading */
  letter-spacing: 1px;

}

.product-page-l1 {
  padding: 1rem .1rem;
  border: 4px solid rgb(209, 154, 15);
  background-color: var(--cbeige);
  font-size: 1.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-page-l1 p {
  line-height: 39px;
}

/* Product Grid */

.flange-grid {

  display: grid;
  margin: 1rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
}

/* Product Card */
.flange-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  border: 4px solid rgb(209, 154, 15);
}

.flange-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}

.flange-product-image {
  padding: 2px 2px;
  height: 100%;
  width: 50%;
  border-radius: 4px;
  /* background-color: red; */
}

.flange-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
  border-radius: 4px;
}

/* Info */
.flange-product-info {
  /* padding: 20px; */
  position: relative;
  /* background-color:blue; */
  flex: 1;
  height: 100%;
  width: 50%;
  /* background-color: red; */
}

.product-page-section {

  width: 100%;
  padding: 2vw 2vw;
  height: auto;
  /* background-color: var(--cbeige); */
}

.flange-product-info h3 {
  font-size: 1.2rem;
  color: #0c1023;
  margin-bottom: 6px;
}

.flange-product-info p {
  font-size: 1rem;
  color: #333;
  /* margin-bottom:6px; */
}



/* flange page end */

/* Extra small (phones, 0px to 480px) */







/* about,product-hro section */
.about-page-hero {
      background: url('8c7663c1-10f2-4645-868c-ec842c7fd2fc.jpg') center/cover no-repeat;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
        min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    }
.product-page-hero {
      background: url('8c7663c1-10f2-4645-868c-ec842c7fd2fc.jpg') center/cover no-repeat;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    .about-page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(12, 16, 35, 0.8);
    }

    .product-page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(12, 16, 35, 0.8);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: #f0f0f0;
    }
/* about,product-hro section end */

/* services-page-start */
.services-page-hero {
      background: url('8c7663c1-10f2-4645-868c-ec842c7fd2fc.jpg') center/cover no-repeat;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
       background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
    }
.parallax {
  /* The image used */
  background-image: url("img_parallax.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
    .services-page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(12, 16, 35, 0.8);
    }

    .services-page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .services-page-hero-content h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .services-page-hero-content p {
      font-size: 1.2rem;
      color: #f0f0f0;
    }

/* services-page-end */

/* ==========================================
   RESPONSIVE: HERO / HEADING SECTION
   ========================================== */
/* ==========================================
   RESPONSIVE: HERO / HEADING SECTION
   ========================================== */

/* ---------- Large Tablets & Small Laptops ---------- */
@media (max-width: 1200px) {
  .heading-inner-l1 h1 {
    font-size: 2.8rem;
    text-align: center;
    padding: 1.5rem;
  }

  .heading-inner-l2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .notched-container {
    margin: 0 auto 25px auto;
    height: 50vh;
    width: 80%;
  }

  .notched-img {
    width: 350px;
    height: auto;
  }

  .hero-div1 p {
    margin: 0;
    padding: 20px;
    text-align: center;
    width: 90%;
  }

  .hero-div2 {
    width: 80%;
    height: auto;
    margin: 15px auto;
  }

  .hero-div2 img {
    width: 6rem;
    height: 5rem;
  }

  .hero-div3 h1 {
    font-size: 1.4rem;
  }

  .hero-div3 h4 {
    font-size: 1rem;
  }

  .product-main {
    padding: 40px 20px;
  }

  .product-main .prod-main-l1:nth-of-type(2) {
    flex-direction: column-reverse;
    /* 👈 Image first, then text */
  }

  .prod-main-l1 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .prod-main-l1 .description {
    width: 90%;

    line-height: 1.6;
  }

  .prod-main-l1 .image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
  }


  .btn-animated {
    /* margin: 20px auto 0; */
    /* display: inline-block; */
    padding: 8px 8px;
  }

}
@media (max-width: 1140px) {

  .element-whorwe {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    margin: 1.5rem;
  }

  .whorwe-l2-img1 img {
    min-height: 300px;
    width: 300px;
  }

  .whorwe-l2-img2 {
    img {
      min-height: 150px;
      width: 300px;
    }
  }

  .counter-section {

    margin-top: 40px;
    /* navy blue */
    width: 180px;
    height: 180px;
  }

  .counter-box {

    line-height: 1;
  }

  .counter,
  .counter-box h2 {
    font-size: 3rem;
  }

  .counter-box {
    padding-bottom: 1px;
  }

  .counter+p {
    font-size: 1.5 rem;
  }


}

/* ---------- Tablets (portrait) ---------- */
@media (max-width: 992px) {
  .heading-inner-l1 h1 {
    font-size: 2.3rem;
    line-height: 1.4;
  }

  .notched-img {
    width: 320px;
  }

  .hero-div1 p {
    padding: 15px;
    font-size: 1rem;
  }

  .hero-div2 {
    flex-direction: row;
    width: 90%;
    height: auto;
    padding: 10px;
  }

  .hero-div3 h1 {
    font-size: 1.3rem;
  }

  .hero-div3 h4 {
    font-size: 0.95rem;
  }
  
   .prod-main-l1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .prod-main-l1 .description,
  .prod-main-l1 .description-l2 {
    width: 100%;
    padding: 10px;
  }

  .prod-main-l1 .image {
    gap: 15px;
  }

  .prod-main-l1 .image-1,
  .prod-main-l1 .image-2 {
    width: 70%;
    height: auto;
  }

  .btn-animated {
    width: 150px;
    font-size: 15px;
  }
  .element-whorwe h5{
font-weight: 300;
  }
}



@media (max-width: 900px) {
  .prod-main-l1 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .prod-main-l1 .description,
  .prod-main-l1 .description-l2 {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    /* 👈 Prevents the description area from collapsing */
  }

  .prod-main-l1 .image {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .prod-main-l1 .image-1,
  .prod-main-l1 .image-2 {
    width: 80%;
    height: auto;
  }

 
}

/* ---------- Mobile Landscape & Small Tablets ---------- */
@media (max-width: 768px) {
  .logo {
    width: 35vw;
  }

  .navbar {
    padding: 1vw 2vw;
    /* position: relative; */
    /* background-color: red; */
  }

  .nav-links {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;
    gap: 0;
    background: rgb(255, 255, 255,0.8);
    width: 180px;
    border-radius: 8px;
    overflow: hidden;
  
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .nav-links a span {

    display: none;
    /* border-top: 4px solid rgb(223, 175, 15); */


  }

  .nav-links .right {
    display: flex;
    width: 100%;
    
    justify-content:center;
    align-items: center;
    flex-direction: column;
    margin: 0 0;
    text-align: center;
    padding: 3px 5px;
  }

  .nav-links .left {
    padding: 3px 5px;
  }

  .nav-links a {
    margin: 0;
     color: var(--bgblue);
  }

  .nav-links.active {
    max-height: 600px;
    opacity: 1;

  }

  .nav-links .right li {
    margin-top: 1.5rem;

    text-align: center;
    /* transform: translateX(40%); */
  }

  /* Links hidden by default on mobile */
  .nav-links a,
  .btn-animated {
    opacity: 0;
    /* gap:5vh; */
    /* transform: translateX(20px); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    font-weight: 700;
    


  }

  .btn-animated {
    background-color: var(--cgold);
    padding: 1vw 1vw;
    
    font-size: 1vw;
  }

  /* Fade-in animation */
  .nav-links.active a,
  .nav-links.active .btn-animated {
    animation: fadeIn 0.5s forwards;
  }

  .nav-links.active li:nth-child(1) a {
    animation-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) a {
    animation-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) a {
    animation-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) a {
    animation-delay: 0.4s;
  }

  .nav-links.active li:nth-child(5) .btn-animated {
    animation-delay: 0.5s;
  }

  .hamburger {
    display: block;
    font-size: 8vw;
  }
  .heading {
    margin-bottom: 2.5rem;
  }

  .heading-inner-l1 h1 {
    font-size: 1.9rem;
    padding: 1rem;
  }

  .notched-img {
    width: 280px;
  }

  .hero-div1 p {
    padding: 10px;
    font-size: 0.8rem;
    width: 95%;
  }

  .hero-div2 {
    flex-direction: column;
    width: 95%;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .hero-div2 img {
    width: 5rem;
    height: 3.5rem;
    /* margin-bottom: 10px; */
  }

  .hero-div3 h1 {
    font-size: 1rem;
  }

  .hero-div3 h4 {
    font-size: 0.6rem;
  }
  .hero-divs {
  display: flex;
  gap: 10px;
  margin: 1rem 1rem;
}
   .image {
        .image-1 {
        max-width: 230px;
            max-height:300px;
        .overlay{
          font-size:8px ;
           font-weight: 200;
        }   
 }


        .image-2 {
            max-width:230px;
             max-height:300px;
            .overlay {
                font-size:8px;
            }


        }

        
    }
.whorwe-l1 {
  padding: 14px;
  font-size: 1rem;
  /* font-family: sans-serif; */
  color: var(--cbeige);

  line-height: normal;

  height: auto;
  /* background-color: rgb(104, 61, 61); */

}
  .element-licence {
    height: 205px;


    .l1 {
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;

      .l2 {

        justify-content: center;
        align-items: center;
        display: flex;
        font-size: 16px;
        gap: 20px;

        .l2-img img {

          width: 120px;

        }



      }


      h1 {

        filter: drop-shadow(1px 1px 0.5px);
      }

      h4,
      h2 {
        text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
        /* embosing effect */
      }

    }

  }

  .element-whorwe {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    margin: 1.5rem;
  }

  .whorwe-l2-img1 img {
    min-height: 300px;
    width: 300px;
  }

  .whorwe-l2-img2 {
    img {
      min-height: 150px;
      width: 300px;
    }
  }

  .counter-section {

    margin-top: 40px;
    /* navy blue */
    width: 180px;
    height: 180px;
  }

  .counter-box {

    line-height: 1;
  }

  .counter,
  .counter-box h2 {
    font-size: 3rem;
  }

  .counter-box {
    padding-bottom: 1px;
  }

  .counter+p {
    font-size: 1.5 rem;
  }
footer {
    padding: 60px 0 20px;
    font-size: 12px;
  }

  .row {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    height: auto;
  }

  .col {
    flex-basis: 45%;
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    width: 220px;
  }

  .social-icons {
    justify-content: center;
  }

  .col h3 {
    font-size: 15px;
  }

  .col p {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 15px 0;
  }
 .product-section {
    padding: 15px;
  }
.product-main {
    padding: 15px;
    
}

  .prod-title-l2 {
    font-size: 22px;
  }

  .prod-main-l1 {
    gap: 20px;
  }

  .prod-main-l1 .image-1,
  .prod-main-l1 .image-2 {
    width: 90%;
    height: auto;
  }

.description-inner-l1{
    margin:1rem 0;
    line-height: normal;
   font-size: 14px;
}

  .btn-animated {
    margin: 20px auto;
    height: 40px;
    display: inline-block;
    position: relative; /* Ensures it stays visible and not behind any absolute elements */
    z-index: 10;        /* 👈 Makes sure it's on top */
    visibility: visible;
    font-size: 14px;
    opacity: 1;
    text-align: center;
    /* padding: 5px 15px; */

  }
 
.element-application{
  font-size: 1rem;
  padding:3rem 0.6rem;
}
.element-heading-inner-l1{
  font-size: 20px;
  padding-bottom: 30px;
}
.application-desc{
  font-size: 1rem;
}
.swiper{
   width: 100%;
  height: 300px;
}
.swiper-slide{

  max-width: 250px;
  max-height: 250px;
 
}

.swiper-slide img {
  display: block;
  width:275px;
  height: 250px;}

.slide-overlay {
  top:80%;}



  
  .banner {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}





/* ---------- Small Phones ---------- */
@media (max-width: 480px) {
  .logo{
    padding-top:1rem;
    width:32vh;
  }
 .certificate-section h2 {

  

  font-size: 20pxm;

  margin-bottom: 20px;
}
.certificate-section p{
  font-size: 1rem;
  color: #cfd5e3;
  margin: 15px;
}
  .nav-links{
    margin:1rem;
    width: 55vw;
    padding:0rem 1rem;
    margin: 0;
  }
 
  .nav-links a {
   padding: .3rem;
  color:var(--bgblue);

  font-size: 2.5vh;
}
.nav-links .left{
  width: 100%;
}
.nav-links .left .btn-animated{
  width: 100%;
  margin-top: 8px;
}

  .heading-inner-l1 h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    /* padding: 0.8rem; */
  }

  /* .notched-img {
    min-width:100%;
    max-height:300px;
  } */
.notched-container {
width: 90%;
height: 50%;
object-fit: fill;
margin:3rem 0rem;
/* left: 5% */
 
}
  .hero-div1 p {
    font-size: 0.9rem;
    padding: 2px 8px;
  }

  .hero-div2 {
    width: 100%;
    margin: 10px auto;
    flex-direction: column;
  
  }

  .hero-div2 img {
    width: 4rem;
    height: 3rem;
  }

  .hero-div3 h1 {
    font-size: 1rem;
  }

  .hero-div3 h4 {
    font-size: 0.85rem;
  }
  .element-whorwe {

  padding: 2rem 0;
  padding-bottom: 40px;
/* overflow:visible; */
}
.whorwe-l2 {
  margin: 2px 0px;
}
.whorwe-l1{
  padding: 10px;
  margin-bottom: 40px;
}
.whorwe_heading {
  font-size: 1.1rem;

  /* font-weight: 200; */
}

.whorwe-l2-img1 {
 
  img {
    min-height: 300px;
    width: 240px;
  }
}

.whorwe-l2-img2 {
  position: absolute;
  top: 50%;
  left: 40%;



  img {
 border: 5px solid #fff;
    min-height: 100px;
    width: 250px;

  }
}


.counter-section {
padding-top: 3px;
  margin-top: 55px;
  margin-left: 0px;
  background: var(--cgold);
  /* navy blue */
  width: 130px;
  height: 120px;
  color: white;
  /* text-align: center; */
  /* padding: 2px 0px; */
  font-family: 'Segoe UI', sans-serif;
  display: grid;
  /* justify-content: center; */
}

.counter-box {

  line-height: 1;
  padding-bottom: 0px;

  p {
    font-weight: 100;
    font-size: 10px;
  }
}

.counter,
.counter-box h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--cbeige);
  /* yellow */

}

.counter+p {
  font-size: 1rem;
  /* margin-top: 10px; */
}
.section-title {
  font-size: 1.2rem;}

.why-choose-us{
  padding: 40px 0px 50px;
}
.element-client{
  padding: 20px 0px;
}
.feature-card{
  margin:10px 20px;
}
.line-seperator-s{
  margin:0 8px;
}
.line-seperator-e{
  margin:0 8px;
}
 footer {
    padding: 40px 0 15px;
    border-top-left-radius: 50px;
  }

  .row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 2rem;
  }

  .col {
    flex-basis: 100%;
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }

  .col h3 {
    margin-bottom: 6px;
  }

  .col p {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-logo {
    width: 180px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 10px 0;
  }
  .back-to-top{
    height: 35px;
    width: 35px;
    font-size: 15px;
  }
  .feature-card {
    padding:18px 12px;
  }

  .icon {
    width: 58px;
    height: 58px;
  }
.product-main{
  padding: 10px;
}

   .image {
    padding:10px 0;
        .image-1 {
        max-width: 220px;
            max-height:270px;
        padding: 0px;
        
 }



        .image-2 {
            max-width:220px;
             max-height:270px;
            .overlay {
                font-size:8px;
            }


        }

      }

.prod-title-l2 {
    font-size: 20px;
  }

  .prod-main-l1 .description,
  .prod-main-l1 .description-l2 {
    font-size: 15px;
    width: 100%;
  }

  .prod-main-l1 .image-1,
  .prod-main-l1 .image-2 {
    width: 100%;
    height: auto;
  }

  .btn-animated {
    /* width: 150px; */
    font-size: 12px;
    padding: 8px 18px;
  }



   .banner {
    height: 180px;
    padding: 20px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .flange-product-info h3 {
    font-size: 1.2rem;
  }
/* product-page start*/
.product-page-banner{
  height: 150px;
  background: url(8c7663c1-10f2-4645-868c-ec842c7fd2fc.jpg);
  
}
.product-page-section .product-page-section-title{
  font-size:20px;
 margin-bottom: 0px;;
}
.product-page-product-grid{
 align-items: center;
  margin:1rem 1rem;
  gap:30px;
justify-content: center;
}
.product-page-product-card{
 
  height:90%;
  width: 70%;
text-align: center;
}
/* product-page-end */

}
















/* ===============================
   SCROLL ANIMATION BASE
================================ */


/* ---------- A2: HERO ---------- */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- B1: SECTION TITLE ---------- */




/* ---------- C1: PRODUCT CARDS ---------- */

.product-page-product-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- E1: FOOTER ---------- */


footer.active {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger support */
.product-page-product-card {
  transition-delay: var(--delay);
}
.product-page-product-image img {
  transform: scale(1.08);
  transition: transform 1s ease;
}

.product-page-product-card.active
.product-page-product-image img {
  transform: scale(1);
}
.product-page-hero {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.product-page-section-title {
  opacity: 1 !important;
  transform: none !important;
}






/* navbar animation */
/* ===== PAGE LOAD ANIMATION (SAME AS TOP BAR) ===== */

.navbar {
  opacity: 0;
  transform: translateY(-12px);
  animation: navLoad 0.6s ease forwards;
  animation-delay: 0.2s; /* slightly after top bar */
}

@keyframes navLoad {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}














/* certificates tester start*/
/* =========================
   CERTIFICATE SECTION
========================= */

.certificate-section {

  padding: 80px 20px;

  background: #0f172a;

  text-align: center;

  overflow: hidden;
}

/* TITLE */

.certificate-section h2 {

  

  font-size: 2.5rem;

  margin-bottom: 30px;
}
.certificate-section p{
  font-size: 1.2rem;
  color: #cfd5e3;
  margin: 15px;
}
/* =========================
   GRID
========================= */

.certificate-grid {

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

/* =========================
   CARD
========================= */

.certificate-card {

  position: relative;

  overflow: hidden;

  border-radius: 18px;

  cursor: pointer;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;

  background: rgba(255,255,255,0.05);
}

/* DIM OTHER CARDS */

.certificate-grid:hover
.certificate-card {

  opacity: 0.5;
}

/* ENLARGE HOVERED CARD */

.certificate-card:hover {

  transform: scale(1.08);

  opacity: 1 !important;

  z-index: 5;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

/* =========================
   IMAGE
========================= */

.certificate-card img {

  width: 100%;

  display: block;

  transition: transform 0.5s ease;

  user-select: none;

  -webkit-user-drag: none;
}

/* IMAGE ZOOM */

.certificate-card:hover img {

  transform: scale(1.12);
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */

@media (max-width: 992px) {

  .certificate-grid {

    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 600px) {

  .certificate-grid {

    grid-template-columns: 1fr;
  }

  .certificate-card:hover {

    transform: scale(1.03);
  }
}/* certificate tester end */
