/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
body {

}

body {
  box-sizing: border-box;
  
  
}
@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}
body, html {
  overflow-x: hidden;
  
}


.u-center-text {
  text-align: center !important;
}
.u-margin-bottom-big {
  margin-bottom: 2cqb !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 2rem !important;
  }
}
.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}
.navbar .logo img{
  background: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); /* Enhance logo appearance */
  width: auto;
  height:50px;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: linear-gradient(90deg, #3a3b5a, #6a82fb); /* Stylish gradient */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Elevation effect */

 z-index: 990;
}



nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
  
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}

nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  color: #ECF0F1; /* White for text */
  font-weight: 500;
  transition: color 0.3s ease;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

  .navbar .links li a:hover {
    color: #f76591; /* Light blue for hover */
  }
  
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #24243e; /* Dark slate for dropdown background */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .links li .sub-menu a:hover {
  color: #69f20e; /* Lavender-blue for submenu hover */
}
.navbar .links li .sub-menu a{
  color: #ffffff; /* White for submenu items */
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #ffffff; /* White search icon */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-box .input-box input::placeholder {
  color: #f42121; /* Light gray placeholder */
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  background: #ffffff; /* White search input */
  color: #333333; /* Dark gray input text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #a85c3e;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: linear-gradient(90deg, #3a3b5a, #6a82fb); /* Stylish gradient */
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100vw;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:1024px){
  nav{
    max-width: 100vw;
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: linear-gradient(90deg, #3a3b5a, #6a82fb); /* Stylish gradient */
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

    /* FRUIT BUTTON START*/ 
    .frutiger-button {
      cursor: pointer;
      position: relative;
      padding: 2px;
      border-radius: 6px;
      border: 0;
      text-shadow: 1px 1px #000a;
      background: linear-gradient(#006caa, #00c3ff);
      box-shadow: 0px 4px 6px 0px #0008;
      transition: 0.3s all;
    }
    
    .frutiger-button:hover {
      box-shadow: 0px 6px 12px 0px #0009;
    }
    
    .frutiger-button:active {
      box-shadow: 0px 0px 0px 0px #0000;
    }
    
    .inner {
      position: relative;
      inset: 0px;
      padding: 1em;
      border-radius: 4px;
      background: radial-gradient(circle at 50% 100%, #30f8f8 10%, #30f8f800 55%),
        linear-gradient(#00526a, #009dcd);
      overflow: hidden;
      transition: inherit;
    }
    
    .inner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(-65deg, #0000 40%, #fff7 50%, #0000 70%);
      background-size: 200% 100%;
      background-repeat: no-repeat;
      animation: thing 3s ease infinite;
    }
    
    @keyframes thing {
      0% {
        background-position: 130%;
        opacity: 1;
      }
    
      to {
        background-position: -166%;
        opacity: 0;
      }
    }
    
    .top-white {
      position: absolute;
      border-radius: inherit;
      inset: 0 -8em;
      background: radial-gradient(
        circle at 50% -270%,
        #fff 45%,
        #fff6 60%,
        #fff0 60%
      );
      transition: inherit;
    }
    
    .inner::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      transition: inherit;
      box-shadow: inset 0px 2px 8px -2px #0000;
    }
    
    .frutiger-button:active .inner::after {
      box-shadow: inset 0px 2px 8px -2px #000a;
    }
    
    .text {
      position: relative;
      z-index: 1;
      color: white;
      font-weight: 550;
      transition: inherit;
    }
      /* FRUIT BUTTON END*/
      
      /*  NAV END*/

    /* <!-- HERO SECTION CONTENT START HERE --> */


.hero-contain {
  margin-top: 50px;
    height: 350px;
    width: 100%;
    position: relative;
    background: lightgray;
    overflow: hidden;
    background: url(../image/glass.jpg);
  }
  .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    background: rgb(238, 219, 219);
    transform: translate(-50%, -50%);
    font-size: 30px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    z-index: 1;
    background: transparent;
  }
  .circle:before {
    content: "";
    height: 400px;
    width: 400px;
    background: rgb(128, 162, 183);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    animation: ribble 2s infinite;
  }
  .circle-text {
    display: block;
    margin-top: 180px;
    font-family: arial;
  
    
  }
  
  .hr-style {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    border: 0;
    height: 1px;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(135deg);
    transition: all 0.2s;
    transform-origin: center center;
    background-image: -webkit-linear-gradient(left, #d3d3d3, #8c8b8b, #d3d3d3);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  }
  /* .hero-contain:hover .hr-style{
    animation: rotate 2s ease infinite;
  } */
  .hr-rotate {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .text-1-tleft {
    font-size: 30px;
    font-weight: 600;
    width: 200px;
    position: absolute;
    top: 10%;
    left: 10%;
    opacity: 1;
    color: rgb(210, 109, 59);
    text-transform: uppercase;
    font-family: arial;
    transition: all 0.3s;
  }
  .t1thide {
    opacity: 0;
    left: -5%;
  }
  .text-1-bright {
    font-size: 30px;
    font-weight: 600;
    width: 200px;
    position: absolute;
    bottom: 10%;
    right: 10%;
    text-transform: uppercase;
    font-family: arial;
    transition: all 0.3s;
    color: rgb(210, 109, 59);
  }
  .t1bhide {
    opacity: 0;
    right: -5%;
  }
  .text-2-tright {
    font-size: 30px;
    font-weight: 600;
    width: 200px;
    position: absolute;
    top: 10%;
    right: -5%;
    opacity: 0;
    text-transform: uppercase;
    font-family: arial;
    transition: all 0.3s;
    color: rgb(210, 109, 59);
  }
  .t2tshow {
    opacity: 1;
    right: 10%;
  }
  .text-2-bleft {
    font-size: 30px;
    font-weight: 600;
    width: 200px;
    position: absolute;
    bottom: 10%;
    left: -5%;
    opacity: 0;
    text-transform: uppercase;
    font-family: arial;
    transition: all 0.3s;
    color: rgb(210, 109, 59);
  }
  .t2bshow {
    opacity: 1;
    left: 10%;
  }
  .syedshihab {
    text-decoration: none;
    display: block;
    float: right;
    font-size: 30px;
    margin: 8px;
    color: blueviolet;
    position: relative;
  }
  
  @keyframes ribble {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
   /* <!-- HERO SECTION CONTENT END HERE --> */

   /* <!-- ABOUT SECTION CONTENT START HERE --> */
    

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr;
  place-items: center;
  min-height: 90vh;
  background-color: #0d0a0b;
  background: linear-gradient(145deg, #55566a 0%, #131318 76%);
}

/* Content */

.about-content {
  padding-left: 120px;
  color: #c7c7c7c9;
  user-select: none;
}

.about-content h1 {
  font-weight: 700;
  background: -webkit-linear-gradient(0deg, #f76591, #ffc16f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 36px;
  padding-left: 10px;
}

.about-content p {
  font-size: clamp(0.9rem, 4vw, 1.2rem);
  line-height: 1.6;
  padding-right: 100px;
}

.btn {
  background-color: #f76591;
  background-image: linear-gradient(-180deg, #ffc16f, #f76591);
  font-size: clamp(0.8rem, 8vw, 0.9rem);
  font-weight: 600;
  color: #fff;
  width: max-content;
  outline: 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-top: 26px;
  text-align: center;
  transform: scale(1);
  transition: all 0.2s ease-in;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

.btn:hover {
  box-shadow: 0 4px 10px rgba(247, 101, 145, 0.5);
  transform: scale(0.98);
}

/* Stacked Cards */

.stack {
  position: relative;
}

.card {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 350px;
  height: 500px;
  border-radius: 2rem;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25),
    0 15px 20px 0 rgba(0, 0, 0, 0.125);
  transition: transform 0.6s;
  user-select: none;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  pointer-events: none;
}

.card:nth-last-child(n + 5) {
  --x: calc(-50% + 90px);
  transform: translate(var(--x), -50%) scale(0.85);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.01);
}

.card:nth-last-child(4) {
  --x: calc(-50% + 60px);
  transform: translate(var(--x), -50%) scale(0.9);
}

.card:nth-last-child(3) {
  --x: calc(-50% + 30px);
  transform: translate(var(--x), -50%) scale(0.95);
}

.card:nth-last-child(2) {
  --x: calc(-50%);
  transform: translate(var(--x), -50%) scale(1);
}

.card:nth-last-child(1) {
  --x: calc(-50% - 30px);
  transform: translate(var(--x), -50%) scale(1.05);
}

.card:nth-last-child(1) img {
  box-shadow: 0 1px 5px 5px rgba(255, 193, 111, 0.5);
}

.swap {
  animation: swap 1.3s ease-out forwards;
}

@keyframes swap {
  30% {
    transform: translate(calc(var(--x) - 250px), -50%) scale(0.85) rotate(-5deg)
      rotateY(65deg);
  }
  100% {
    transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
    z-index: -1;
  }
}

/* Media queries for keyframes */

@media (max-width: 1200px) {
  @keyframes swap {
    30% {
      transform: translate(calc(var(--x) - 200px), -50%) scale(0.85)
        rotate(-5deg) rotateY(65deg);
    }

    100% {
      transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
      z-index: -1;
    }
  }
}

@media (max-width: 1050px) {
  @keyframes swap {
    30% {
      transform: translate(calc(var(--x) - 150px), -50%) scale(0.85)
        rotate(-5deg) rotateY(65deg);
    }

    100% {
      transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
      z-index: -1;
    }
  }
}

/* Media queries for other classes */

@media (max-width: 1200px) {
  .about-content {
    padding-left: 80px;
  }

  .about-content p {
    padding-right: 40px;
  }

  .card {
    width: 250px;
    height: 380px;
  }
}

@media (max-width: 1050px) {
  .about-content {
    padding-left: 60px;
  }

  .about-content p {
    line-height: 1.5;
  }

  .card {
    width: 220px;
    height: 350px;
  }
}

@media (max-width: 990px) {
  .about-content p {
    padding-right: 0;
  }

  .card {
    width: 200px;
    height: 300px;
  }
}

@media (max-width: 950px) {
  .about-main {
    grid-template-columns: 1fr;
    grid-template-rows: 4fr 3fr;
    grid-template-areas:
      "stacked"
      "content";
  }

  .about-content {
    grid-area: content;
    text-align: center;
    padding: 0 90px;
  }

  .btn {
    margin-bottom: 30px;
  }

  .stack {
    grid-area: stacked;
  }
}

@media (max-width: 650px) {
  .about-main {
    grid-template-rows: 1fr 1fr;
  }

  .about-content {
    padding: 0 50px;
  }

  .about-content h1 {
    padding-left: 0;
  }

  .btn {
    padding: 8px 16px;
  }

  .card {
    width: 180px;
    height: 260px;
  }
}

   /* <!-- ABOUT SECTION CONTENT END HERE --> */

   /* <!--type of  PRODUCT SECTION CONTENT START HERE --> */
   .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    overflow: hidden;
    height: 4rem;
    background-size: 300% 300%;
    cursor: pointer;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121),
      linear-gradient(
        137.48deg,
        #ffdb3b 10%,
        #fe53bb 45%,
        #8f51ea 67%,
        #0044ff 87%
      );
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  
  #container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
  }
  
  .strong  {
    z-index: 2;
    font-family: "Avalors Personal Use";
    font-size: 16px;
    letter-spacing: 5px;
    color: #01f711;
   
    font-weight: 900;
  }
  .strong a {
    z-index: 2;
    font-family: "Avalors Personal Use";
    font-size: 16px;
    letter-spacing: 5px;
    color: #01f711;
   text-decoration: none;
    font-weight: 900;
  }
  #glow {
    position: absolute;
    display: flex;
    width: 12rem;
  }
  
  .ccircle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
  }
  
  .ccircle:nth-of-type(1) {
    background: rgba(254, 83, 186, 0.636);
  }
  
  .ccircle:nth-of-type(2) {
    background: rgba(142, 81, 234, 0.704);
  }
  
  .btn:hover #container-stars {
    z-index: 1;
    background-color: #212121;
  }
  
  .btn:hover {
    transform: scale(1.1);
  }
  
  .btn:active {
    border: double 4px #fe53bb;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
  }
  
  .btn:active .ccircle {
    background: #fe53bb;
  }
  
  #stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
  }
  
  #stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
  }
  
  #stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
  }
  
  #stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
  }
  
  #stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
  }
  
  @keyframes animStar {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(-135rem);
    }
  }
  
  @keyframes animStarRotate {
    from {
      transform: rotate(360deg);
    }
  
    to {
      transform: rotate(0);
    }
  }
  
  @keyframes gradient_301 {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes pulse_3011 {
    0% {
      transform: scale(0.75);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
  
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
  
    100% {
      transform: scale(0.75);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }
  
   

/* Key Figures Section Styling */
.key-figures-section {
  max-width: 100vw;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.key-figures-section:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Flex container for content and image */
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Heading Styling */
.key-figures-section h3 {
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 15px;
}

/* Content Box Styling */
.content-box {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 60vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


body{
  background-color: #f9f9f9;
}

.content-box p {
  font-size: 16px;
  color: #333;
}

/* Hover effect for content box */
.content-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image Box Styling */
.image-box {
  width: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.image-box img {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-box-mrl img {
  margin-left: 50px;
  max-width: 250px;
  height: 50vh;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .flex-container {
      flex-direction: column;
      align-items: center;
  }

  .content-box {
      margin-bottom: 20px;
      max-width: 100%;
  }

  .image-box img {
      max-width: 100%;
  }
}

   /* <!--type of  PRODUCT SECTION CONTENT end HERE --> */




   /* <!-- PRODUCT FEATURE 4 BOX SECTION CONTENT START HERE --> */
       /* General Section Styling */.unique-features {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

/* Right Grid Styling with 2x2 Grid */
.right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-gap: 15px;
  width: 100%;
}

/* Grid Item Styling */
.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
  padding: 20px;
  color: white;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  background: linear-gradient(135deg, #ffffff, #f3f4f6); /* Default background */
}

/* Hover Effect */
.grid-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ff8a00, #e52e71); /* Gradient for hover */
}

.grid-item h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  background-image: #333333;
  -webkit-background-clip: text;
  color: transparent;
}

.grid-item p {
  font-size: 16px;
  color: #000000;
}

/* Color Variants */
.yellow {
  background: linear-gradient(135deg, #d3cbf3, #a98a2c);
  color: #333;
}

.white {
  background: linear-gradient(135deg, #59a5e7, #e38080);
  color: #333;
}

.gray {
  background: linear-gradient(135deg, #a48b8b, #db0e0e);
  color: #070707;
}

.lightgray {
  background: linear-gradient(135deg, #49e5af, #3b66c9);
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Switch to single-column layout on smaller screens */
  .right-grid {
      grid-template-columns: 1fr;
  }

  .grid-item {
      padding: 15px;
  }
}

@media (max-width: 576px) {
  .grid-item {
      padding: 10px;
      font-size: 14px;
  }
}

   /* <!-- PRODUCT FEATURE 4 BOX SECTION CONTENT END HERE --> */


  /* FOOTER CSS START HERE */
  /* FOOTER CSS START HERE */
 
  /* Footer Styling */
  footer {
    position: relative;
    width: 100%;
    padding: 50px 100px;
  background:#2668ee;
  }
  
  footer .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
  
  footer .footer-container .footer-sec h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  footer .footer-container .footer-sec p {
    color: #fff;
    font-size: 17px;
  }
  
  footer .footer-container .footer-sci {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 50px);
  }
  
  footer .footer-container .footer-sci li {
    list-style: none;
  }
  h2 {
      font-size: 30px;
  }

  footer .footer-container .footer-sci li a {
    display: inline-block;
    width: 36px;
    height: 36px;
  
    color: #fff;
    display: grid;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
 
  footer .footer-container .footer-sci li a:hover {
    background: #4CAF50;
  }
  
  footer .footer-container .footer-sci li a i {
    color: #fff;
    font-size: 20px;
  }
  
  /* Quick Links Styling */
  footer .footer-container .footer-quickLinks ul li {
    list-style: none;
  }
  
  footer .footer-container .footer-quickLinks ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.3s ease, font-weight 0.3s ease;
  }
  
  /* Hover effect for links */
  footer .footer-container .footer-quickLinks ul li a:hover {
    color: #2be70a;
    font-weight: bold;
  }
  
  /* Contact Info Styling */
  footer .footer-container .footer-contact .info li {
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 16px;
  }
  
  footer .footer-container .footer-contact .info li span {
    color: #fff;
    font-size: 20px;
  }

  footer .footer-container .footer-contact .info li a {
    color: #fff;
    
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer .footer-container .footer-contact .info li a:hover {
    color: #0ceb14;
  }
  p{
      font-size: 20px;
  }
  
  /* Copyright Text */
  .footer-copyrightText {
    width: 100%;
    background: #fff;
    padding: 20px 100px 30px;
    text-align: center;
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive Styling */
  @media (max-width: 991px) {
    footer {
        padding: 40px;
    }
  
    footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-copyrightText {
        padding: 20px 40px 30px;
    }
  }
  
  @media (max-width: 768px) {
    footer {
        padding: 40px;
    }
  
    footer .footer-container {
        grid-template-columns: 1fr;
    }
  }
  






























  
    /* Table container for responsiveness */
    .table-container {
      margin: 15px;
      overflow-x: auto;
    }

    /* Table styling */
    .dimension-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      border-radius: 10px;
      background-color: #fff;
    }

    .dimension-table th, .dimension-table td {
      padding: 12px;
      text-align: center;
      color: #050505;
      border: 1px solid black;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .dimension-table th:hover, .dimension-table td:hover {
      color: #007bff;
      transform: scale(1.05);
    }

    .dimension-table thead th {
      background-color: #f76591;
      background-image: linear-gradient(-180deg, #ffc16f, #f76591);
      font-weight: bold;
      font-size: 18px;
    }

    .dimension-table tbody tr {
      transition: background-color 0.3s ease;
      font-size: 15px;
    }


    .dimension-table tbody tr:hover {
      background-color: #f1f9ff;
    }

    /* Color coding for cells */
    .telescopic { background-color: #ccffcc; color: #333; }
    .swing-door { background-color: #ffffcc; color: #333; }
    .left-side { background-color: #cce5ff; color: #333; }
    .back-side { background-color: #e5ccff; color: #333; }
    .not-applicable { background-color: #ffcccc; color: #333; }

    /* Legend styling */
    .legend {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      font-size: 14px;
    }
    .legend-item span{
      color: #000;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .legend-color {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      border: 1px solid #9911ee;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .dimension-table th, .dimension-table td {
        padding: 8px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .dimension-table th, .dimension-table td {
        padding: 6px;
        font-size: 12px;
      }
    }




















    
       /* <!--type of  PRODUCT SECTION CONTENT START HERE --> */
   .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22rem;
    overflow: hidden;
    height: 4rem;
    background-size: 300% 300%;
    cursor: pointer;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121),
      linear-gradient(
        137.48deg,
        #ffdb3b 10%,
        #fe53bb 45%,
        #8f51ea 67%,
        #0044ff 87%
      );
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  
  #container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
  }
  
  .strong  {
    z-index: 2;
    font-family: "Avalors Personal Use";
    font-size: 16px;
    letter-spacing: 5px;
    color: #01f711;
   
    font-weight: 900;
  }
  .strong a {
    z-index: 2;
    font-family: "Avalors Personal Use";
    font-size: 16px;
    letter-spacing: 5px;
    color: #01f711;
   text-decoration: none;
    font-weight: 900;
  }
  #glow {
    position: absolute;
    display: flex;
    width: 12rem;
  }
  
  .ccircle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
  }
  
  .ccircle:nth-of-type(1) {
    background: rgba(254, 83, 186, 0.636);
  }
  
  .ccircle:nth-of-type(2) {
    background: rgba(142, 81, 234, 0.704);
  }
  
  .btn:hover #container-stars {
    z-index: 1;
    background-color: #212121;
  }
  
  .btn:hover {
    transform: scale(1.1);
  }
  
  .btn:active {
    border: double 4px #fe53bb;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
  }
  
  .btn:active .ccircle {
    background: #fe53bb;
  }
  
  #stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
  }
  
  #stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
  }
  
  #stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
  }
  
  #stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
  }
  
  #stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
  }
  
  @keyframes animStar {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(-135rem);
    }
  }
  
  @keyframes animStarRotate {
    from {
      transform: rotate(360deg);
    }
  
    to {
      transform: rotate(0);
    }
  }
  
  @keyframes gradient_301 {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes pulse_3011 {
    0% {
      transform: scale(0.75);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
  
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
  
    100% {
      transform: scale(0.75);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }
  
   