
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    height:auto;
    width: 100%;
    overflow-x: hidden; /* prevent horizontal overflow */
  background: rgba(0, 0, 0, 0.63);

}
html{
    scroll-behavior: smooth;
}

.menu-toggle {
  display: none;
}
.text-box i{
  margin-right:0.5rem;
}

.nowrap{
  white-space:nowrap;

}
.hero {
  position: relative;
  height: 100vh; 
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.63); /* dark shade */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 100; /* below menu (200) but above page */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black; 
    display: flex;
    justify-content: center;
    align-items: center; 
    z-index: -1;
}

.background-video-container video {
    width: auto;     
    width:70%;       
    filter:brightness(60%);
    object-fit: contain; 
}
.navbar {
    position: fixed;
    top: 1%;
    left: 0;
    border-radius:2rem;
     transform: translateX(22%); 
    width: 70%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    backdrop-filter: blur(20px);
    background: radial-gradient(circle, rgba(34, 33, 33, 0.884) 0%, rgba(0, 0, 0, 0.863)100%);
      transition: top 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 100;
}


.navbar-logo img {
    height: 2rem;
}
.navbar-logo:hover{
    opacity: 40%;
    transition: 0.3s ease-in-out;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex:1;
    list-style: none;
    margin-right:10%;
    padding: 0;
    font-family: 'Roboto', sans-serif; 
    font-weight: 600;
    font-size: 1.4rem;
}

.navbar-menu li {
    position: relative;
    margin-left: 3em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-menu li a {
    text-decoration: none;
    color: white;
    padding: 1rem 1rem;
    transition: 0.2s ease-in-out;
    display: block;
}

.dropdown-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-radius:24px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 25, 25, 0.904);
    list-style: none;
    padding: 1rem 2rem;
    margin: 0;
    min-width: 10%;   
    z-index: 99;
    font-family: sans-serif;
    font-weight: 300;
    transition: all 0.6s ease;
    display: block;     
    text-align: left;  
} 
.dropdown:hover .dropdown-menu {
  max-height:60em;
    opacity: 1;
    display: block;   
}


.navbar-menu li {
    position: relative;
    margin-left: 6em;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.dropdown-menu li {
    text-align: left;
}

.navbar-menu li:hover > a {
    transform: scale(1.04); 
    color: rgb(115,246,211); 
}


.dropdown-menu li a {
    text-decoration: none;
    color: rgb(172, 170, 170);
    padding: 0.6em;
    display: flex;       
    align-items: center;    
    gap: 0.5em;            
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-menu li a:hover {
    transform: scale(1.05);
    color: rgb(255, 255, 255);
}
.flags img {
    width: 1.4em;
    cursor: pointer;      
    transition: 0.2s ease-in-out;
}
.dropdown-menu li,
.dropdown-menu-three-columns li {
    margin: 0;
    padding: 0;
    text-align: left;
}
.enflag:hover,
.hrflag:hover {
    opacity: 40%;
}
.navbar-menu > li {
    position: relative;
    margin-left: 1em; 
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.homepage{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}
.dropdown-menu-three-columns {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0; 
    background-color: rgba(26, 25, 25, 0.904);
    border-radius:24px;
    list-style: none;
    padding: 0.5em;
    margin: 0;
    min-width: 12rem;
    z-index: 99;
    font-family: sans-serif;
    font-weight: 300;
    transition: all 0.6s ease;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 0.5em;
    justify-content: start;
}


.dropdown:hover .dropdown-menu-three-columns {
    max-height: 50em;
    opacity: 1;
}

.dropdown-menu-three-columns li {
    width: 100%;      
    margin: 0;        
    min-width: auto;   
    text-align: left;
}


.dropdown-menu-three-columns li a:hover {
    transform: scale(1.05);
    color: rgb(255, 255, 255); 
}
.dropdown-menu-three-columns li a {
    text-decoration: none;
    color: rgb(194, 194, 194);
    padding: 0.3em 1em;
    display: flex;       
    font-size:1rem; 
    align-items: center;   
    gap: 0.5em;             
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-text{
    display:flex;
    justify-content: center;
    margin-top:20%;
    margin-left:5em;
    text-align: left;
    position:fixed;
    top:0;
    left:0;
    z-index: 0;
    max-width:90vw;

}
.main-text a{
        font-family:Montserrat;
    color:white;
    font-size:4em;
    font-weight:900;
}
.main-text p{
    font-family:Roboto;
    color:white;
    font-size:1.8em;
    font-weight:300;
    

}




.down{
    display:flex;
    width:100%;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:95vh;
    left:0;
    color:white;
    font-size:1.3em;
    font-family:Roboto;
     transition: color 1s ease-in-out;
}

.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.title-help a{
    color:white;
    max-width: 60%;
    font-size:4rem;
    font-family:Montserrat;
    font-weight:900;


}

.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}
.aaa a{
    font-size:4rem;
    font-weight:900;
        font-family:Montserrat;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(15rem, 1fr)); /* each column flexible */
    justify-content: center; /* centers the entire grid in parent */
    gap: 1rem;               /* spacing between boxes */
    width: 100%;             /* optional, ensures it fills parent */
}

.grid-help-box {
    position: relative;       /* needed for absolute overlay positioning */
    display: inline-block;    /* shrink-wrap box content */
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 30vw;              /* responsive width */
    max-width: 80%;           /* never exceed 90% of screen */
    transition: transform 0.4s ease-in-out;
}

.grid-help-box:hover img{
    transform: scale(1.05); 
    border-radius:12px;
}


.grid-help-box .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 80%;
    max-width: 25vw;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    line-height:2rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.grid-help-box:hover .overlay-text {
    opacity: 1;
}

.grid-help-box-a {
    display: block;
    margin-top: 1rem;
    color: white;
    font-size: 2.2rem;
    text-align: center;
    font-family: Montserrat;
    font-weight: 600;
}


.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items in a row */
  gap: 1rem;
  margin-top:25%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(17, 17, 17);
  border-radius: 24px;
  padding:1rem;
  text-align: center;
  transition: 0.4s ease-in-out;
  cursor:pointer;
}
.mini-item:hover{
  scale:calc(1.05);
}
.mini-grid > *:nth-child(3) {
    background: none;
    align-self:center;
}
.mini-grid > *:nth-child(4) {
    background: none;
    grid-column: 1 / 3; 
    justify-self: center; 
}
.mini-grid i {
  font-size: 5rem;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 70%, rgb(115,246,211) 100%);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent;
}

