

:root {
  --link-underline-color: #ffffff; 
  --hero-zoom: 1.05; 
  --hero-width: 120%; 
  --hero-float-distance: 15px; 

  --btn-bg-primary: #2FC646; 
  --btn-bg-hover: #27a63d; 
  --btn-text: #ffffff; 
  --btn-radius: 6px; 
  --btn-padding: 12px 24px; 
}

.btn {
  display: inline-block;
  background-color: #2FC646;           
  color: #000;                          
  padding: 10px 20px;                   
  text-decoration: none;
  border-radius: 6px;                   
  margin-top: 20px;                     
  font-weight: 600;                     
  letter-spacing: 0.3px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background-color: #28b03e;           
  color: #fff;                          
  box-shadow: 0 0 12px rgba(47, 198, 70, 0.5); 
}

.btn-outline {
  display: inline-block;
  background-color: transparent;       
  color: #2FC646;                       
  border: 2px solid #2FC646;           
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #28b03e;           
  color: #fff;                          
  box-shadow: 0 0 12px rgba(47, 198, 70, 0.5); 
  text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: clip;
}   

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0f1a;   
  color: #E5E4E2;              
  margin: 0;
}

body p {
  font-size: 17.5px;           
  line-height: 1.6;            
  color: #E5E4E2;              
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #E5E4E2;
  line-height: 1.5;
}

.section-title,
h1.section-title,
h2.section-title,
h3.section-title,
h4.section-title,
h5.section-title,
h6.section-title,
strong.section-title {
  font-size: 2.4rem;         
  font-weight: 600;
  text-transform: uppercase;   
  text-align: center;
  color: #2FC646;              
  margin-bottom: 40px;
}

.ticks i {
    color: #2FC646; 
}

a {
    text-decoration: none;
    color: inherit; 
    text-decoration-color: currentColor; 
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: var(--link-underline-color, currentColor); 
}

a:active,
a:focus {
    text-decoration: none;
}

a.btn,
a.btn-primary,
a.btn-outline,
a.cta-btn,
a.btn:hover,
a.btn-primary:hover,
a.btn-outline:hover,
a.cta-btn:hover {
  text-decoration: none !important; 
}

#header {
    padding: 10px 0;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0;
    border-bottom: none;
    width: 100%;
    
}

#header .header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .logo {
    font-size: 26px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

#header .logo a {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    height: 80px;
    width: auto;
    max-width: none;
}

#header nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header nav ul {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#header nav ul li {
    margin-right: 15px;
}

#header nav ul li a {
  color: #E5E4E2;                          
  text-decoration: none;                
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;                     
  font-size: 17.5px;                      
  padding: 5px 10px;                    
  border-radius: 0;                     
  transition: none !important;          
}

#header nav ul li a:hover {
  background-color: #2FC646;                
  color: #000;                              
  border-radius: 6px 12px 6px 12px;         
  box-shadow: inset 0 0 4px rgba(47,198,70,0.25); 
  transform: translateZ(0);                 
}

#header .mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 20;
}

#header .mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #E5E4E2;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#header nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #131D47;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    z-index: 15;
}

#header nav.open ul {
    flex-direction: column;
    list-style: none;
}

#header nav.open ul li {
    margin-bottom: 20px;
}

#header nav.open ul li a {
    font-size: 1.5rem;
}

#header.nav-open .mobile-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#header.nav-open .mobile-menu span:nth-child(2) {
    opacity: 0;
}

#header.nav-open .mobile-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 992px) {
    body .mobile-nav-toggle {
        display: none !important;
    }
}

@media (max-width: 991px) {
    body .mobile-nav-toggle {
        display: block !important;
    }

    #header .mobile-menu {
        display: block;
    }

    #header nav ul {
        display: none;
        flex-direction: column;
        margin-top: 20px;
    }

#header .mobile-nav-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

}

.offcanvas {
  background-color: transparent !important; 
 background: linear-gradient(145deg, #050a21 0%, #07142f 70%, #0b1c3d 100%) !important;

}

.offcanvas .nav-link {
  color: #E5E4E2 !important;    
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;  
}

.offcanvas .nav-link:active {
  color: #2fc646 !important;    
}

.offcanvas .nav-link {
  display: inline-block !important;  
  width: auto !important;            
  padding: 0.25rem 0 !important;     
}

#mobile-nav-container .nav-particles {
  position: absolute;
  inset: 0;               
  z-index: 0;             
  pointer-events: none;   
  overflow: hidden;
  mix-blend-mode: screen; 
}

#hero {
    background-color: #0a0f1a;
    color: #E5E4E2;
    padding: 80px 0;
    margin: 0;
    border-top: none;
    overflow: hidden;
    position: relative;
}

#hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
}

#hero h1,
#hero h2 {
    color: #ffffff;
}

#hero p {
    color: #E5E4E2;
}

#hero .hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    margin-left: 20px; 
}

#hero .hero-img img {
    height: auto;
    width: 100%;                 
    max-height: 70vh;            
    object-fit: contain;         
    transform: scale(var(--hero-zoom));
    animation: floatUpDown 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    #hero {
        padding: 60px 0;
    }

    #hero .container {
        flex-direction: column;
        text-align: center;
    }

    #hero .hero-img {
        margin-top: 20px;
    }

    #hero .hero-img img {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 28px;
    }

    #hero h2 {
        font-size: 18px;
    }
}

