
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}


.top-image{
    background-image: url(./img/header-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    min-height: 696px;
    left:0;
    right:0;
}

.about-image{
    background-image: url(./img/about.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    min-height: 600px;
}

.fibretron-image{
    background-image: url(./img/fibrtron.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    min-height: 600px;
     position: relative;
}

.aplication-image{
    background-image: url(./img/application.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*padding-top: 50px;*/
    min-height: 600px;
    position: relative;
}

.heading-secntion{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-image{
  background-image: url(./img/blog.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    min-height: 400px;
    position:relative;
}

  .nav-item .nav-link{
    font-weight: 900;
    color: #000000;
    margin-right: 10px;
  }
  .nav-item .nav-link:hover{
    color:#9C1E44;
  }
  .why-heading h1{
      font-style:semibold;
  }
.button{
    position: relative;
    margin-top: -100px;
}
.box-1{
    height: 112px;
    width: 223px;
    background-color: rgb(138, 134, 134);
    color: #fff;
    top: 0;
    margin-left:-130px;
    margin-top:40px;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: center;
    border-radius: 5px;
    opacity:0.9;
}

 @keyframes liner-stronger{
  75%{transform: rotate(900deg);}
  }

.box-2{
    height: 112px;
    width: 223px;
    background-color: rgb(138, 134, 134);
    color: #fff;
    margin: 15%;
    margin-left: 60%;
    padding-left: 10px;
    padding-right: 10px; 
    border-radius: 5px;
    opacity:0.9;
}
.box-3{
    height: 112px;
    width: 223px;
    background-color: rgb(138, 134, 134);
    color: #fff;
    padding-left: 10px;
    padding-right: 10px; 
    border-radius: 5px;
    opacity:0.9;
    margin-left:-130px;
    margin-top: -5px;
}
.why-background{
    background-image: url(img/why.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}
.why-box .icon-box{
    position: relative;
    margin: auto;
    margin-top: -30px;
    /*padding: 10px;*/
}
.why-box .icon-box img{
   color:#9C1E44;
   /*padding:5px;*/
}
.why-box h6{
    color:#9C1E44;
}

/* Slider container */
#slider {
    position: relative;
    width: 50%;
    height: 32vw;
    margin: 150px auto;
    perspective: 1400px;
    transform-style: preserve-3d;
    border-radius: 12px;  /* Rounded corners */
  }
  
  /* Radio buttons for slide control */
  input[type=radio] {
    position: relative;
    top: 108%;
    left: 50%;
    width: 20px;  /* Slightly larger */
    height: 20px;  /* Slightly larger */
    margin: 0 15px 0 0;
    background: #ccc;  /* Light gray */
    border: 2px solid #ccc;  /* Light gray */
    border-radius: 50%;  /* Rounded corners */
    cursor: pointer;
    transform: translateX(-83px);
    transition: background 300ms ease, border 300ms ease;  /* Smooth transition */
  }
  
  input[type=radio]:checked {
    background: #FF5A5F;  /* Airbnb's coral red */
    border: 2px solid #FF5A5F;  /* Airbnb's coral red */
  }
  
  /* Labels and images */
  #slider label,
  #slider label img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 12px;  /* Rounded corners */
    transition: transform 400ms ease, opacity 400ms ease;  /* Added opacity transition */
  }
  
  /* New addition for Zoom Effect */
  .zoom-container {
    overflow: hidden; /* Hide the part of the image that extends outside the div */
  }
  
  /* Zoom effect */
  .zoom-container:hover {
    cursor: default; /* Change cursor to zoom-in icon */
  }
  
  .zoom-container.can-zoom:hover img {
    transform: scale(1.4); /* Zoom level */
    transition: transform .5s ease-in-out;
  }
  
  
  /* Existing transition rules */
  #s1:checked ~ #slide1, 
  #s2:checked ~ #slide2, 
  #s3:checked ~ #slide3, 
  #s4:checked ~ #slide4, 
  #s5:checked ~ #slide5 {
    box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
    transform: translate3d(0%, 0, 0px);
  }
  
  #s1:checked ~ #slide2, 
  #s2:checked ~ #slide3, 
  #s3:checked ~ #slide4, 
  #s4:checked ~ #slide5, 
  #s5:checked ~ #slide1 {
    box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
    transform: translate3d(20%, 0, -100px);
  }
  
  #s1:checked ~ #slide3,
  #s2:checked ~ #slide4,
  #s3:checked ~ #slide5,
  #s4:checked ~ #slide1,
  #s5:checked ~ #slide2 {
    box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
    transform: translate3d(40%, 0, -250px);
  }
  
  #s1:checked ~ #slide4,
  #s2:checked ~ #slide5,
  #s3:checked ~ #slide1,
  #s4:checked ~ #slide2,
  #s5:checked ~ #slide3 {
    box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
    transform: translate3d(-40%, 0, -250px);
  }
  
  #s1:checked ~ #slide5,
  #s2:checked ~ #slide1,
  #s3:checked ~ #slide2,
  #s4:checked ~ #slide3,
  #s5:checked ~ #slide4 {
    box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
    transform: translate3d(-20%, 0, -100px);
  }


  .footer{
    background-color: #9C1E44;
  }
  
  .triangle-down {
	width: 0;
	height: 0;
	border-left: 10px solid lightgrey;
	border-right: 10px solid lightgrey;
	border-top: 20px solid white;
    border-radius:5px;
    margin-top:15px;
}
  /*testimonials*/
  
  .cd__main{
    display: block !important;
    background: #ddfcf5 !important;
    min-height: 450px;
   height: 100vh;
}
.container {
  width: 100%;
  height: 100%;
}
.application-box1{
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.application-box1 img {vertical-align: middle;}

.application-box1 .application-box2{
  position: absolute;
  /*bottom: 0;*/
  left:0;
  top:0;
  justify-content:center;
  align-items: center;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 100%;
  height: 71%;
  /*margin-top:-95%;*/
}

.quote-icon {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
  left: 3%;
  top: 0;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 150px;
  border: 5px solid #f9fafe;
  box-shadow: 0 0 50px #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-60px, -60px);
  z-index: 1;
}

.header {
  margin: 50px 0 0 0;
  text-align: center;
  z-index: 1;
}

.name {
  font-family: "Hammersmith One", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0;
}

.title {
  font-family: "Hammersmith One", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0 0;
  padding: 0 5px;
  color: #7ccdc5;
}

.quote-container {
  margin: 0;
  height: 100%;
  z-index: 1;
  padding: 15px 30px 30px 30px;
  overflow: hidden;
}

.quote {
  width: 100%;
  height: 95%;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-align: center;
  color: #73808c;
  margin: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.swiper-slide-active {
  z-index: 1;
}

.swiper-slide-active .card {
  box-shadow: 0 8px 30px -7px #c9dff0;
  opacity: 1;
  transform: scale(1.5);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
}

@media (max-height: 480px) {
  .header {
    margin: 40px 0 0 0;
  }
  


 .name {
    font-size: 12px;
  }
  .title {
    font-size: 10px;
  }
  .quote-container {
    padding: 5px 20px 20px 20px;
  }
  .quote-icon {
    width: 75px;
    height: 75px;
  }
  .avatar {
    width: 100px;
    height: 100px;
    transform: translate(-50px, -50px);
  }
  .heading-secntion{
     margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
      }
}
.user-link{
    left:0;
}

  /*end testimonials*/
  
  @media screen and (max-width:480px){
 .why-box .icon-box{
    position: relative;
    height:80px;
    width: 100px;
    margin-top:-2px;
   }
   .blog-box{
          width: 100%!important;
  }
   ..top-image{
       width:100%;
       max-height:auto;
       left:0;
       right:0;
   }
   .main-heading button{
       width:50% !important;
   }
   .main-heading{
      margin-top:100% !important;
      text-align:justify;
      /*margin-left:10%;*/
      /*top:100%;*/
      left:0;
      right:0;
   }
   .box-1, .box-2, .box-3{
       display:none;
   }

.header-button img{
    display:none;
}

.header-button button{
    width:100%;
}
   .top-icon{
       max-width:96% !important;
       max-height:62% !important;
   }
  .about-img{
      text-align:center;
      margin-top:-10% !important;
  }
  .about-img-home{
      text-align:center;
      margin-top:50% !important;
  }
  .application{
      margin-top:10%;
      /*position:absolute;*/
  }
  .fibretron-revar{
       margin-top:100%;
       position:absolute;
  }
  .about-second{
      margin-top:150%;
      /*position:absolute;*/
  }
  .social-image{
      margin-top:40%;
      position:absolute;
      text-align:center;
  }
  .social-content{
      position:absolute;
  }
  .economic-content{
      margin-top:120%;
  }
  .environmental{
      margin-top:5%;
      margin-bottom:2%;
      
  }
  .background-frist{
      margin-top:-280%;
      position:absolute;
  }
  .background-appliation{
      min-width:400px;
      left:-300px;
      top:-50%;
      
  }
  /* .icon{*/
  /*    min-width:90% !important;*/
  /*    min-height:44% !important;*/
  /*    margin-top:-92% !important;*/
  /*}*/
  .icon-application{
      min-width:91%;
      /*position:absolute;*/
      max-height:41% !important;
      margin-top:-90% !important;
      /*padding-top:10px;*/
  }
  .card{
      margin-bottom:5%;
  }
  .background-img{
      position:absolute;
      left:-180px;
      right:10px;
      height:400px;
      min-width:350px;
      top:-120px;
  }
  .special-applications{
      margin-top:120%;
      position:relative;
  }
  .special-applications h1{
      margin-top:10%;
  }
  
  .application-road{
      margin-top:150%;
  }
  .background-appliation-second{
    min-width:400px;
    margin-top:30%;
  }
  
  .background-imgsecond{
    left:-10px;
    right:10px;
    height:400px;
    min-width:300px;
    margin-top:-20%;
  }
  .blog_img{
      margin-top:20%;
      margin-bottom:10%;
  }
  .testimonials{
      margin-top:80%;
      
  }
  .achievement .fw-bold{
      text-align:center;
      font-size:20px;
      /*margin:auto;*/
      display:block;
      width:100%;
  }
   .achievement h2 br{
      display:none;
  }
  
  .heading p br{
      display:none;
  }
  .heading p{
      text-align:justify;
  }
 .col-lg-6 h2{
      font-size:12px;
      float:right;
      margin-top:-10%;
  }
  .bg-img{
      height:75%;
  }
  .input-group{
      width:75%;
      height:2%;
      float:right;
  }
   .input-group>.form-control{
      height:5%;
  }
  .input-group-text{
      width:25%;
     
  }
   .why-box h6{
    width: 100%;
    text-align: left;
    color:#fff;
   }
   .why-box p,span{
    color:#fff;
   }
  .why-box {
   display:flex;
  }
  .why-box .contant-box {
   margin-left:10px;
  }
  .contant-box h6{
      width:120%!important;
      font-weight:500;
  }
  
  .why-box-1{
    margin-top:-400px;
    background-color: rgba(0,0,0, 0.4);
    height:400px;
    position:relative;
    margin-left: 5px;
    margin-right: 5px;
    padding:10px;
  }
  .testionails-set-box{
      height:200px;
      width:200px !important;
  }
  .testiomnials-text p{
      font-size:10px;
  }
  .testionails-set-box .triangle-down{
      margin-top:-1px;
  }
  .test-heading h1{
      font-size:20px;
  }
   .btn-light{
      width:100%;
  }
  
  .main-top{
      margin-top:49%;
      position:absolute;
  }
 .box-1{
      margin-left:3%;
      margin-top:2%;
      width:60%;
      margin-bottom:-10%;
  }
  .main-heading button{
      margin-top:-14%;
      width:100%;
  }
  .box-2{
     /*height:2%;*/
     padding:2%;
      width:60%;
  }
  
  /*.box-3{*/
  /*    margin-top:-10%;*/
  /*}*/
  
 
  .slider-heading{
      text-align:center;
  }

  .bg-img img{
      display:none;
  }
   .bg-img img{
      background:lightgrey;
  }
  .subscribe-newsletter h2{
      text-align:center;
  }
  .subscribe-newsletter .form-control{
     width:100%;
      
  }
  .mission h2{
      float:left;
      font-weight:bold;
      font-size:16px;
  }
   .mission-text{
      /*position:relative;*/
      margin-top:-200%;
  }
  .mission-text h2{
      float:left;
      font-weight:bold;
      font-size:16px;
  }
  .about-box{
      text-align:center;
  }
  .mission-image{
      margin-top:100%;
      position:absolute;
  }
  .content-about{
      margin-top:-15%;
      position:absolute;
      margin-bottom:10%;
      text-align:justify;
  }
   .content-about p{
      text-align:justify;
      margin:5px;
  }
  .content-about p span{
     color:black!important;
     font-weight:bold;
  }
  .social-media{
      flex-direction: column;
  }
   .phone .icon{
      left:0;
      right:0;
  }
  .email{
     left:0;
     right:0;
  }
  .number{
      display:flex;
  }
  .number-contact{
      display:flex;
  }
  .contact-img{
      margin-top:-230%;
  }
 .contact-img .images-contact{
      height:300px !important;
      width:230px !important;
      margin-left:40% !important;
      margin-top:-10%!important;
     
  }
  .container .backgeround-images{
      width:430px !important;
      height:750px !important;
      position:absolute;
      left:0;
      right:0;
  }
  .content-get{
      margin-top:100%;
  }
  .about-img img{
      max-width:100%;
      height:auto;
  }
.faq-header{
    margin-top:20%;
}
.heading-contact{
    margin-top:8%;
}
  .content-faq{
      margin:auto;
  }
  .why-box .icon-box img{
   height:70px;
   width:70px;
}
}
@media (max-height: 360px){
    .icon-application{
        min-width:91% !important;
        min-height:41%!important;
        margin-top:-90%!important;
    }
}