.mini-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(163, 163, 163); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 100%);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.05);
}



.highlight {
    color: rgb(115,246,211);
}
.dmm{
    position:absolute;
    top:100vh;
    left:0;
}


.features {
  width: 100%;

  position:relative;
  top:auto;
  left:auto;
  z-index: 79;
  padding: 5rem 2rem;
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
  color: white;
  font-family: Montserrat, sans-serif;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem; 
  justify-items: center; 
  text-align: center;
}

.feature-box img {
  width: 50%;
  height:auto;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.feature-box:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255);
}

.feature-box p {
  max-width: 20rem;      /* optional, still centers */
  text-align: center;
  margin: 0 auto;
  color:#9c9c9c;
}

.aaa {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-align: center;
   margin: 0 0 3rem 0;
    font-family: Montserrat;
}

.highlight {
    color: rgb(115,246,211);
}



.text-features {
    width: 100%;
    min-height: 100vh; 
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
    display: flex;
    flex-direction: column;
    position:relative;
    z-index:78;
    align-items: center;
    justify-content: flex-start;
    padding: 0rem, 2rem;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem; 

    width:100%;
}

.section-title h2 {
  margin-top:4rem;
    font-size: 4rem;
    font-family: Montserrat;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.8rem;
    font-family: Roboto;
    font-weight: 300;
}

.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 60%;
}

.text-box {
  background: radial-gradient(circle, rgb(98, 153, 219) 0%,rgb(98, 153, 219) 30%, rgb(115,246,211) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    
    text-align: left; 
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.text-box:hover {
    transform: translateY(-5%);
        cursor:pointer;
}

.text-box h3 {
    font-size: 2rem;
  font-family: Montserrat, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(255, 255, 255);
}

.text-box p {
    font-size: 1.2rem;
    font-family: Roboto;
    font-weight: 300;
    line-height: 4em;
    text-align: left; 
}



body > * {
  flex-shrink: 0; 
}

.text-features {
  flex: 1; 
  min-height: 100vh; 
  display: flex;
  padding-bottom: 7vh;
  flex-direction: column;
  justify-content: center;
}

#contact-form-section {
    position: relative;
    width: 100%;
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
    display: flex;
    justify-content: center;  
    padding: 4rem 1rem 4rem 1rem; 
    box-sizing: border-box;
    z-index: 5;

}


#contact-form {
    width: 100%;

    max-width: 30%;
  background-color: rgb(17, 17, 17);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
color: rgb(255, 255, 255);
    flex-direction: column;
    gap: 1rem;
        font-family: Montserrat, sans-serif;
    z-index: 10;            
}
#contact-form input,
#contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgb(138, 138, 138);
    font-size: 0.9rem;
    background-color: rgb(2, 1, 7);
    color: white;
    resize: none;
    transition: border 0.3s ease, transform 0.2s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    transform: scale(1.02);
}


