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

:root { font-family: "Inter", sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: "InterVariable", sans-serif; font-optical-sizing: auto; }
} 
@font-face {
    font-family: InterVariable;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("InterVariable.woff2") format("woff2");
  }

html {
    scroll-behavior: smooth;
}

body {
    font-family: InterVariable, Arial, sans-serif;
    line-height: 1.6;
    background-color: #0b050f;
    color: #ffffff;
}

/* Navigation Styles */
.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  a {
    color:white;
  }

  a.button{
    text-decoration: none;
  }

.logo a {
    height: 40px;
    width: auto;
}

.logo a div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.logo .logo-text{
    color:#fff;
font-size: 18px;
line-height: 130%;
}


.nav-links  {
    list-style: none;
    display: flex;
    gap: 4px;
    border-radius: 22px;
    justify-content: center;
    flex: 1;
    background: rgba(255, 255, 255, 0.30);
}

.nav-links li{
    display: inline;
    margin:0;
    padding:0;
    padding: 8px 24px;
    font-weight: 300;
}


/* Hamburger button (hidden by default) */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

/* Navigation menu (shown by default) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
}

#nav-mobile-cta{
  display: none;
}
nav a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.nav-links a.selected{
  color:white;
  font-weight: 500;
  
}

nav a:hover,
nav a:focus {
    color: #DCDCDC;
    outline: none;
}

.border-gradient {
    position: relative;
    z-index: 0;
  }
  
  .border-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; /* Border thickness */
    background: linear-gradient(
      to right, 
      rgba(255, 255, 255, 0.5) 0%, 
      rgba(255, 255, 255, 0.0) 70%, 
      rgba(255, 255, 255, 0.5) 100%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    border-radius: 22px;
  }
  

  button{
    cursor: pointer;;
  }
.cta-button {
    font-family: InterVariable, Arial, Helvetica, sans-serif;

    background-color: #ffffff;
    color: #000000;
    padding: 0.625rem 2rem;
    border: none;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 300;
    font-size:1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #ffffff;
    outline: none;
}

.cta-button.large{

  font-size: 1.5rem;
  font-weight: 200;
  transition: background-color 0.3s ease;
}

/* Main Content Styles */
nav,section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 2rem;

}

section {
    margin-bottom: 40px;
}

h1, h2 {
    color: #fff;
    margin-bottom: 10px;
}



h1{
    font-family: InterVariable, Arial, Helvetica, sans-serif;
    font-size:4rem;
    font-weight:300;
    line-height:110%;
}

h2{
    font-family: InterVariable, Arial, Helvetica, sans-serif;
    font-size:2.5rem;
    font-weight:300;
    line-height:110%;
    padding-bottom:1.5rem;
}

h3{
  font-family: InterVariable, Arial, Helvetica, sans-serif;
  font-size:2.5rem;
  font-weight:300;
  line-height:110%;

}

p, li {
    margin-bottom: 10px;
}

p{
    font-size:1.125rem;
    line-height:150%;
    font-weight:300;
}



/* Accessibility Enhancements */
a:focus {
    outline: 2px dashed #007BFF;
    outline-offset: 4px;
}

/* Header with background */
header {
padding:1rem 2rem;
}

/* Section of Main with the same background */
.background-section {
  background:
  linear-gradient(to bottom, rgba(225, 79, 79, 0) 70%, #0b050f 100%), /* Fadeout */
  url('images/hero-top.webp'); /* Your background image */

  background-size: 100% auto; /* ✅ Width 100%, height auto */
  background-position: top center; /* ✅ Stick to the top */
  background-repeat: no-repeat;
  background-attachment: scroll; /* ✅ Prevents fixed background on mobile */
  color: #fff;
  position: relative;
}


/* Section of Main with the same background */
.bottom-background-section {
  background:
  linear-gradient(to top, rgba(225, 79, 79, 0) 40%, #0b050f 100%), /* Fadeout */
  url('images/bottom-image.webp'); /* Your background image */

  background-size: 100% auto; /* ✅ Width 100%, height auto */
  background-position: bottom center; /* ✅ Stick to the top */
  background-repeat: no-repeat;
  background-attachment: scroll; /* ✅ Prevents fixed background on mobile */
  color: #fff;
  position: relative;
}

.hero-section{
  margin-top:8rem;
  margin-bottom:14rem;
  position:relative;
}




.title-section{
  margin-top:6rem;
  margin-bottom:6rem;
  position:relative;
}

.title-section h1{
  max-width: 30ch;
  text-wrap: balance;
  }
  

.title-section p{
max-width: 70ch;
text-wrap: balance;
}

.article-section{
  display:flex;
  flex-direction: row;
  align-items: center;
  gap:2.5rem;
  
  margin-top:2rem;
  margin-bottom:2rem;
  position:relative;
  }

  .article-section .button-arrow{
    margin-bottom:2rem;
    font-size: 1.125rem;;
  }
  
  .article-section img{
    width: 100%;
    max-width: 400px;;
  }

.hero-section h1{
  max-width:1040px;
}

.hero-section p{
  margin-top:1rem;
  max-width:680px;
}

.hero-section button{
  margin-top:1.5rem;
}

#hero-image-circle-big{
  position: absolute;
  right:24%;
  bottom:0%;
}
#hero-image-circle-medium{
  position: absolute;
  right:4%;
  bottom:-30%;
}
#hero-image-circle-small{
  position: absolute;
  right:0%;
  bottom:32%;
}



