*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body{
    font-family: 'Inter', sans-serif;
}
a{
    text-decoration: none;
    color: #000;
}

ul{
    list-style: none;
}
h1, h2, h3 {
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.5px;
}
.WrapperContainer{
    padding: 1rem 6.4rem;
}
#Hero{
 
    
}
#Hero #header{
   
   display: flex;
   align-items: center;
   justify-content: flex-start;
}
#Hero #header .LogoContainer img {
    width: 18rem;
    height: auto;

}

#Hero #header .nav-list  {
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-left: 5rem;
    padding: 2rem 4rem;
    

}


#Hero #header  .nav-list .nav-item{
    padding: 2rem 2rem 1.5rem 2rem;
    transition: all .5s ease;
    position: relative;
}

#Hero #header  .nav-list .nav-item::after{
    content: "";
    position: absolute;
    left: 10%;
    bottom: 0%;
    width: 80%;
    height: 0.2rem;
    transform-origin: left;
    transform: scaleX(0);
}

#Hero #header  .nav-list .nav-item:hover:after{
   
    transform: scaleX(1);
    transition: all 0.5s ease;
}

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  font-size: 1.6rem;
}
.lang-switcher a {
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 3rem;
    margin-right: 1rem;
}

.lang-switcher a:hover{
    color: rgba(26, 129, 59, 0.548);
    transition: color .5s ease;
}



/* Hero */
.HeroConatiner{
    margin-top: 8rem;
}


#Hero .main_Title {
font-size: 5.8rem ;
font-weight: 700;
}
#Hero .main_subtitle {
    font-size: 2.4rem;
    margin-top: 2.4rem;
    margin-left: 1rem;
    color: #525252;
}


.HeroImage{
    width: 100%;
    height: 50rem;
    margin-top: 5rem;
    position: relative;
}

.HeroImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 0.8rem;
}

.Hero_Card_2{
     bottom:-10%;
    left: 2%;
    width: 40rem;
}
.Hero_Card_1{
     top: -20%;
    right: 5%;
    width: 30rem;
}
.Hero_Card_1,.Hero_Card_2{
    position: absolute;
    z-index: 9999;
    
    background-color: rgb(3, 56, 21);
    color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 1rem;
}

.Hero_Card_Title{
    font-size: 2.4rem;
    margin-bottom: 4rem;
    font-weight: 500;
}

.Hero_Card_Subtitle{
    font-size: 1.8rem;
    color: #cecece;
    
}
/* Partners Sectio for the Styles */
.Title_Section{
    font-size: 4rem;
    margin-bottom: 4rem;
}


.partners-section {
  width: 100%;
  padding: 6rem 0;
  
  text-align: center;
  overflow: hidden;
  margin-top: 10rem;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
}

.partners-track {
  width: calc(200%);
  display: flex;
  gap: 4rem;
  animation: slide 25s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}
.partners-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 3rem;
}

.partners-track a img {
  width: 140px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners-track a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}


@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* About Us Section Style */
#AboutUs{
    width: 100%;
}

#AboutUs .Title_Section {
    
    margin-bottom: 6rem !important;
}
.about-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 250rem;
  flex-wrap: wrap;
  margin: 4rem auto;
 
}
.about-text {
  flex: 1 1 500px;
  
}

.about-text p {
  font-size: 1.7rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}


.about-image {
  flex: 1 1 450px;
  height: 100%;
  
}

.about-image img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}




/* Trust Section Styles  */

.trust-section {
  margin-top: 10rem;
  padding: 8rem 4rem;
  border-radius: 1.6rem;
  background-color: #a0bda115;
}

.trust-section h2 {
 
 text-align: center;
 margin-bottom:4rem;
}


.trust-section p {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.trust-section ul {
  font-size: 1.8rem;
  color: #444;
  margin-left: 2rem;
  list-style-type: disc;
  margin-bottom: 2rem;
}

.advantages-grid{
    margin-top: 10rem;
    display: grid;
    grid-template-columns: repeat(3,minmax(30rem,1fr));
    gap: 7rem;
    justify-content: center;
}
.adv-card {
  position: relative;
  background: #fff;
  border-radius: 1.6rem;
  padding: 6rem 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}


.adv-card:hover .adv-icon {
  background-color: rgb(47, 82, 50);
  transition: background-color 0.5s ease;
}
.adv-icon {
  font-size: 3rem;
  background-color: rgb(53, 53, 53);
  color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
   transition: background-color 0.3s ease;
}

.adv-icon svg {
    width: 3rem;
}
.adv-card h3{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.adv-card p {
    font-size: 1.8rem;
}
.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}





/* Products Section Styles */

#Products{
 width: 100%;
min-height: 100vh;
 padding-top:10rem;

 
}

.Section_Title {
    font-size: 4rem;
}

#Products .Section_Title{
    width: 100%;
    text-align: center;
}


#Products ul {
    list-style: circle;
}

#Products .Section_subTitle{
    font-size: 2.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #777777;
}

.Products_Cards_Container{
    margin-top: 6rem;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(5,minmax(20rem,1fr));
    grid-template-rows: 2;
    gap: 2rem 2rem;
    
}

.tab-content{
    display: none;
    margin-top: 5rem;
}
.tab-content.active{
    display: block;
}
#Products .tabs{
    margin-top: 5rem;
    text-align: center;
}

.tab-content-Title{
  text-align: center;
   font-size: 2.4rem;
   margin-bottom: 4rem;
}
.tab-content-subTitle{
    width: 80%;
    margin-left: 10%;
    margin-bottom: 5rem;
    font-size: 1.8rem;
    line-height: 1.6;
}