#contact-form button {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: none;
  background: radial-gradient(circle, rgb(98, 153, 219)0%, rgba(115, 246, 211, 0.76) 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

#contact-form button:hover {
    background-color: rgb(180, 130, 90);
    transform: scale(1.05);
    cursor:pointer;
}


#form-status {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}







#main-footer {
    background-color: rgb(15, 15, 15);
    color: #fff;
    z-index:10;
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
  border-top: 1px solid rgb(115,246,211);
    position: relative;
}


.footer-center img {
    width: 8%;
    height: auto;
    margin-bottom: 1.5rem;
}


.footer-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-services a {
    color: #ffffff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    font-family:Roboto;
    transition: color 0.2s;
    transition: 0.3s ease-in-out;
}

.footer-services a:hover {
    scale:calc(1.05);
}


.footer-socials {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;

}

.footer-socials a {
    color:rgb(114, 114, 114);
    margin: 0 0.8rem;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #ffffff;
}





.faq-section {
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
  color: #fff;
  position: relative;
  z-index: 78;
  padding: 4rem 2rem;

  font-family: Montserrat, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 25%);
  gap: 1.5rem;
  align-items: start; 
  justify-content: center;


}


.faq-item {
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle, rgb(98, 153, 219)0%, rgba(115, 246, 211, 0.76) 100%);
  border-radius: 24px;
  overflow: visible; 
  transition: 0.4s ease-in-out;
}


.faq-question {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  padding: 1rem 1.1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 12px;
  transition: 0.4s ease-in-out;
}


.faq-item:hover {
  color: rgb(255, 255, 255);
  scale:calc(1.05);
}


.faq-question .chev {
  font-size: 1.1rem;
  transform-origin: center;
  transition: transform 0.28s ease;
  opacity: 0.9;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(.2,.8,.2,1);
  padding: 0 1rem; 
}


.faq-answer-inner {
  padding: 0.75rem 0 1rem 0;
}

.faq-item.active .faq-question .chev {
  transform: rotate(180deg);
}





.showme-container {
  position: fixed;
  bottom: 5%;        
  left: 50%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
}
.showme-btn {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: white;
  background: radial-gradient(circle, rgb(98, 153, 219)0%, rgb(115,246,211) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.6s ease-in-out;
}

/* Bubble animation */
.bubble {
  animation: bubble 2s infinite ease-in-out;
}

.showme-btn:hover{
  filter:brightness(80%);

}
@keyframes bubble {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}



.burger {
    display: none;
    cursor: pointer;
    z-index: 200;
    font-size: 2rem;
    color: white;
}






#digital_marketing {
  scroll-margin-top: 5vh;
}
#digitalni_marketing {
  scroll-margin-top: 10vh;
}

#homepage {
  scroll-margin-top: 7vh;
}

#intro {
  scroll-margin-top: 8vh;
}

#how_do_we_work {
  scroll-margin-top: 10vh;
}
#Kako_radimo {
  scroll-margin-top: 10vh;
}

#why_mts {
  scroll-margin-top: 1vh;
}
#zasto_mts {
  scroll-margin-top:2.5vh;
}

#frequently_asked_questions {
  scroll-margin-top: 20vh;
}
#pitanja {
  scroll-margin-top: 20vh;
}

#contact-form-section {
  scroll-margin-top: 8vh;
}

/* Footer anchor */
#Contact {
  scroll-margin-top: 8vh;
}