#services-heading{
  max-width:640px;
}


#about-us-section{
  padding-top:8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width:52rem;
}

#about-us-section img{
  width:14rem;
  padding-bottom:2rem;
}

#about-us-section h2{
  padding: bottom 0.75rem;
}

#about-us-section p{
  text-align: center;
}

#cta-section{
  padding-top:5rem;
}

.cta-box{
border-radius: 1rem;;
padding:2.2rem;

display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.cta-box div{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width:100%;
  max-width: 37rem;;
  }

  .cta-box h2{
  padding-bottom: 1rem;
  }
  
  .cta-box p{
   font-size: 1.25rem;
  }

.cta-box.transparent{
  border-radius: 1rem;;
  padding:2.2rem;
  background-color: rgba(255 255 255 / 0.1);
  border: rgba(255, 255, 255, 0.10) solid 1px;
  }

  
  #footer-section{
    padding-bottom:2rem;
    margin-bottom:0;
  }

.footer-box{

  border-radius: 1rem;;
  padding: 1rem 1.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width:100%;

  gap:0.75rem;

}

.footer-box.transparent{
  background-color: rgba(0, 0, 0, 0.40);
  border: rgba(255, 255, 255, 0.10) solid 1px;
}

.footer-top{
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 8px;
  grid-row-gap: 0px;

  align-items: center;
width: 100%;
}

.footer-top a{

    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.footer-top .email{
  text-align: right;
}

.footer-top .logo a div{
  justify-content: start;
}

.footer-top nav ul{
  color:white;
  display: flex;
  flex-direction: row;
  list-style: none;
  gap:1rem;
}

.footer-top nav ul li, .footer-top nav ul li a {
  color: white;
}

.footer-bottom{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.separator{
  height:1px;
  background-color: white;
  width:100%;
}

.service-list {
  display: grid;
  gap: 1.5rem;
  align-items: start; /* equivalent to flex-start */
  
  /* 1 column on small screens, 2 columns on larger screens */
  grid-template-columns: 1fr;


  margin: 0 auto;
  padding-bottom:6rem;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: start;
}


.blog-item{
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
  gap:1.5rem;
  align-items: center;
  border-radius: 1rem;

}

.blog-item a{
  text-decoration: none;         /* Remove underline */
  color: inherit;                /* Inherit text color from parent */
  display: flex;                /* Make the link wrap block elements (optional) */
  flex-direction: column;
  gap: 1.5rem;
  padding:2rem;
  width: 100%;
}

.blog-item h3{
  font-size: 1.75rem;

}
.blog-item .cta{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
}


.content-center{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;  
}


.contact-section p+p{
padding-top:2rem;
}


#result{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:4rem;
  background-color: rgba(255,255, 255, .7);
  border-radius: 2rem;
  text-align: center;
  color:#000000;

}
.result-shown{
  display: flex !important;
}

.result-error{
  display: flex !important;
  background-color: rgba(236 150 150 / 0.7) !important;
}

.animate-rotate {
  display: inline-block; /* ✅ Allows transform to work correctly */
  animation: slowRotate 30s linear infinite; /* ✅ 30s for slow rotation */
  transform-origin: center center; /* ✅ Rotate around its center */
}

@keyframes slowRotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}


