/* General */

* {  box-sizing: border-box; }

html {scroll-behavior: smooth;}

html, body { overflow-x: hidden; }

body { 
        font-family: "Nunito Sans", sans-serif;
        font-size: 18px;
        color: #606060;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        opacity: 0;
        background: black;
        transition: opacity 0.5s ease-in-out;
    }
        
body.fade-in {
    opacity: 1;
  }


  #cookie-banner {
    position: fixed; bottom: 64px; left: 16px; right: 16px;
    width: 50%;
    text-align: center;
    background: #fff; border: 0; padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08); border-radius: 8px;
    max-width: 980px; margin: 0 auto; z-index:99999;  
    font-family: "Nunito Sans", sans-serif;
  }

  #cookie-banner p { margin: 0 0 8px 0; font-size:16px; line-height: 24px; color:#222; }
  .cb-btn { padding:8px 12px; border-radius:4px; margin:8px; cursor:pointer; border:none; }
  .cb-accept { background:#63c2ca; color:#fff; }
  .cb-decline { background:#f1f1f1; color:#111; }



main{background: #fff;}



a { color: #63c2ca; text-decoration: none; }

a:hover {  color: #46848a; }

button { cursor: pointer; }

a, button { transition: all 0.3s ease; }

ul {
    margin: 0;
    padding: 0;
}


h1 {
    font-size:4rem;
    line-height: 1;
    margin-top: 64px;
    font-weight: 400;
}

h2 {
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 30px;
}

h3 {
    font-size:1.5rem; 
    line-height: 1.5;
    font-weight: 100;
}

h6{
   font-size:0.7rem; 
    line-height: 1.5;
    font-weight: 100;
    text-decoration: underline;
}


p {
    line-height: 1.8;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    
  h1 {
    font-size:3.0rem;
    line-height: 1.0;
    margin-top: 32px;
    font-weight: 400;
}

h2 {
    line-height: 0.6;
    margin-top: 0;
    margin-bottom: 30px;
}

h3 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
}

p {
    line-height: 1;
    margin-bottom: 50px;
}  
      
}

.headertitle{
    margin-top:96px;
@media screen and (max-width: 768px) {
    margin-top:0px;
}

}


.container {
      display: flex;
      flex-wrap: wrap;
      z-index: 2; 
      max-width: 1536px; 
      margin:auto; 
      scroll-margin-top: 200px; 
    }

    .box {
      flex: 1;
      min-width: 460px; /* triggers stacking on small screens */
      box-sizing: border-box;
    }
    
    .left {
    flex: 1; min-width: 460px; padding: 32px; box-sizing: border-box; margin-top:-300px; z-index: 1;
    }
    .right {
    flex: 1; min-width: 460px; padding: 32px;  box-sizing: border-box;
    }

    .left2 {
    flex: 1; min-width: 460px; padding: 32px; box-sizing: border-box;
    }
    
     .left3 {
    flex: 1; min-width: 460px; box-sizing: border-box; margin-left: -94px;  z-index: 1;
    }




.tm-btn {
    display: inline-block;
    border: 2px solid #999;
	border-radius:4px;
    background-color: transparent;
    color: #333;
    padding: 8px 24px;
    font-size: 20px;
}

.tm-btn:hover {
    color: #63c2ca;
    border-color: #63c2ca;
}


.tm-btn2 {
    display: inline-block;
    border: 1px solid #fff;
	border-radius:4px;
    background-color: transparent;
    color: #fff;
    cursor:pointer;
    padding: 12px 24px;
    font-size: 20px;
}

.tm-btn2:hover {
    color: white;
    background-color: #63c2ca;
    border-color: #63c2ca;
}

.tm-text-small { font-size: 0.9em; }
.tm-text-center { text-align: center; }
.tm-text-right { text-align: right; }
.tm-text-primary { color: #00232d; }
.tm-text-secondary { color: #63c2ca; }
.tm-text-link { color: #999; }
.tm-text-link:hover { color: #63c2ca; }
.tm-relative { position: relative; }

.tm-hr {
    border:.25px solid #aaa;
    max-width: 324px;
	margin-top:-22px;
    width: 100%;    
}

.tm-mr {
    margin-right: 0;
    margin-left: auto;
}

.tm-ml {
    margin-left: 0;
    margin-right: auto;
}

.tm-my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.tm-mb-20 { margin-bottom: 20px; }
.tm-mb-50 { margin-bottom: 50px; }
.tm-mb-80 { margin-bottom: 80px; }
.tm-mb-130 { margin-bottom: 130px; }
.tm-mb-200 { margin-bottom: 200px; }

/* Layout */
.tm-section { display: flex; }

.tm-section-col {
    flex: 0 0 50%;
    width: 50%;
}

.tm-content {
    padding: 100px 60px 70px 100px;
    box-sizing: border-box;
}

.tm-content2 {
    padding: 180px 60px 70px 32px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.tm-content-small { padding: 190px 120px 70px; }
.tm-content-small-top { padding-top: 130px; }

.tm-row {
    display: flex;
    margin-left: -25px;
}

.tm-col {
    flex: 0 0 50%;
    width: 50%;
    padding: 25px;
    box-sizing: border-box;
}


#logo-svg {
    transition: fill 0.3s ease, stroke 0.3s ease;
    margin:0;
}

.tm-nav.scrolled #logo-svg {
    fill: black;
}

#spacer{
	width:100%;
	height:24px;
	display:flex;
}

/* Brand */
.tm-brand {
    position: fixed;
    bottom: 80px;
    right: 70px;
    width: 300px;
    height: 240px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #333;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tm-brand-icon { margin-bottom: 25px; }
.tm-brand-text { font-size: 32px; }

/* Nav */

/* Extra */

.navbar {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-family: sans-serif;
  padding: 10px 50px;
}

.push-left {
  margin-left: auto;
}


.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all .25s ease-in; 
  
  @media screen and (max-width: 768px) {
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    transform: translatey(-100%);
    text-align: center;
    
    .menu-active & {
      transform: translatey(0%);  
      opacity: 1;
    }
  }
  
  .menu-item a {
    display: block;
    line-height: 30px;
    margin: 0px 10px;
    text-decoration: none;
    text-transform: uppercase;
    }

    @media screen and (max-width: 768px) {
      font-size: 20px;
      margin: 8px;
    }
  }
  

.f-links {
  text-align: center;
  list-style:none;;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.f-links li {
  display: inline-block;
  margin: 0 10px;
}


footer{
    background-color: black;
    padding: 96px 96px;
    }

.subbut {
    margin-top: 32px;
    cursor: pointer;
    width: 256px;
    height: 42px;
    border-style: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 16px;
    background-color:black ;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.subbut:hover {
    background-color: #8ac169; 
    border-radius: 12px;
    color: white; }



/* Contact */
.tm-contact-form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.form-group { margin-bottom: 40px; }

.form-control {
    color: #999;
    font-size: 20px;
    font-family: "Nunito Sans", sans-serif;
    padding: 25px 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid #666;
    background: transparent;
}

.form-control:focus {
    color: #999;
    background: transparent;
}



.gmap-canvas { width: 340px; }

.tm-copyright {
    margin-left: -50px;
    margin-bottom: -50px;
}


.video-wrapper {
  width: 100vw;
  height: 100vh; /* or auto, depending on your design */
  position: relative;
  background:black;
  overflow: hidden;
}

.video-wrapper iframe {
 position: absolute;
  top: 50%;
  left: 50%;
  width: 2112px; /* Fixed width */
  height: 1188px; /* Fixed height */
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  border: none;
}




.content {
    position: absolute;
    margin-top:200px;
    top: 20%;
    left: 50%;
    height: 50vh;
    width:60%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 3;
}

.svg-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1; /* Ensures it sits above the content */
}

        
.contactbtn {
    border: 1px solid white;
    border-radius:0 0 0 16px;
}


.parent{
    display: inline-flex; 
    width: 100%;
} 

.child1{
    width:100%; 
    margin:5%; 
    padding-top:124px;
} 

.child2{
    width:524px;
    margin:5%; 
    padding-top:24px;
    padding-bottom:0px;
} 



.indexcard{
    text-align: left;
    height:475px;
    transform: scale(1) translateY(0); 
    transition: transform 0.3s;
    width:100%;
    background: white;
    padding:24px 156px 0 0;
    border-radius: 0 32px 0 0;
    cursor: pointer;
    align-content: flex-end;
    filter: grayscale(50%);
} 

 .indexcard:hover{
  transform: translateY(-5px);
  filter: grayscale(0%);
  box-shadow:0 5px 20px rgba(0,0,0,0.2);


  }

  .cardcontent{
   padding:16px;
   background:white; 
   color:black;  
   border-radius: 0 32px 0 0;
  }

.cardtitle{
    font-size:3rem;
    line-height: 1;
    margin-top: 12px;
    font-weight: 400;
}

.pill{
    background: #63c2ca;
    color:white;
    width:150px;
    text-align: center;
    border-radius: 0 4px 0 0;
}


@media (max-width: 768px) {
 

  .cardtitle{
    font-size:2rem;
    line-height: 1;
    margin-top: 12px;
  }
    .indexcard{
     height:475px;
     filter: grayscale(0%);
    }

}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Nav Links */
.nav-links {
    list-style-type: none;
    display: flex;
    gap:20px;
    cursor: pointer;
   
}

.nav-links li {
    display: inline;
    
}

.nav-links a {
     position: relative;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

   .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #63c2ca;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; /* Full underline on hover */
}



.nav-links a:hover {
    color: #63c2ca;
    
}


/* Sticky Navbar */
.navbar.sticky {
    background-color: white;
    color: black;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

#Rfidlogo {
   
    transition: fill 0.3s ease; 
    fill: #fff;
}

#Rfidlogo-cp {
   
    transition: fill 0.3s ease; 
    fill: #fff;
}

.navbar.sticky #Rfidlogo {
    fill: black; 
}

.navbar.sticky .nav-links a {
    color: black;
}

.navbar.sticky .nav-links a:hover {
    color: #63c2ca;
    
}


#awards{
    padding:8px;
    border-radius:16px;
    background: white;
    max-width: 400px;
    height:320px;
    align-content: center;
    text-align: center;
    margin-top: 64px;
}

.thread{
width:1000px; 
margin-bottom:64px;

}

#text1{
min-height:50px;
}

.aw{
    width:350px;
}


#Rfidlogo-mob{
   display:none;
}

.ann{
    text-align: center;
    font-size: 12px;
    margin-top: -64px;
}




/* Mobile Media Query */

@media (max-width: 1200px) {
    .tm-nav { width: 0; }
    .tm-nav ul {
        position: relative;
        left: 280px;
		margin-top:84px;
        flex-direction: column;
        padding-top: 16px;
        padding-bottom: 15px;        
        width: 280px;
        transition: all 0.5s ease;
		box-shadow:0 1px 1px rgba(0,0,0,.02), 0 2px 2px rgba(0,0,0,.02), 0 4px 4px rgba(0,0,0,.02);
		border-bottom-right-radius: 32px;
    }

    .tm-nav ul.show { left: 0; }

    .nav-link {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .navbar-toggler {
        display: block;
        width: 50px;
        height: 45px;
        font-size: 1.2rem;
        background-color: transparent;
        border: none;
        color: #999999;
        outline: none;
		box-shadow:0 1px 1px rgba(0,0,0,.02), 0 2px 2px rgba(0,0,0,.02), 0 4px 4px rgba(0,0,0,.02);
    }

    .navbar-toggler:hover { color: #63c2ca; }

    .tm-content {
        padding-left: 20px;
        padding-right: 20px;
        padding: 50px 20px;
    }

    .tm-copyright { margin-left: 15px; }
}

@media (max-width: 992px) {
    .tm-brand { 
        position: static;
        margin-left: auto;
        margin-right: 0;
    }

    .tm-gallery figure { width: 33.33%; }

    figcaption h2 { font-size: 1.4rem; }

    .tm-section { flex-direction: column-reverse; }

    .tm-section-col {
        flex: 0 0 100%;
        width: 100%;
    }

    .tm-parallax { min-height: 360px; }

    #contact .tm-parallax {
        margin-bottom: 425px;
    }
    
    .mapouter {
        top: 360px;
        width: 100%;
    }

    .gmap-canvas { width: 100%; }

    .tm-copyright {
        margin-bottom: 0;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .tm-row { flex-direction: column; }

    .tm-col {
        flex: 0 0 100%;
        width: 100%;
    }

    .tm-media img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 560px) {
    .tm-sm-mt-30 { margin-top: 30px; }
}

@media (max-width: 516px) {
    .tm-gallery { display: block; }

    .tm-gallery figure {
        float: left;
        width: 60%;
        margin: 2.5%;
        min-width: 1px;
    }

    figure h2 { font-size: 1rem; }
}

@media (max-width: 420px) {
    .tm-media img {
        width: 100px;
        height: 100px;
    }
}





@media (max-width: 768px) {
    .navbar {
        padding: 0px;
        margin-top:4px;
        padding-bottom:32px;  
    }
     
    .nav-links {
        display: none;
    }
    
    
    #Rfidlogo{
        display:none;
    }   

    #Rfidlogo-mob{
        display: block;
        width: 250px;
        margin:auto;
        margin-top:-82px;
    }


    .navbar.sticky #Rfidlogo {
        background-color: white;
    }
    
    .svg-container {display:none;}

    .content {
    position: absolute;
    margin-top:150px;
    width: 80%;
    color: white;
    text-align: center;
    z-index: 3;
    }


    #awards{
        margin: auto;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      z-index: 2; 
      max-width: 356px; 
      margin:auto; 
      scroll-margin-top: 200px; 
    }

    .box {
      flex: 1;
      min-width: 460px; /* triggers stacking on small screens */
      box-sizing: border-box;
    }
    
    .left {
    flex: 1; min-width: 356px; padding: 12px; box-sizing: border-box; margin-top:0px; z-index: 1;
    }

    .left2 {
    flex: 1; min-width: 356px; padding: 0px; margin-bottom: 32px; box-sizing: border-box;
    }

    .right {
    flex: 1; min-width: 356px; padding: 0px; margin-top:0px;  box-sizing: border-box;
    }


    .thread{
        width:500px;
        margin-top:-300px; 


    }

    #text1{
        min-height:250px;
    }

    .aw{
        width:280px;

    }


}


.frame-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}