@media (max-width: 1600px) {
  .main-text {
    margin-left: 3%;
    font-size: 0.8rem;
    max-width: 90vw;
    word-wrap: break-word;
  }


.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.title-help a{
    color:white;
    max-width: 80%;
    font-size:4rem;
    font-family:Montserrat;
    font-weight:900;


}

.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}
.aaa a{
    font-size:4rem;
    font-weight:900;
        font-family:Montserrat;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(15rem, 1fr)); /* each column flexible */
    justify-content: center; /* centers the entire grid in parent */
    gap: 1rem;               /* spacing between boxes */
    width: 100%;             /* optional, ensures it fills parent */
}

.grid-help-box {
    position: relative;       /* needed for absolute overlay positioning */
    display: inline-block;    /* shrink-wrap box content */
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 30vw;              /* responsive width */
    max-width: 80%;           /* never exceed 90% of screen */
    transition: transform 0.4s ease-in-out;
}

.grid-help-box:hover img{
    transform: scale(1.05); 
    border-radius:12px;
}


.grid-help-box .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 67%;
    max-width: 45vw;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    line-height:1.6rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}



.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items in a row */
  gap: 1.5rem;
  margin-top:25%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(17, 17, 17);
  border-radius: 24px;
  width:100%;
  text-align: center;
  transition: 0.4s ease-in-out;
  cursor:pointer;
}
.mini-item:hover{
  scale:calc(1.05);
}
.mini-grid > *:nth-child(3) {
    background: none;
    align-self:center;
}
.mini-grid > *:nth-child(4) {
    background: none;
    grid-column: 1 / 3; 
    justify-self: center; 
}
.mini-grid i {
  font-size: 5rem;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 70%, rgb(115,246,211) 100%);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent;
}

.mini-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgb(163, 163, 163); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 100%);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.05);
}


.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 80%;
}



}




@media (max-width: 1370px) {
  .main-text {
    margin-left: 3%;
    font-size: 1em;
    max-width: 90vw;
    word-wrap: break-word;
  }
.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.title-help a{
    color:white;
    max-width: 70%;
    font-size:3rem;
    font-family:Montserrat;
    font-weight:900;


}

.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}
.aaa a{
    font-size:4rem;
    font-weight:900;
        font-family:Montserrat;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(15rem, 1fr)); /* each column flexible */
    justify-content: center; /* centers the entire grid in parent */
    gap: 1rem;               /* spacing between boxes */
    width: 100%;             /* optional, ensures it fills parent */
}

.grid-help-box {
    position: relative;       /* needed for absolute overlay positioning */
    display: inline-block;    /* shrink-wrap box content */
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 30vw;              /* responsive width */
    max-width: 80%;           /* never exceed 90% of screen */
    transition: transform 0.4s ease-in-out;
}

.grid-help-box:hover img{
    transform: scale(1.05); 
    border-radius:12px;
}


.grid-help-box .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 90%;
    max-width: 60vw;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    font-size: 0.8rem;
    line-height:1.6rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}



.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items in a row */
  gap: 1rem;
  margin-top:25%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(17, 17, 17);
  border-radius: 24px;
  width:100%;
  text-align: center;
  transition: 0.4s ease-in-out;
  cursor:pointer;
}
.mini-item:hover{
  scale:calc(1.05);
}
.mini-grid > *:nth-child(3) {
    background: none;
    align-self:center;
}
.mini-grid > *:nth-child(4) {
    background: none;
    grid-column: 1 / 3; 
    justify-self: center; 
}
.mini-grid i {
  font-size: 5rem;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 70%, rgb(115,246,211) 100%);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent;
}

.mini-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(163, 163, 163); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 100%);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.05);
}


.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 80%;
}


}





@media (max-width: 1050px){
.background-video-container video {
    width: auto;     
    width:100%;       
    filter:brightness(60%);
    object-fit: contain; 
}
html{
  overflow-x:hidden;
}

  .main-text {
    position: fixed;
    top: 20vh; 
    left:2em;
    text-align: left;
    z-index: 0;
  }
.text-box p {
    font-size: 1rem;
    font-family: Roboto;
    font-weight: 300;
    line-height: 4em;
    text-align: left; 
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start; 
}


.intro{
    position:relative;
    top:auto;
    left:auto;
    height:80vh;
    z-index:80;
    width:100%;
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.title-help a{
    color:white;
    max-width: 90%;
    font-size:3rem;
    font-family:Montserrat;
    font-weight:900;


}

.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}
.aaa a{
    font-size:4rem;
    font-weight:900;
        font-family:Montserrat;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(15rem, 1fr)); /* each column flexible */
    justify-content: center; /* centers the entire grid in parent */
    gap: 1rem;               /* spacing between boxes */
    width: 100%;             /* optional, ensures it fills parent */
}

