<style>

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
    body{
      margin:0;
      font-family:Arial, sans-serif;
      background:#EFF23F;
    }

    #scrollTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
      border: none;
      border-radius: 50%;
      background: black;
      color: white;
      font-size: 20px;
      cursor: pointer;
      display: none;
   }

#scrollTopBtn:hover {
  background: #111827;
}

.company-brand{
  display:flex;
  gap:15px;
  align-items:center;
}

.company-brand img{
  height: 110px;
  width: 100px;
}

@media(max-width:768px){

.company-brand{
  flex-direction:row;
  text-align:center;
  justify-content: center;
    gap: 10px;
    text-align: left;
}

.company-brand img{
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   
  min-width: unset;      
}

.brand-text h1{
  font-size:18px;
  margin: 0;
}
}

@media(max-width:1024px){
.brand-text h2{
  font-size:16px;
  letter-spacing:12px;
  margin: 0;
}
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;   
  min-width: 220px;      
}

.brand-text h1,
.brand-text h2 {
  margin: 0;
  text-align:center;
}



.brand-text h2 {
  font-size: clamp(14px, 2.5vw, 40px);
  font-weight:750;
  letter-spacing: 24px;
  font-family: "DFKai-SB", "KaiTi", serif;
}

.brand-text h1 {
  font-size: clamp(18px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 2px;
  font-family: sendra;
}


.sticky-wrapper{
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  overflow: visible;
}

    header {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      min-height: 120px;
      height: auto;
      background: #EFF23F;
      color: black;
      padding: 20px 30px;
      overflow: visible;
      box-sizing: border-box;
      flex-wrap: nowrap;
      gap: 12px;
    }

    .logo{
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    }

    nav{ 
background:#374151; 
padding:10px; 
text-align:center; 
overflow: visible; 
white-space:nowrap; 
} 

nav a{ 
color:white; 
text-decoration:none; 
margin:0 20px; 
position: relative; 
display: inline-block; 
} 

nav a::after { 
content: ""; 
position: absolute; 
left: 0; 
bottom: -5px; 
width: 0%; 
height: 2px; 
background: #EFF23F; 
transition: 0.3s ease; 
} 

nav a:hover { 
color: #EFF23F; 
} 

nav a:hover::after { 
width: 100%; 
} 



.dropdown { 
display: inline-block; 
position: relative; 
} 

.dropdown-content { 
display: none; 
position: absolute; 
background: #ffffff;
min-width: 200px; 
top: 100%; 
left: 20px; 
z-index: 9999; 
text-align: left;
box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
} 

.dropdown-content a { 
color: #111; 
padding: 10px; 
display: block; 
margin: 0; 
white-space: normal;
line-height: 1.4;
transition: 0.2s; 
} 
.dropdown-content a:hover { 
background: #fff9c4; 
color: #111;
} 

.dropdown:hover .dropdown-content { 
display: block; 
} 

.dropdown-sub{ 
position:relative; 
} 

.dropdown-sub-content{ 
display:none; 
position:absolute; 
left:100%; 
top:0; 
background:white; 
min-width:200px; 
border-radius:10px; 
z-index: 10000;
box-shadow:0 2px 10px rgba(0,0,0,0.2); 
} 

.dropdown-sub:hover >.dropdown-sub-content{ 
display:block; 
} 

.menu {
  position: relative;
  z-index: 10000;
}


    section{
      scroll-margin-top: 80px;
      padding:20px 50px;
      background:#EFF23F;
    }

    html{
      scroll-behavior:smooth;
      scroll-padding-top: 100px;
    }

.follow-pill{
  position: relative;
  overflow: hidden;

  display: inline-block;
  padding: 15px 25px;
  border-radius: 50px;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  color: white;
  border: 2px solid #ffffff;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 8px 20px rgba(0,0,0,0.25);
}

/* shimmer layer */
.follow-pill::before{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.05) 70%,
    transparent 100%
  );

  transform: skewX(-20deg);
  pointer-events: none;

  animation: shimmerMove 5s infinite linear;
}

/* continuous motion */
@keyframes shimmerMove{
  0%{
    left: -60%;
  }
  100%{
    left: 160%;
  }
}

