*{
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
   background-color: black;
   color: white;
}
html{
    scroll-behavior: smooth;
    overflow-y:scroll;
}

#header{
    width: 100%;
    
    
    
    background-size: cover;
    background-position: center;
}
.container{
    padding:1% 50px;
}
nav{
    display: flex;
    
    

    align-items: center;
    justify-content:space-evenly;
    flex-wrap: wrap;
}
nav .fas{
        display: none;
    }

.logo{
    display:flex;
    align-items:center;
    gap:10px;


}
.logo-img{
    width:150px;
    height:150px;
    background-color: white;
    
}
.logo h1{
    margin:0;
    font-size:28px;
    color:white;


}


nav ul li{
    display: inline-block;
    list-style: none;
    margin:10px 40px;

}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    
}
nav ul li a:hover{
    color:orange;
}


nav ul li a::after{
    content: "";
    width:0%;
    height:3px;
    background:linear-gradient(135deg, #ff9900, #ff6600);
    
    position: absolute;
    left: 0;
    bottom:-6px;
    transition: 0.5s;




}

nav ul li a:hover::after{
    width: 100%;
}

.header-text{
    margin-top: 15%;
    font-size: 30px;
    
}
.header-text h1{
    margin-top: 20px;
    font-size: 60px;
}
.header-text h1 span{
    color:linear-gradient(135deg, #ff9900, #ff6600);
}

/*-----------------Title------------*/
#header-title{
    width:100%;

    position:relative;
    height:100vh;
    overflow:hidden;
    align-items: center;
}

.video-wrapper{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.video-background{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.5);
}
.title-container{
    padding:0;
}

.title{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;

}

.title h2{
    font-size:70px;
    font-weight:600;
    text-align:center;
    line-height:1.4;
    margin-top:-120px;

}


.Innovating{
    color: #fff;
}

.Sustainable_Energy{
    color:rgb(241, 162, 36);
}
.Greener_Planet{
    color:#14ff47;
}

.title-container{
    position: relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    text-align:center;
}
/*-----------------Sub-Title------------*/

#subtitle{
    width:100%;
    height:150px;
    align-items:center;
    background-color: #fff;

}

.subtitle_main_class{
    align-items:center;
}

.subtitle_main_class h1{
    color:black;
    font-size:40px;
    text-align:center;
}

/*-----------------about------------*/

#about {
    width: 100%;
    background: linear-gradient(180deg, #F8F5EF, #F8E7C2);
    padding-bottom: 80px;
}

.about_main {
    text-align: right;
    color: black;
    padding: 60px 80px 30px;
    position: relative;
}