.grid-help-box {
    position: relative;       /* needed for absolute overlay positioning */
    display: inline-block;    /* shrink-wrap box content */
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 50vw;              /* responsive width */
    max-width: 80%;           /* never exceed 90% of screen */
    transition: transform 0.4s ease-in-out;
}

.grid-help-box:hover img{
    transform: scale(1.05); 
    border-radius:12px;
}


.grid-help-box .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 100%;
    max-width: 60vw;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    font-size: 1.2rem;
    line-height:2rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


.features{
  height:30vh;}

  
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 20vw); /* 3 items in a row */
  gap: 1rem;
  width:100%;
  margin-top:75%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(17, 17, 17);
  border-radius: 24px;
  width:100%;
  text-align: center;
  transition: 0.4s ease-in-out;
  cursor:pointer;
}
.mini-item:hover{
  scale:calc(1.05);
}
.mini-grid > *:nth-child(3) {
    background: none;
    align-self:center;
}
.mini-grid > *:nth-child(4) {
    background: none;
    grid-column: 1 / 3; 
    justify-self: center; 
}
.mini-grid i {
  font-size: 5rem;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 70%, rgb(115,246,211) 100%);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent;
}

.mini-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(163, 163, 163); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 100%);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.05);
}
.section-title p{
  font-size:1.4rem;
}


#contact-form {
    width: 100%;

    max-width: 50%;
    background-color: rgb(15, 15, 15);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
color: rgb(255, 255, 255);
    flex-direction: column;
    gap: 1rem;
        font-family: Montserrat, sans-serif;
    z-index: 10;            
}
}










@media (max-width: 830px){

.background-video-container video {
    width: auto;     
    width:100%;       
    filter:brightness(60%);
    object-fit: contain; 
}

.feature-box p {
  max-width: 24vw;      /* optional, still centers */
  text-align: center;
  margin: 0 auto;
}

.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 100%;
}
.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; 
    width: 100%;
    max-width: 90%;
}
.text-box p {
    font-size: .9rem;
    font-family: Roboto;
    font-weight: 300;
    line-height: 4em;
    text-align: left; 
}

.footer-services a {
    color: #a8a8a8;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    line-height: 2em;
    font-family:Roboto;
    transition: color 0.2s;
}.intro{
    position:relative;
    top:auto;
    left:auto;
    height:80vh;
    z-index:80;
    width:100%;
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.title-help a{
    color:white;
    max-width: 70%;
    font-size:2rem;
    font-family:Montserrat;
    font-weight:900;


}


#contact-form {
    width: 100%;
    max-width: 70%;
    background-color: rgb(15, 15, 15);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
color: rgb(255, 255, 255);
    flex-direction: column;
    gap: 1rem;
        font-family: Montserrat, sans-serif;
    z-index: 10;            
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 1.5rem;
  align-items: start; 
  justify-content: center;


}
.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}
.aaa a{
    font-size:4rem;
    font-weight:900;
        font-family:Montserrat;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(15rem, 1fr)); /* each column flexible */
    justify-content: center; /* centers the entire grid in parent */
    gap: 1rem;               /* spacing between boxes */
    width: 100%;             /* optional, ensures it fills parent */
}

.grid-help-box {
    position: relative;       /* needed for absolute overlay positioning */
    display: inline-block;    /* shrink-wrap box content */
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 50vw;              /* responsive width */
    max-width: 80%;           /* never exceed 90% of screen */
    transition: transform 0.4s ease-in-out;
}

.grid-help-box:hover img{
    transform: scale(1.05); 
    border-radius:12px;
}


.grid-help-box .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 90%;
    max-width: 60vw;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    line-height:2rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


.features{
  height:30vh;}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 20vw); /* 3 items in a row */
  gap: 1rem;
  width:100%;
  margin-top:75%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(17, 17, 17);
  border-radius: 24px;
  width:100%;
  text-align: center;
  transition: 0.4s ease-in-out;
  cursor:pointer;
}
.mini-item:hover{
  scale:calc(1.05);
}
.mini-grid > *:nth-child(3) {
    background: none;
    align-self:center;
}
.mini-grid > *:nth-child(4) {
    background: none;
    grid-column: 1 / 3; 
    justify-self: center; 
}
.mini-grid i {
  font-size: 5rem;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 70%, rgb(115,246,211) 100%);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent;
}