.accordion {
    background-color: #2d2d2d;
    color: #fff;
    border-radius: 12px;

    padding: 2rem;
    transition: box-shadow 1s ease;
  }

  .accordion-header {
    display: flex;
    flex-direction: column;
    gap:1rem;
    align-items:flex-start;
    
    cursor: pointer;
  }

  .accordion-header-bottom{
    display: flex;
    flex-direction: row;

    width: 100%;

    justify-content: space-between;
  
    align-items: center;
    cursor: pointer;
  }



  .accordion-title {
    font-size: 2.5rem;
    font-weight: 300;
  }

  .transparent{
    background-color: rgba(255, 255, 255, 0.05);
    border: rgba(255, 255, 255, 0.10) solid 1px;
  }
 
  


  .service-symbols{
    height: 4.4375rem;
  }


  .button-arrow {
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 200;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    border: none;
    background: none;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    margin-top: 12px;
  }

  .accordion-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.5s ease;
    padding-left: 24px;
  }

  .accordion-content.open {
    opacity: 1;
    max-height: 1000px;
  }

  .accordion-content ul {
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
  }

  .accordion-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .accordion-content li::before {
    content: "◉";
    position: absolute;
    left: 0;
    color: white;
    font-size: 10px;
  }


  .bold {
    font-weight: bold;
}


.blog-article{
  background: black;
  padding:2rem 3rem;
  margin: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 1rem;;
}
.blog-article h1, .blog-article h2, .blog-article h3, .blog-article h4, .blog-article p,  .blog-article ul, .blog-article li{
  width:100%;
 max-width: 1040px;; 
}
.blog-article h2{
  padding-bottom:0.5rem;
  padding-top:3rem;
}

.blog-article ul{
  margin-left:2.5rem;
}

.blog-article li{
  font-size: 1.125rem;;
  line-height: 150%;

}

.blog-article  .cta-box h2{
  padding-top:inherit;
}

.blog-article p + p{
  padding-top:1.25rem;
}




form{
  display: flex;
  flex-direction: column;
  width:100%;
  max-width: 30rem;
  gap:2rem;

  background:rgba(0, 0, 0, 0.60);
  border-radius: 2rem;
  padding:2.5rem;
}

form div{
  display: flex;
  flex-direction: column;
}
.glass-input{
  background: rgba(0, 0, 0, 0.3); /* semi-transparent dark bg */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.glass-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
}



.glass-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #ffffff;

  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;

  appearance: none; /* Removes native styling in most browsers */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'8'%20viewBox%3D'0%200%2012%208'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201L6%206L11%201'%20stroke%3D'%23ffffff'%20stroke-width%3D'1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;

  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.glass-select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
}


textarea{
  font-family: InterVariable, Arial, sans-serif;
  line-height: 1.6;
  background-color: #0b050f;
  color: #ffffff;
  height:280px;
}

form h2{
  font-size: 2rem;
  padding:0;
  margin: 0;
}


@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}



/* Small devices (landscape phones, <576px) */
@media (max-width: 36rem) {
  /* styles here */
  h1{
    font-size: 2.5rem;
  }

  h2{
    font-size: 2rem;
  }

  .hamburger {
    display: block;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 8px;


    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.4s ease, transform 0.4s ease;
}




.nav-menu.active {

    opacity: 1;
    transform: translateY(0);
}

.nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
}
.nav-links{
  flex-direction: column;
}


.nav-links a{
color:#858585;
}

#nav-desktop-cta{
  display: none;
}

#nav-mobile-cta{
  display: flex;
}

.border-gradient, .nav-links{
  width: 100%;
  background:none;
  border:none;
}
.border-gradient::before{
  background:none;
  border:none;
}

  .accordion-title{
    font-size: 1.75rem;
  }


  .hero-section{
    margin-top:4rem;
    margin-bottom:24rem;
    position:relative;
  }


  .title-section{
    margin-top:8rem;
    margin-bottom:8rem;
    position:relative;
  }