.follow-title{
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  letter-spacing: 1px;
  font-size: 20px;
}

.social-icons a{
  text-decoration: none;
  color: white;
  font-size: 30px;
  margin: 0 12px;
  transition: 0.3s;
  display: inline-block;
}

.social-icons a:hover{
  color: #facc15;
  transform: translateY(-3px);
}

    .hero{
      background:linear-gradient(rgba(24,52,24,0.55), rgba(24,52,24,0.55)),
        url('images/backgound-image2.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color:white;
      padding:120px 20px;
      justify-content: center;
      text-align:center;

    }
  
     
    .hero h2{
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
    white-space: normal;
    letter-spacing: 1px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #EFF23F 50%,
        #ffffff 100%
    );

    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 3px 8px rgba(0,0,0,0.5))
        drop-shadow(0 0 20px rgba(239,242,63,0.4));

    animation: shine 2s linear infinite;
}

@keyframes shine{
    to{
        background-position: 200% center;
    }
}

.hero h2::after{
    content:'';
    display:block;
    width:120px;
    height:5px;
    margin:20px auto 0;
    border-radius:10px;
    background: linear-gradient(
        90deg,
        transparent,
        #EFF23F,
        transparent
    );
}



@media(max-width:768px){
  .hero h2{
    font-size:32px;
  }
}

      

    .card{
      background:url('images/white-background-with-yellow-hexagonal-pattern-shape_1017-53245.jpg');
      padding:20px;
      margin-bottom:10px;
      border: 1px solid #e2e8f0;
      box-shadow:0 10px 28px rgba(0, 0, 0, 0.08);
    
      border-radius: 14px;
      border-left: 5px solid #808080;
     
      display:flex;
      flex-direction:column;
      align-items:center;
      
      text-align:left;
      padding-top:0px;
      overflow:hidden;
    }

    .card p{
      text-align:center;
      margin-bottom:20px;
    }

.card-content { 
   display: flex; 
   align-items:flex-start; 
   justify-content:space-between; 
   gap: 20px; 
   flex-wrap: wrap; 
   margin-bottom:20px 
   } 

.card-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
  width: 100%;
}

.card-img { 
   width: 100%; 
   height: 180px; 
   object-fit: cover; 
   border-radius: 8px;
   transition:0.3s ease;
}

.card-img:hover{
  transform:scale(1.05);
}

.card-text { 
   flex: 1; 
   min-width:280px; 
   }

.card-text h3{ 
   text-align:center;
   margin-bottom:10px;
   }

.card-text p{ 
   text-align:center;
   margin-bottom:10px;
   }


.description{
  color:#555;
  line-height:1.5;
  text-align:justify;
}

@media (max-width: 768px){
  .card-content{
    flex-direction: column;
  }

  .card-gallery{
    grid-template-columns: 1fr 1fr;
  }
}
      


    .about-card{
      display:flex;
      flex-direction:row;
      background:url('images/white-background-with-yellow-hexagonal-pattern-shape_1017-53245.jpg');
      border-left: 5px solid #808080;

      color: black;
      padding: 60px 30px;
      border-radius: 20px;
      overflow:hidden;
      margin:0 auto;
    }