.mini-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgb(163, 163, 163); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 100%);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.05);
}
.main-text{
  margin-top:30%;
  margin-left:2rem;
}
.main-text a{
        font-family:Montserrat;
    color:white;
    font-size:3em;
    font-weight:900;
}
.main-text p{
    font-family:Roboto;
    color:white;
    font-size:1.3em;
    font-weight:300;

}
html{
  overflow-x:hidden;
}
.showme-container {
  position: fixed;
  bottom: 5%;        
  left: 50%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
}
.showme-btn {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: white;
  background: radial-gradient(circle, rgb(98, 153, 219)0%, rgb(115,246,211) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.6s ease-in-out;
}
}







@media(max-width:780px){



.features {
  width: 100%;
  height:50vh;
  position:relative;
  top:auto;
  left:auto;
  z-index: 79;
  padding: 5rem 2rem;
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
  color: white;
  font-family: Montserrat, sans-serif;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem; 
  justify-items: center; 
  text-align: center;
}

.feature-box img {
  width: 40%;
  height:auto;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.feature-box:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255);
}

.feature-box p {
  max-width: 12rem;      /* optional, still centers */
  text-align: center;
  margin: 0 auto;
  font-size:.8rem;
  color:#9c9c9c;
}
.title-help{
  width:100%;
}
.title-help a{
  font-size:1.8rem;
}


.grid-help-box .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 90%;
    max-width: 60vw;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    font-size: 0.9rem;
    line-height:2rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

}





@media(max-width: 600px){


html,body{
  overflow-x:hidden;
  scroll-behavior: smooth;
}
  
.hero {
  position: relative;
  height: 100vh; 
  width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -1;
  overflow: hidden;
}


.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background-color: black; 
    display: flex !important;
    justify-content: center;
    align-items: center; 
    z-index: -1;
}

.background-video-container video {
    display:block !important; 
    width: auto;    
    height: 50%;     
        filter:brightness(60%);  
    object-fit: contain; 
}

.navbar-logo img {
    height: 3em;
}
.navbar-logo:hover{
    transition: 0.3s ease-in-out;
}
.homepage{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}

  
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; 
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-radius: 0;
    box-sizing: border-box;
    backdrop-filter: blur(20px);
    background: radial-gradient(circle, rgba(34, 33, 33, 0.884) 0%, rgba(0, 0, 0, 0.863)100%);
    z-index: 900;
    transform: none; 
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.63); /* dark shade */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 100; /* below menu (200) but above page */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right:0rem;
    background-color: rgba(255, 255, 255, 0);
    font-size: 1.5rem;
    margin-right:1em;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 38800;
  }
.dropdown-menu-three-columns li a{
    font-size:1em;
    margin-bottom:0.7em;
}
.navbar-menu {
  position: fixed;
  top: -159%;
  right: -100%; 
  height: 100vh;
  width: 70vw; 
  background: rgb(0, 0, 0);
  transition: right 0.3s ease-in-out;
  z-index: 290;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 1.5em;
  box-sizing: border-box; 
}

.navbar-menu.active {
  right: -15%;
}
  /* main items spacing */
.navbar-menu > li {
  margin: 0;
  width: 100%;
  background: transparent; 
}


.dropdown-menu,
.dropdown-menu-three-columns {
  position: static;
  max-height: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  font-size:1em;
  gap: 0.3rem;
  padding-left: 1.5rem; 
  background: transparent;
}

  .dropdown:hover .dropdown-menu,
  .dropdown:hover .dropdown-menu-three-columns {
    max-height: none;
    opacity: 1;
  }

  .dropdown > a::after {
    content: '';
  }
.navbar-menu .dropdown-menu li a {
  font-size: 1em; 
  font-weight: 500; 
  line-height: 1.5em;  
}



.dropdown-menu,
.dropdown-menu-three-columns {
  position: static;
  max-height: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  font-size:0.6em;
  gap: 0.3rem;
  padding-left: 1.5rem; 
  background: transparent;
}


  .dropdown:hover .dropdown-menu,
  .dropdown:hover .dropdown-menu-three-columns {
    max-height: none;
    opacity: 1;
  }


.dropdown-menu-three-columns li {
    width: 100%;      
    margin: 0;        
    min-width: auto;   
    text-align: left;
}