.tab-btn {
    background: rgb(59, 117, 78);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.8rem;
    margin-right: 2rem;
    padding: 2rem 4rem;
    font-weight: 600;
    color: #f1f1f1;
    box-shadow: 5px 5px 10px #4caf4f69;
    border-radius: 1rem;

}
.tab-btn.active{
    background: rgb(117, 177, 117);
}
.Product_Card_Item{
    width: 100%;
    height: 100%;
    border:0.2rem solid #f5f4f4;
    padding: 2rem 3rem;
    border-radius: 2rem;
    cursor: pointer;
    
}

.Product_Card_Item img {
    width: 80%;
    margin-left: 10%;
}

.Product_Card_Item h4 {
    font-size: 2rem;
    margin-bottom: 1.4rem;
}

.Product_Card_Item p {
    font-size: 1.6rem;
}


.Product_Card_Item:hover{
   box-shadow: 0px 4px 10px #33333367;
}

table{
    width: 80%;
    margin: auto;
}
thead tr th {
    font-size: 2.4rem;
    padding: 2rem ;
    font-weight: 600
}
tbody tr td {
    font-size:2rem;
    padding: 1rem;
    font-weight: 500;
}

.silicon-table {
  width: 80%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 2rem 1rem;
}
.silicon-table thead,.silicon-size-table thead {
  background-color: rgb(3, 56, 21);
  color: #fff;
}

.silicon-table th,
.silicon-table td,
.silicon-size-table th,
.silicon-size-table td {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid #ddd;
}
.silicon-table tbody tr:hover {
  background-color: #f3f9f5;
}

.Product_Description{
    width: 80%;
  margin: 4rem auto;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  background-color: #f9f9f9;
  padding: 3rem 4rem;
  border-left: 6px solid rgb(3, 56, 21);
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.silicon-size-table,.supply-info-box
    
 {
  width: 80%;
  margin-left: 10%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.supply-info-box{
    box-shadow: none !important;
    margin:3rem auto !important;
    padding: 2rem 0.5rem;
}
.supply-info-box h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: 600;
}

.supply-info-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.8rem;
}

.supply-info-box th,
.supply-info-box td {
  text-align: left;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.supply-info-box th {
  width: 40%;
  font-weight: 600;
  
}

/* Tab Content =====> properties */
.physical-properties {
  margin-top: 5rem;
  margin-bottom: 4rem;
  padding: 2rem 3rem;
  background-color: #f7f9f7;
  border-left: 6px solid rgb(3, 56, 21);
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.physical-properties h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: rgb(3, 56, 21);
  margin-bottom: 2rem;
}

.physical-properties ul {
  list-style-type: circle;
  margin-left: 3rem;
  line-height: 1.8;
}

.physical-properties li {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.physical-properties li strong {
  color: rgb(3, 56, 21);
}

/* Application Style Section  */
#application .Section_Title{
    font-size: 3.2rem;
    margin-top: 4rem;
    margin-bottom: 8rem;
}
.applications-section {
  width: 100%;
  padding: 8rem 0;
}

.app-card {
  background-color: #f9f9f9;
  border-radius: 1.6rem;
  padding: 3rem 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.app-card h3 {
  font-size: 2.8rem;
  color: rgb(3, 56, 21);
  margin-bottom: 1.2rem;
}

.app-card p {
  font-size: 1.8rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.app-card ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  color: #333;
  list-style-type: disc;
}

.app-card strong {
  color: rgb(3, 56, 21);
}




/* FAQ Section Styles */


#FAQ {
    width: 100%;
    height: 100vh;
    padding-top: 10rem;
   
}
#FAQ h2{
    text-align: center;
}
.faq-container{
     max-width: 80%;
  margin: 4rem auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.faq-container details {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.faq-container summary {
  cursor: pointer;
 font-weight: 600;
  font-size: 2.4rem;
  color: #333;
  padding: 2rem ;
  
}

.faq-container p {
  margin-top: 0.5rem;
  color: #444;
  line-height: 1.5;
  font-size: 1.8rem;
  margin-left: 3rem;
}



/* ContactUs Section Style */

#ContactUs{
    width: 100%;
    height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
    
}
#ContactUs .Title_Section{
    text-align: center;
    margin-bottom: 2rem;
}
#ContactUs .Subtitle_Section{
    text-align: center;
    font-size: 1.8rem;
    color: #777777;
}

.contact-form{
    width: 60%;
    margin-left: 20%;
    margin-top: 5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.6rem 2.4rem;
  margin-bottom: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  resize: none;
  font-size: 1.6rem;
}

.contact-form button {
  background: #4CAF50;
  color: #fff;
  border: none;
  padding: 2rem 4rem;
  border-radius: 8px;
  cursor: pointer;
   font-size: 1.6rem;
}

/* footer */

footer{
    width: 100%;
    padding: 3rem 2rem;
    background-color: #242725;
    margin-top: 5rem;
    
}

footer a {
    color: #f1f1f1;
    font-size: 1.6rem;
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  width: 80%;
  
}
footer h3{
   font-size: 1.6rem ;
   font-weight: 500;
}
footer h2, 
footer h3,
footer p {
  color: #f1f1f1;
  margin-bottom: 1rem;
  
}
.footer-links li{
margin-bottom: 1rem;
}
.footer-brand h2{
    font-size: 1.8rem;
}
.footer-brand p{
    font-size: 1.6rem;
}
.footer-contact p{
font-size: 1.6rem;
}

.footer-social{
    display: flex;
    flex-direction: column;
}

footer a:hover {
  color: #4CAF50;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 1.4rem;
  color: #b6b6b6;
}