@media(max-width:768px){

.about-card{
  flex-direction:column;
}

}

   .card-text-background {
  min-width: 0;
max-width: 100%;
width: 100%;
  padding:10px 15px;
   padding-right:40px;
}

    
    .card-text-background p{
  text-align:justify;
  line-height:1.6;
  color:#4b5563;
  font-size: clamp(14px, 1.2vw, 18px);
}


   .gallery{
 width:100%;
  max-width:500px;
min-width: 0;
  flex-shrink:1;
  min-width: 0;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.gallery img{
  width:100%;
  height: clamp(120px, 15vw, 180px);
  object-fit:cover;
  border-radius:8px;
  transition:0.3s ease;
}

.gallery img:hover{
  transform:scale(1.05);
}

@media (max-width: 900px) {
  .gallery {
    max-width: 400px;
    gap: 10px;
  }

  .gallery img {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .gallery {
    max-width: 100%;
    grid-template-columns: 1fr; /* stack images */
  }

  .gallery img {
    height: 200px;
  }
}


.product-grid{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:20px;
  justify-content:center;
}

.product-card{
  width:250px;
  background:white;
  border-radius:5px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  padding:15px;
  text-align:left;
}

.product-card:hover {
  background:#fff9c4;
}


.product-card img{
  width:100%;
  height:180px;
  object-fit:contain;
  border-radius:10px;
  transition:0.3s ease;
}

.product-card img:hover{
transform:scale(1.20);
}



.product-card h3{
  font-size:16px;
  margin:10px 0 5px;
  text-align:center;
}

.product-card p{
  font-size:14px;
  color:#555;
  text-align:left;
}


.map-btn{
      display:inline-block;
      padding:10px 15px;
      background:#fff9c4;
      color:black;
      border-radius:8px;
      text-decoration:none;
      max-width: 100%;
      box-sizing: border-box;
      font-size: clamp(14px, 1.5vw, 16px);
      text-align: center;
  transition: background 0.3s ease;
    }
    .map-btn:hover{
      background:#EFF23F;
    }



  .branches{
    width:90%;
    margin:auto;
    padding:40px 0;
    overflow-x:auto;
   }

  .branches h2{
    text-align:center;
    margin-bottom:30px;
    font-size:40px;
   }

  table{
    width:100%;
    border-collapse:collapse;
    background:white;
   }

  th{
    text-align:center;
    background:#f7f7f7;
    padding:20px;
    font-size:22px;
   }

  td{
    padding:20px;
    vertical-align:top;
    line-height:1.8;
    border-top:1px solid #ddd;
    font-size:clamp(14px, 1.2vw, 18px);
    text-align:center;
   }

.address-col{
  text-align:center;
  vertical-align:top;
}

.address-box{
  display:inline-block;
  width:100%;
  max-width:380px;
  text-align:left; 
}
  tr:hover{
    background:#fff9c4;
   }

  .small-img{
    width:100%;
    max-width:350px; 
    transition:0.3s ease;
}

.small-img:hover{
  transform:scale(1.05);
}
 

.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:20px;
  align-items:center;
  justify-content:center;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  max-width:600px;
  padding:14px;
  border:1px solid #d1d5db;
  border-radius:5px;
  font-size:16px;
  box-sizing:border-box;
}

.contact-form button{
  background:#fff9c4;
  color:black;
  padding:14px;
  border:none;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#EFF23F;
}

.contact-form-card{
      background:url('images/white-background-with-yellow-hexagonal-pattern-shape_1017-53245.jpg');;
      padding:20px;
      margin-bottom:20px;
      border-radius:30px;
      box-shadow:0 2px 5px rgba(0,0,0,0.250);

      border-left: 5px solid #808080;
     
      display:flex;
      flex-direction:column;
      align-items:center;
      
      text-align:center;
      padding-top:0px;
      overflow:hidden;
    }


.contact-form-card p{     
      text-align:center;
    }


.vacancy-container{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.vacancy-card{
  flex:1;
  width: 300px;
  max-width:500px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.vacancy-card:hover{
  transform: translateY(-5px);
}

.vacancy-card h3{
  margin-bottom: 10px;
  color: #111827;
  text-align:center;
}

.vacancy-card p{
  margin: 6px 0;
  color: #4b5563;
  font-size: 14px;
  text-align:left;
}



.note {
  background: #EEEEEE;
  border-left: 5px solid #DDDDDD;
  padding: 10px;
  margin: 10px 0;
  color: #6d4c41;
  font-size: 14px;
  border-radius: 6px;
}

 
    footer{
  background:#111;
  color:white;
  padding:5px 20px 5px;
}

.footer-columns{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  margin-top:10px;
}

.footer-columns a{
  display:block;
  color:#ddd;
  text-decoration:none;
  margin-top:10px;
}

.footer-columns a:hover{
  color:#facc15;
}

.footer-logo img{
  width:140px;
  height:140px;
}

.copyright{
  text-align:center;
  margin-top:30px;
  padding-top:15px;
  border-top:5px solid rgba(255,255,255,0.2);
  font-size:14px;
  color:#aaa;
}

a[href^="mailto:"]{
  color:#2563eb;
  text-decoration:none;
}

a[href^="mailto:"]:hover{
  text-decoration:underline;
}

 </style>