.dropdown-menu-three-columns li a:hover {
    transform: scale(1.05);
    color: rgb(255, 255, 255); 
}
.dropdown-menu-three-columns li a{
    font-size:1rem;
    margin-bottom:0.7em;
}

.main-text{
    display:flex;
    justify-content: center;
    margin-top:50%;
    width:80vw;
    margin-left:2em;
    text-align: left;
    position:fixed;
    top:0;
    left:0;
    z-index: 0;

}
.main-text a{
      font-family:Montserrat;
    color:white;
    font-size:2rem;
    font-weight:900;
}
.main-text p{
    font-family:Roboto;
    color:white;
    font-size:1rem;
    font-weight:300;

}




.down{
    display:flex;
    width:100%;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:95vh;
    left:0;
    color:white;
    font-size:1.3rem;
    font-family:Roboto;
     transition: color 1s ease-in-out;
}


.highlight {
    color: rgb(115,246,211);
}
.dmm{
    position:absolute;
    top:100vh;
    left:0;
}


.features {
  width: 100%;
  height:100vh;
  position:relative;
  top:auto;
  left:auto;
  z-index: 79;
  padding: 5rem 2rem;
  background-color: rgb(2, 1, 7);
  color: white;
  font-family: Montserrat, sans-serif;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.1rem; 
  justify-items: center; 
  text-align: center;
}

.feature-box img {
  width: 25%;
  height:auto;
  margin-bottom:0.5rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.feature-box:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255); 
}

.feature-box p {
  max-width: 20rem;      /* optional, still centers */
  text-align: center;
  margin-bottom:2em;
}

.aaa {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-align: center;
   margin: 0 0 3rem 0;
    font-family: Montserrat;
}

.highlight {
    color: rgb(115,246,211);
}











.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(19, 19, 19) 100%);
}
.title-help{
    display:flex;
    width:100%;
    padding-top:2em;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.title-help a{
    color:white;
    max-width: 90%;
    font-size:1rem;
    font-family:Montserrat;
    font-weight:900;


}

.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}
.aaa a{
    font-size:1rem;
    font-weight:900;
        font-family:Montserrat;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: 1fr; /* each column flexible */
    justify-content: center; /* centers the entire grid in parent */
    gap: 1rem;               /* spacing between boxes */
    width: 100%;             /* optional, ensures it fills parent */
}

.grid-help-box {
    position: relative;       /* needed for absolute overlay positioning */
    display: inline-block;    /* shrink-wrap box content */
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 30vw;              /* responsive width */
    max-width: 80%;           /* never exceed 90% of screen */
    transition: transform 0.4s ease-in-out;
}

.grid-help-box:hover img{
    transform: scale(1.05); 
    border-radius:12px;
}
.overlay-text{
  margin-left:1rem;
}

.grid-help-box .overlay-text {
    position: absolute;
    top: 0%;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 100%;
    max-width: 80%;
    color: rgb(141, 141, 141);
    text-align: left;
    padding: 1rem;
    z-index: 99999;
    font-size: 0.8rem;
    line-height:2rem;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


.grid-help-box-a {
    display: block;
    margin-top: 1rem;
    color: white;
    font-size: 2.2rem;
    text-align: center;
    font-family: Montserrat;
    font-weight: 600;
}


.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 items in a row */
  gap: 0.5rem;
  margin-top:55%;
  width:100%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(17, 17, 17);
  border-radius: 24px;
  padding:1.2rem;
  width:90%;
  text-align: center;
  transition: 0.4s ease-in-out;
  cursor:pointer;
}
.mini-item:hover{
  scale:calc(1.05);
}
.mini-grid > *:nth-child(3) {
    background: none;
    align-self:center;
}
.mini-grid > *:nth-child(4) {
    background: none;
    grid-column: 1 / -1; 
    justify-self: center; 
}
  .grid-help-layout > .grid-help-box:nth-child(1) {
    display: none;
  }

.mini-grid i {
  font-size: 5rem;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 70%, rgb(115,246,211) 100%);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent;
}

.mini-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgb(163, 163, 163); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background: radial-gradient(circle, rgb(98, 153, 219) 0%, rgb(115,246,211) 100%);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.05);
}









.text-features {
    width: 100%;
    min-height: 100vh; 
    background-color: rgb(2, 1, 7);
    display: flex;
    flex-direction: column;
    position:relative;
    z-index:78;
    align-items: center;
    justify-content: flex-start;
    padding: 0rem, 2rem;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem; 

    width:100%;
    width:90%;
    justify-content: center;
}