.about_main h2 {
    font-size: 36px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about_main h2::before {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #ff004f;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.about_main p {
    margin-top: 30px;
    font-size: 26px;
    line-height: 1.6;
}

.about_main p span {
    color: #ff004f;
    font-size: 48px;
    font-weight: bold;
}

.focus_areas_main {
    padding: 40px 80px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.focus_areas_main h1 {
    font-size: 48px;
    text-align: center;
    color: black;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.focus_areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.focus_areas div {
    background: #262626;
    padding: 30px;
    border-radius: 12px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.focus_areas div h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ff004f;
}

.focus_areas div p {
    font-size: 18px;
    line-height: 1.6;
}

.focus_areas div:hover {
    background-color: orange;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.focus_areas div:hover h2,
.focus_areas div:hover p {
    color: white;
}

/*-----------------products------------*/

#products{
  background-color:white;
  
  
}
.product_main_heading {
    text-align: right;
    color: black;
    padding: 60px 80px 30px;
    position: relative;
}

.product_main_heading h1 {
    font-size: 36px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.product_main_heading h1::before {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #ff004f;
    position: absolute;
    left: 0;
    bottom: -10px;
}



.product_name0{
    margin-top: 20px;
    background-color:white;
    border-radius: 20px;
}


.product_name0 h2{
    font-size:40px;
    display: block;
    color: #262626;
    text-align: center;
   
    
}
.product_name0 h3{
    font-size:30px;
    display: block;
    color: #262626;
    text-align: center;
   
    
}
.product_img {
    margin-top:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    perspective: 1000px; /* Key for 3D effect */
    border: 2px solid orange;
}

.product_img img {
    width: 408px;
    height: 612px;
    object-fit: cover;
    margin-bottom: 20px;
    
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product_img img:hover {
    
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.product_image h2,
.product_image h3{
  text-align: center;

}
.product_intro_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background-color: black;
    border-radius: 20px;
    flex-wrap: wrap;
  }

  .product_text {
    flex: 1;
    color: white;
  }

  .product_text h2,
  .product_text h3 {
    color: white;
    margin-bottom: 10px;
  }

  .product_description {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
  }

  #readMoreBtn {
  margin-top: 20px;
  padding: 10px 18px;
  font-size: 16px;
  background-color: orange;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

 #readMoreBtn:hover {
  background-color: #ff7700;
}

#readMoreIcon {
  font-size: 18px;
  transition: transform 0.3s ease;
}


  .read_more_btn:hover {
    background-color: darkorange;
  }

  .product_image img {
    width: 408px;
    height: 612px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid orange;
  }
  .center-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

  


.product_grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.product_grid img {
  margin: 0 auto;

  max-width: 500px;
  height: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.product_grid table {
  width: 50%;
  max-width: 600px;
  border-collapse: collapse;
  background-color: #222;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.product_grid th,
.product_grid td {
  padding: 12px 18px;
  text-align: center;
}

.product_grid th {
  background-color: #f8f4f4;
  font-weight: bold;
}

.product_grid tr:nth-child(even) td {
  background-color: #2c2c2c;
}

.product_grid tr:not(:last-child) td {
  border-bottom: 1px solid #444;
}




  .product_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.product_features > div {
  background: linear-gradient(135deg, #ff8800, #ff5500);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Headings */
.product_features h2 {
  font-size:25px;
  margin-bottom: 15px;
  color: #08ef59;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}




/* Base UL/LI styles */
.product_features ul {
  list-style: none; /* Remove default bullets */
  padding: 0;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product_features ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.product_features ul li::before {
  content: "●";
  color: #3498db; /* Soft blue */
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.6;
}



.product_img h3{
  margin-top:10px;
  color: #000;
}

.features span{
  color: #fdf9f9;
  font-weight: bold;
}




table {
      border-collapse: collapse;
      width: 60%;
      margin: 20px auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      ;
}

th, td {
      text-align: left;
      padding: 12px 16px;
}
th {
      background-color: #f6f1da;
      color: #333;
      font-size: 16px;
}
td {
  background-color:orange!important;
  color: black !important;
  font-size: 16px !important;
}


tr:not(:last-child) td {
      border-bottom: 1px solid #ddd;
}
.icon {
      display: inline-block;
      margin-right: 8px;
}





.modes_details{
    margin-top: 40px;



    
}
.modes_details h2{
    
    color:white;
    font-size:30px;
    text-align: center;
}


.modes_main {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.modes_main div {
  background: linear-gradient(135deg, #ff8800, #ff5500);
  padding: 15px 25px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  transform: scale(1);
}


.modes_main div:hover {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.modes_main div h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  color: white;
  user-select: none;
}

.modes_main .arrow {
  background: none;
  box-shadow: none;
  padding: 10px 0;
  font-size: 16px;
  text-align: center;
  cursor: default;
  border-radius: 0;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default: show right arrow */
.modes_main .arrow::before {
  content: "→";
}


.mode_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}

.modes_main h3 {
  cursor: pointer;
  color:white;
  
  border-radius: 10px;
  transition: transform 0.4s ease, background 0.3s, color 0.3s;
  cursor: pointer;
  transform-style: preserve-3d;
}



.modes_main_row {
  margin-top: 30px;
  border: 2px solid orange;
  border-radius: 20px;
}

.mode_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.mode_section > div {
  flex: 1 1 45%; /* left and right blocks share equal space */
}

/* Reduce video size */
.video-background1 {
  width: 100%;
  max-width: 600px; /* controls video size */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Optional: style the headings for clickability */


.modes_main h3:hover {
  background: orange;
  color: white;
  transform: translateX(10px) translateY(-10px) translateZ(30px) scale(1.1);
}

/* Optional: make text look cleaner */
.mode_section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color:white;
  text-align: center;
  
}

.mode_section p {
  

  font-size: 25px;
  color: black; /* ensure it's visible */
  margin-top: 10px;
  display: block;
  text-align: center;
}




#demonstration {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .demonstration_heading h2 {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .demo_video {
    position: relative;
    padding-top: 56.25%;  /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  .demo_video video.video-background2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .video_controls {
    margin-top: 15px;
    text-align: center;
  }

  .video_controls button {
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 10px 18px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .video_controls button:hover {
    background-color: #0056b3;
  }
.additional_features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Features text block */
.additional_features .features_text {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.additional_features h3 {
  color: #333;
  margin-bottom: 12px;
}

.additional_features ul {
  padding-left: 20px;
  color: #555;
  font-size: 16px;
}

.additional_features ul li {
  margin-bottom: 8px;
}

/* Image styling */
.zone-img {
  flex: 1;
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
.zone1_container {
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.zone1_heading {
  font-size: 28px;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}
.additional_features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.zone1_heading {
  font-size: 22px;
  text-align: center;
  width: 100%;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.features_text {
  flex: 1;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.features_text ul {
  margin: 0;
  padding-left: 18px;
}

.zone-img {
  flex: 1;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*-----------------Capabilities--------*/

#capabilities {
  
  background-color: #f8f9fa;
  
}
.capabilities_heading{
    text-align: right;
    color: rgb(251, 249, 249);
    padding: 60px 80px 30px;
    position: relative;
}

.capabilities_heading h1{
    font-size: 36px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.capabilities_heading h1::before{
    content: "";
    width: 100%;
    height: 4px;
    background-color: #ff004f;
    position: absolute;
    left: 0;
    bottom: -10px;
}
.capabilities.container{
  max-width: 1100px;
  margin: 0 auto;
}

.capabilities_heading h1 {
  text-align: center;
  font-size: 2.2rem;
  color: #0a0a0a;
  margin-bottom: 40px;
}

.cap_content {
  display: grid;
  margin-bottom: 150px;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #007bff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.cap_content .logo-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.cap_content p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}

/*------------------contact-----------------*/

#get-in-touch{
    padding: 10 px;
    margin-bottom: 150px;
}
#get-in-touch .container{
    padding: 0px 200px;
    

}

#get-in-touch h2{
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
    margin-top:30px;
    

}

.form-main-div{
    width: 100%;
    
    display: block;
    justify-content: center;
    text-align: center;
}

.form-main-div h3{
    display: block;
    text-align: left;
}
form input,form textarea{
    width:100%;
    border:0;
    outline:none;
    background:#262626;
    padding:15px;
    margin:20px 0px;
    color:#fff;
    font-size:18px;
    border-radius:6px;

}

.form-btn{
    padding: 14px 60px;
    font-size: 20px;
    border-radius: 15px;
    background:linear-gradient(135deg, #ff9900, #ff6600);
    color: #fff;
    cursor: pointer;
    

}


#footer {
  padding: 40px 60px;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: white;
}

.footeritem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footerrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.footerrow div {
  padding: 10px 20px;
}

.footerrow div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerrow div ul li {
  margin: 10px 0;
}

.footerrow div ul a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footerrow div ul a:hover {
  color: #085856;
}

.footerrow div ul a span {
  color: #085856;
}

.details-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.details-flex i {
  font-size: 20px;
  margin-right: 10px;
}

.details-flex h3 {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .container {
    padding: 1% 20px;
  }

  

  .title h2{
    font-size:70px;
    font-weight:600;
    text-align:center;
    line-height:1.4;
    margin-top:-120px;
    z-index:2;

}

  

  nav .fas{
        display: block;
        font-size: 25px;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }



 
    
    nav ul{
        background: linear-gradient(135deg, #ff9900, #ff6600);
        position:fixed;
        right:-300px;
        top:0;
        width:300px;
        height: 100vh;
        padding-top: 50px;
        z-index: 3;
        transition: right 0.5s;

    }

    nav ul li{
        display: block;
        margin: 40px;
    }

    nav ul .fas{
        position: absolute;
        top:25px;
        left:25px;
        cursor: pointer;
    }
  .header-text {
    margin-top: 20%;
    font-size: 20px;
    text-align: center;
  }

  .header-text h1 {
    font-size: 32px;
  }

  .title h2 {
    font-size: 40px;
    margin-top: -60px;
  }

  .subtitle_main_class h1 {
    font-size: 28px;
  }

  .about_main,
  .focus_areas_main,
  .product_main_heading {
    padding: 30px 20px;
    text-align: center;
  }

  .about_main h2,
  .focus_areas_main h1,
  .product_main_heading h1 {
    font-size: 28px;
  }

  .about_main p {
    font-size: 18px;
  }

  .about_main p span {
    font-size: 30px;
  }

  .focus_areas {
    grid-template-columns: 1fr;
  }

  .product_img img {
    width: 100%;
    height: auto;
  }

  .product_features {
    grid-template-columns: 1fr;
  }
  .product_grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    width: 100%;       /* ensure it uses full width */
    overflow: visible; /* allow content to fully show */
  }

  .product_grid img {
    margin-left:0px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .product_grid table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product_grid table th,
  .product_grid table td {
    padding: 10px 8px;
    border: 1px solid #ccc;
    text-align: left;
  }
 

  .modes_main {
    flex-direction: column;
  }

  .modes_main .arrow::before {
    content: "↓";
    font-size: 12px;
  }


  .mode_section {
    flex-direction: column;
    gap: 20px;
  }

  .mode_section > div {
    flex: 1 1 100%;
  }

  .video-background1 {
    max-width: 100%;
  }

  .mode_section h2 {
    font-size: 24px;
  }

  .mode_section p {
    font-size: 18px;
  }
  .additional_features {
    flex-direction: column;
    padding: 16px;
  }

  .zone-img {
    max-width: 90%;
    margin-top: 15px;
  }

  .features_text {
    text-align: center;
  }

  .cap_content {
    grid-template-columns: 1fr; /* stack items vertically */
    text-align: center;
    padding: 20px;
  }

  .capabilities_heading{
    text-align: center;
  }

  .cap_content .logo-img {
    margin-bottom: 15px;
    width: 120px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .cap_content p {
    font-size: 18px;
  }

  .capabilities_heading h1 {
    font-size: 28px;
  }

  #get-in-touch .container {
    padding: 0 20px;
  }

  #get-in-touch h2 {
    font-size: 32px;
  }

  form input,
  form textarea {
    font-size: 16px;
  }

  .form-btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
  }

  footer {
    text-align: center;
    padding: 20px 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-container div,
  .footer-container a {
    margin: 10px 0;
  }

  .footer-logo {
    width: 100px;
    margin-bottom: 10px;
  }
}