#footer {
  background: linear-gradient(135deg, #0a0f1a 0%, #1b1f29 100%);
  color: #e0e0e0;                    
  padding: 60px 0 30px;
  font-family: 'Montserrat', sans-serif;  
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

#footer .footer-top .row {
  margin-bottom: 30px;               
}

#footer .footer-logo {
  max-width: 170px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px rgba(0,255,255,0.05)); 
}

#footer .footer-trust-badges {
  margin-top: 10px;                
}

#footer .footer-trust-badges .footer-badge {
  width: 140px;                    
  max-width: 100%;                 
  height: auto;                    
  display: block;
  margin-top: 10px;

  opacity: 0.9;                    
  filter: drop-shadow(0 0 4px rgba(0,255,128,0.08));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#footer .footer-trust-badges .footer-badge:hover {
  opacity: 1;
  transform: translateY(-2px);     
}

#footer .footer-contact p {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #ccc;                      
}
#footer .footer-contact strong {
  display: block;
  color: #2fc646;                   
  margin-top: 10px;
}

#footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #2fc646; 
  display: inline-block;
  padding-bottom: 6px;
}

#footer ul {
  list-style: none;
  padding: 0;
}
#footer ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}
#footer ul li a {
  color: #bbbbbb;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer ul li a:hover {
  color: #2fc646;                   
  padding-left: 4px;                
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: #e0e0e0;
  line-height: 1;
  padding: 8px 10px;
  margin-right: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: -16px;
}
#footer .social-links a:hover {
  background: #2fc646;
  color: #0a0f1a;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); 
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

#footer .footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-minimal-note {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 5px;
  font-style: italic;
}

.secure-inline-icon {
  display: inline-block;
  position: relative;
  margin-left: -10px;
}

.secure-inline-icon svg {
  width: 20px;                      
  height: 20px;
  margin-left: 0px;                 
  vertical-align: middle;          
  opacity: 0.85;                    
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: drop-shadow(0 0 1px #2fc646); 
}

.secure-inline-icon:hover svg {
  animation: glitch-flicker 0.6s linear 1;
  filter: drop-shadow(0 0 2px #2fc646);
  opacity: 1;
}

@keyframes glitch-flicker {
  0% { transform: translate(0, 0); opacity: 1; }
  15% { transform: translate(-1px, -1px); opacity: 0.9; }
  30% { transform: translate(1px, 1px); opacity: 1; }
  45% { transform: translate(-0.5px, 1px); opacity: 0.85; }
  60% { transform: translate(1px, -1px); opacity: 1; }
  75% { transform: translate(0, 0.5px); opacity: 0.9; }
  100% { transform: translate(0, 0); opacity: 1; }
}

@media (max-width: 768px) {
  #footer {
    text-align: center;               
  }
  #footer .footer-contact,
  #footer .footer-links {
    margin-bottom: 30px;
  }
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(145deg, #0e1421, #1a1f2d);
  color: #2FC646;
  padding: 14px;
  border-radius: 50%;
  border: 2px solid rgba(47, 198, 70, 0.4);
  box-shadow: 0 0 14px rgba(47, 198, 70, 0.4);
  backdrop-filter: blur(5px);
  display: none;
  z-index: 999;
  transition: all 0.3s ease;

  will-change: transform;
  transform: translateZ(0);
}

#backToTop svg {
  display: block;
  stroke: currentColor; 
}

#backToTop:hover {
  background: linear-gradient(145deg, #1a1f2d, #0e1421); 
  box-shadow: 0 0 18px rgba(47, 198, 70, 0.8); 
  transform: scale(1.15); 
  color: #ffffff; 
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0) scale(var(--hero-zoom));
    }
    50% {
        transform: translateY(calc(var(--hero-float-distance) * -1)) scale(var(--hero-zoom));
    }
    100% {
        transform: translateY(0) scale(var(--hero-zoom));
    }
}

@media (max-width: 768px) {

  html {
    font-size: 15px;
  }

  body p {
    font-size: 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container,
  .header-container {
    padding: 0 16px;         
    max-width: 100%;         
    box-sizing: border-box; 
  }

  img,
  video {
    max-width: 100%;
    height: auto;
  }

  body {
    margin: 0 auto;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  #footer .footer-trust-badges {
    display: flex;               
    justify-content: center;     
    align-items: center;         
    flex-wrap: wrap;             
    gap: 12px;                   
    margin-top: 15px;
  }

  #footer .footer-trust-badges .footer-badge {
    width: 120px;                
    height: auto;                
    display: block;
  }
}

@media (max-width: 517px) {

  #footer .footer-bottom p {
    white-space: normal !important;  
    display: block !important;       
    text-align: center;              
  }

}

@media (max-width: 991px) {
  
  #header .mobile-nav-toggle {
    font-size: 2.2rem;      
    padding: 0.6rem;        
    cursor: pointer;
    line-height: 1;
    margin-right: 0.25rem;  
    color: #E5E4E2;         
  }

  .offcanvas .btn-close {
    transform: scale(1.4);        
    opacity: 0.9;
    filter: invert(90%) sepia(5%) saturate(200%) hue-rotate(10deg) brightness(105%) !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .offcanvas .btn-close:hover {
    transform: scale(1.5);
    opacity: 1;
  }
}