.section-title h2 {
  margin-top:4rem;
    font-size: 2.5rem;
    font-family: Montserrat;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1rem;
    font-family: Roboto;
    font-weight: 300;
}

.grid-text-features {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 90%;
}

.text-box {
    background-color: rgb(20, 18, 30); 
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: left; 
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.text-box:hover {
    transform: translateY(-5%);
    background-color: rgb(40, 35, 55); 
        cursor:pointer;
}

.text-box h3 {
    font-size: 1.8rem;
  font-family: Montserrat, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(255, 255, 255);
}

.text-box p {
    font-size: 0.96rem;
    font-family: Roboto;
    font-weight: 300;
    line-height: 4em;
    text-align: left; 
}

.text-box i{
  margin-right:0.5rem;
}


body > * {
  flex-shrink: 0; 
}

.text-features {
  flex: 1; 
  min-height: 100vh; 
  display: flex;
  padding-bottom: 7vh;
  flex-direction: column;
  justify-content: center;
}

#contact-form-section {
    position: relative;
    width: 100%;
    background-color: rgb(2, 1, 7);
    display: flex;
    justify-content: center;  
    padding: 4rem 1rem 4rem 1rem; 
    box-sizing: border-box;
    z-index: 5;

}


#contact-form {
    width: 100%;

    max-width: 100%;
    background-color: rgb(28, 26, 40);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
color: rgb(255, 255, 255);
    flex-direction: column;
    gap: 1rem;
        font-family: Montserrat, sans-serif;
    z-index: 10;            
}
#contact-form input,
#contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgb(138, 138, 138);
    font-size: 0.9rem;
    background-color: rgb(2, 1, 7);
    color: white;
    resize: none;
    transition: border 0.3s ease, transform 0.2s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: rgb(149, 110, 68);
    transform: scale(1.02);
}


#contact-form button {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: none;
    background-color: rgb(149, 110, 68);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact-form button:hover {
    background-color: rgb(180, 130, 90);
    transform: scale(1.05);
    cursor:pointer;
}


#form-status {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
    
}


#main-footer {
    background-color: rgb(20, 18, 30);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    border-top:1px solid  rgb(115,246,211);

    position: relative;
}


.footer-center img {
    width: 30%;
    height: auto;
    margin-bottom: 1.5rem;
}


.footer-services {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-services a {
    color: #a8a8a8;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    font-family:Roboto;
    transition: color 0.2s;
}

.footer-services a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-socials a {
    color: #9c9c9c;
    margin: 0 0.8rem;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #ffffff;
}

.faq-section {
  background: rgb(2,1,7);
  color: #fff;
  position: relative;
  z-index: 78;
  padding: 4rem 2rem;

  font-family: Montserrat, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  align-items: start; 
}


.faq-item {
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle, rgb(98, 153, 219)0%, rgba(115, 246, 211, 0.76) 100%);
  border-radius: 12px;
  overflow: visible; 
  transition:0.4s ease-in-out;

}

.faq-question {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  padding: 1rem 1.1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 12px;
  transition: color 0.18s ease, background 0.12s ease, transform 0.08s ease;
}

.faq-question:hover {
  scale:calc(1.05);
}

.faq-question .chev {
  font-size: 1.1rem;
  transform-origin: center;
  transition: transform 0.28s ease;
  opacity: 0.9;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(.2,.8,.2,1);
  padding: 0 1rem; 
}


.faq-answer-inner {
  padding: 0.75rem 0 1rem 0;
}

.faq-item.active .faq-question .chev {
  transform: rotate(180deg);
}


.showme-container {
  position: fixed;
  bottom: 5%;        
  left: 50%;
  z-index:0;
  transform: translateX(-50%);
  text-align: center;
}
.showme-btn {
  padding: .8rem 1.3rem;
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: white;
  background-color: rgb(149, 110, 68);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Bubble animation */
.bubble {
  animation: bubble 2s infinite ease-in-out;
}

.showme-btn:hover{
    color:rgb(149, 110, 68);
    background-color: white;
}
@keyframes bubble {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

#contact-form-section {
  scroll-margin-top: 82vh;
}

/* Footer anchor */
#Contact {
  scroll-margin-top: 82vh;
}
}