#hero-image-circle-big{
  right: 8%;
  bottom: -65%;
}

  #hero-image-circle-medium{
    right: 35%;
    bottom: -60%;
  }

  #hero-image-circle-small{
    right: 4%;
    bottom: -25%;
  }

  .cta-box{
    flex-direction: column;
    gap:1rem;
  }

  .cta-box p{
    font-size: 1rem;
   }


   .footer-box{
    padding:0.75rem;
   }

  .footer-top{
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-bottom{
    flex-direction: column;
    gap:0.75rem;
    text-align: center;
  }

  .footer-top .email{
 text-align: center;
  }

  

  .cta-button.large{
    font-size: 1.25rem;;
  }


  .article-section{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:2.5rem;
    
    margin-top:2rem;
    margin-bottom:2rem;
    position:relative;
    }
    

    .contact-section{
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap:2rem;
    }

    .accordion-toggle{
      font-size: 1.25rem;;
      
    }

    .accordion{
      padding:1.5rem;
    }

    .accordion-header-bottom img{
      max-width: 8rem;
    }

    .accordion-content{
      padding-left: 0;
    }

    nav, section{
      padding: 0rem 1rem;
    }

    form{
      padding: 1rem;
    }
}


/* Small devices (landscape phones, ≥576px) */
@media (min-width: 36rem) {
  h1{
    font-size: 3rem;
  }

  h2{
    font-size: 2.25rem;
  }

  .accordion-title{
    font-size: 1.75rem;
  }


  .hero-section{
    margin-top:4rem;
    margin-bottom:20rem;
    position:relative;
  }

  #hero-image-circle-big{
    right: 8%;
    bottom: -65%;
  }
  
    #hero-image-circle-medium{
      right: 35%;
      bottom: -60%;
    }
  
    #hero-image-circle-small{
      right: 4%;
      bottom: -25%;
    }

    .cta-box{
      flex-direction: column;
    }

    .cta-box p{
      font-size: 1rem;
     }


   .footer-box{
    padding:0.75rem;
   }

  .footer-top{
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-bottom{
    flex-direction: column;
    gap:0.75rem;
    text-align: center;
  }

  .footer-top .email{
 text-align: center;
  }

  .article-section{
    display:flex;
    flex-direction: column;
  }

  .contact-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2rem;
  }

}

/* Medium devices (tablets, ≥768px) */
@media (min-width: 48rem) {
  /* styles here */
  h1{
    font-size: 3.5rem;
  }

  h2{
    font-size: 2.5rem;
  }

  .accordion-title{
    font-size: 2rem;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium+ */
  }


  #hero-image-circle-big{
    right: 12%;
    bottom: -65%;
  }
  
    #hero-image-circle-medium{
      right: 35%;
      bottom: -60%;
    }
  
    #hero-image-circle-small{
      right: 4%;
      bottom: -25%;
    }

    .cta-box{
      flex-direction: row;
    }


    .footer-box{
      padding: 1rem 1.5rem;
     }
  
    .footer-top{
      grid-template-columns: 1fr 2fr 1fr;
      justify-items: inherit;
    }
  
    .footer-bottom{
      flex-direction: row;
      gap:0.75rem;
      text-align: left;
    }
  
    .footer-top .email{
   text-align: right;
    }

    .article-section{
      display:flex;
      flex-direction: row;
    }

    .contact-section{
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
      gap:2rem;
    }
}

/* Large devices (desktops, ≥992px) */
@media (min-width: 62rem) {
  /* styles here */


  .hero-section{
    margin-top:8rem;
    margin-bottom:14rem;
    position:relative;
  }

  #hero-image-circle-big{
    right: 20%;
    bottom: -55%;
  }
  
    #hero-image-circle-medium{
      right: 35%;
      bottom: -50%;
    }
  
    #hero-image-circle-small{
      right: 8%;
      bottom: -15%;
    }


}

/* Extra large devices (large desktops, ≥1200px) */
@media (min-width: 75rem) {
  #hero-image-circle-big{
    position: absolute;
    right:24%;
    bottom:0%;
  }
  #hero-image-circle-medium{
    position: absolute;
    right:4%;
    bottom:-30%;
  }
  #hero-image-circle-small{
    position: absolute;
    right:0%;
    bottom:32%;
  }
}

/* XXL devices (very large desktops, ≥1400px) */
@media (min-width: 87.5rem) {
  /* styles here */
}



/* Rotating 'N' Symbol Styles */
.symbol-container, .symbol-container-2 {
    position: relative;
    width: 50px;
    height: 80px;

}

.symbol-letter, .symbol-letter-2 {
    position: absolute;
    font-size: 8px;
    font-weight: 200;
    transform-origin: center top;
    color: #ffffff;
}
