
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    height:auto;
    width: 100%;
    overflow-x: hidden; /* prevent horizontal overflow */
  background: rgb(255, 255, 255);

}
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;
    display: flex;
    justify-content: center;
    align-items: center; 
    z-index: -1;
}

.background-video-container video {
    width: auto;     
    width:100%;       
    filter:brightness(50%);
    object-fit: contain; 
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
    background: rgba(0, 0, 0, 0);
      transition: top 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 1200;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 100%;
  height: 0.02rem; 
  background-color: white;


  transform: scaleX(0);
  transform-origin: left; 
  transition: transform 0.3s ease;
}

.navbar-menu a:hover::after {
  transform: scaleX(1);
}

.navbar.scrolled {
  background-color: rgba(45,50,60); 
  transition:0.6s ease-in-out;
}












.navbar-logo img {
    height: 3rem;
}
.navbar-logo:hover{
    opacity: 40%;
    transition: 0.3s ease-in-out;
}

.navbar-menu {
    display: flex;
    transform:translate(0%);
    align-items: center;
    justify-content: center;
    flex:1;
    list-style: none;
    padding: 0;
    font-family:michroma;
    font-weight: 300;
    font-size: .7rem;

}

.navbar-menu li {
    position: relative;
    margin-right: 3rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-menu li a {
    text-decoration: none;
    color: white;
    transition: 0.2s ease-in-out;
    display: block;
}
.navbar-menu a{
   display: inline-block;
}
.dropdown-menu {
    opacity: 0;
    overflow: hidden;
    border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    position: absolute;
    left: 0;
    top:140%;
    background-color: rgb(0, 0, 0);
    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: 0;
    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;
}



.dropdown-menu li a {
    text-decoration: none;
    color: rgb(172, 170, 170);
    padding: 0.6em;
    display: flex;       
    align-items: center;    
    gap: 0.5em;            
    line-height:1rem;
    font-size: .8rem;
    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%;
    text-align: center;
    position:absolute;
    top:0;
    left:0;
    z-index: 0;
    width:100%;

}
.main-text a{
    font-family:Michroma;
    color:white;
    font-size:3em;
    font-weight:900;
}
.main-text p{
    font-family:Michroma;
    color:white;
    font-size:1.2em;
    font-weight:100;
    

}




.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: rgb(255, 255, 255);
}
.title-help{
    display:flex;
    width:100%;
    padding-top:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title-help a{
    color:rgb(0, 0, 0);
    max-width: 70%;
    font-size:3em;
    font-family:Michroma;
    line-height:3rem;
    font-weight:300;


}

.grid-help {
    margin-top: 3rem;
    display: flex;
    width:100%;
    position:relative;
    top:0;
    left:0;
    justify-content: center; 
    align-items: center;
}

.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 .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 80%;
    max-width: 25vw;
    color: rgb(0, 0, 0);
    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: rgb(0, 0, 0);
    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(240, 239, 239);
  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(0, 0, 0) 0%, rgb(0, 0, 0) 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: rgb(0, 0, 0);
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 1rem;
  font-weight: 300;
  color: rgb(0, 0, 0); /* lighter gray for contrast */
  text-align: center;
  max-width: 100%;
}
.cta-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  justify-self: center;
  cursor: pointer;
  background-color: rgb(0, 0, 0); 
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.02);
}



.highlight {
    color: rgb(0, 0, 0);
}
.dmm{
    position:absolute;
    top:100vh;
    left:0;
}


.features {
  width: 100%;

  position:relative;
  top:auto;
  left:auto;
  z-index: 79;
  padding: 5rem 2rem;
  background: rgb(255, 255, 255);
  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-weight:900;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
}

.feature-box p {
  max-width: 20rem;      /* optional, still centers */
  text-align: center;
  margin: 0 auto;
  color:#000000;
}

.aaa {
    font-size: 3rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
   margin: 0 0 3rem 0;
    font-family:Michroma;
}

.highlight {
    color: rgb(0, 0, 0);
}



.text-features {
    width: 100%;
    min-height: 100vh; 
  background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    position:relative;
    z-index:78;
    align-items: center;
    justify-content: flex-start;
    padding: 0rem, 2rem;
    color: rgb(0, 0, 0);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem; 

    width:100%;
}

.section-title h2 {
  padding-top:4rem;
    font-size: 3rem;
    font-family:Michroma;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.6rem;
    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-color: rgb(232,234,238);
    padding: 3rem 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 3px 2px rgba(0, 0, 0, 0.171);
    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(0, 0, 0);
}

.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-color: rgb(108,110,119);
    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: rgba(155, 18, 18, 0);
    padding: 2rem;
    display: flex;
    color: rgb(255, 255, 255);
    border:none;
    flex-direction: column;
    font-size:2rem;
    gap: 1rem;
    font-family: Montserrat, sans-serif;
    z-index: 10;            
}
#contact-form input,
#contact-form textarea {
  border:none;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgb(167, 167, 167);
    font-size: 0.9rem;
    background-color: transparent;
    color: white;
    resize: none;
    transition: border 0.3s ease, transform 0.2s ease;
}
#contact-form input::placeholder,
#contact-form textarea::placeholder{
  color:rgb(167, 167, 167);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    color:white;
    border-bottom:1px solid white;
}
#contact-form input:focus::placeholder,
#contact-form textarea:focus::placeholder {
  color: white;        
  opacity: 1;          
  transition: color 0.3s ease; 
}

#contact-form button {
    padding: 0.8rem 1rem;
    border-radius: 24px;
    border: none;
  background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: .8rem;
    font-weight: 300;
    cursor: pointer;
    letter-spacing: .1rem;
    transition: 0.4s ease-in-out;
}

#contact-form button:hover {
    transform: scale(1.02);
    cursor:pointer;
}


#form-status {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}







#main-footer {
    background-color: rgb(255, 255, 255);
    color: #000000;
    z-index:10;
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    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: #000000;
    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;
    align-items: center;
    text-align: center;
    margin-top: 0.5rem;

}
.footer-socials i{
  font-size:2rem;
}

.footer-socials a {
    color:rgb(0, 0, 0);
    margin: 0 0.8rem;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #2e2e2e;
}





.faq-section {
  background: rgb(255, 255, 255);
  color: #000000;
  position: relative;
  z-index: 78;
  padding: 4rem 2rem;

}
.faq-section h2{
  font-family:michroma;
  
}

.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-color: rgb(240, 239, 239);
  border-radius: 24px;
  overflow: visible; 
  font-family:roboto;
  box-shadow: 0 4px 3px 2px rgba(0, 0, 0, 0.171);
  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: 600;
  font-family:roboto;
  color: #000000;
  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(0, 0, 0);
  scale:calc(1.02);
}


.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: absolute;
  top: 60%;        
  left: 50%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
    border-top:2px solid white;
    border-bottom:1px solid white;
      transition: 0.4s ease-in-out;
}
.showme-btn {
  padding: 1rem 5rem;
  font-size: .8rem;
  font-family: Michroma;
  font-weight: 300;
  background-color: rgba(45, 50, 60, 0); 
  border: none;
  cursor: pointer;
  color:white;

}

/* Bubble animation */
.bubble {
  animation: bubble 2s infinite ease-in-out;
}

.showme-container:hover{
  background-color:white;
  color:black;

}
.showme-btn:hover{
  color:black;
}
@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;
}

#homepage {
  scroll-margin-top: 7vh;
}

#intro {
  scroll-margin-top: 8vh;
}

#how_do_we_work {
  scroll-margin-top: 10vh;
}

#why_mts {
  scroll-margin-top: 1vh;
}


#frequently_asked_questions {
  scroll-margin-top: 20vh;
}


#contact-form-section {
  scroll-margin-top: 8vh;
}

/* Footer anchor */
#Contact {
  scroll-margin-top: 8vh;
}












@media (max-width: 1600px) {

.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; 
    z-index: -1;
}

.background-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%); 
    filter: brightness(50%);
}
  .main-text {
    margin-left: 3%;
    font-size: 0.8rem;
    max-width: 90vw;
    padding-top:15vh;
    word-wrap: break-word;
  }


.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
  background: rgb(255, 255, 255);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title-help a{
    color:rgb(0, 0, 0);
    max-width: 80%;
    font-size:3rem;
    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:Michroma;

}
.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 .overlay-text {
    position: absolute;
    top: 0;                /* start at bottom */
    left: 0%;
    opacity: 1;
    width: 67%;
    max-width: 45vw;
    color: rgb(0, 0, 0);
    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:30%;
  align-items: start;
  justify-items: center;  /* center items horizontally */
}

.mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(232,234,238);
  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:black;
  -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: rgb(0, 0, 0);
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgb(0, 0, 0); /* 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: rgb(0, 0, 0);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.02);
}


.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 80%;
}

.showme-container {
  position: absolute;
  top: 70%;        
  left: 50%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
    border-top:2px solid white;
    border-bottom:1px solid white;
      transition: 0.4s ease-in-out;
}
.showme-btn {
  padding: 1rem 5rem;
  font-size: .8rem;
  font-family: Michroma;
  font-weight: 300;
  background-color: rgba(45, 50, 60, 0); 
  border: none;
  cursor: pointer;
  color:white;

}


}




@media (max-width: 1370px) {
  .main-text a{
    font-size: 1.8rem;
    max-width: 100%;
    word-wrap: break-word;
  }
  .main-text{
    padding-top:10vh;
  }
.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
  background: rgb(255, 255, 255);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title-help a{
    color:rgb(0, 0, 0);
    max-width: 70%;
    font-size:2.5rem;
    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:Michroma;

}
.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: 70%;
    max-width: 50vw;
    color: rgb(2, 2, 2);
    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(232,234,238);
  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: black;
  -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: rgb(0, 0, 0);
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(0, 0, 0); /* 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: rgb(0, 0, 0);
  color: white;
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.02);
}


.grid-text-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem; 
    width: 100%;
    max-width: 80%;
}

#contact-form {
    width: 100%;
    max-width: 50%;
   background-color: rgba(155, 18, 18, 0);
    padding: 2rem;
    display: flex;
    color: rgb(255, 255, 255);
    border:none;
    flex-direction: column;
    font-size:1.5rem;
    gap: 1rem;
    font-family: Montserrat, sans-serif;
    z-index: 10;            
}



}





@media (max-width: 1050px){
.background-video-container video {
    width: auto;     
    height:100vh;       
    filter:brightness(60%);
    object-fit: contain; 
}
html{
  overflow-x:hidden;
}



.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 100%;
  height: 0.02rem; 
  background-color: rgba(255, 255, 255, 0);


  transform: scaleX(0);
  transform-origin: left; 
  transition: transform 0.3s ease;
}

.navbar-menu a:hover::after {
  transform: scaleX(1);
}


.navbar-logo img {
    height: 3em;
}
.navbar-logo:hover{
    transition: 0.3s ease-in-out;
    filter:brightness(100%);
}
.homepage{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}

  
.navbar {
    position: fixed;
    top: 0;
    font-weight:300;
    left: 0;
    width: 100vw; 
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0);
    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: 1.5rem;
    right:0rem;
    background-color: rgba(255, 255, 255, 0);
    font-size: 2rem;
    margin-right:1em;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 38800;
  }

.navbar-menu {
  margin:0;
  position: fixed;
  top: -20%;
  font-weight:300;
  color:white;
  right: -100%; 
  height: 100vh;
  width: 50vw; 
  background-color: rgba(45,50,60); 
  transition: right 0.3s ease-in-out;
  z-index: 290;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  box-sizing: border-box; 
}
.dropdown-menu>:nth-child(1){
  display:none;
}

.navbar-menu.active {
  right:-5%;
}
  /* main items spacing */
.navbar-menu > li {
  margin-bottom: 2rem;
  padding-left:2rem;
  width: 100%;
  background: transparent; 
}


.dropdown-menu li a{
  font-size:1.2rem;
  color:white;
  font-weight:300;
    line-height:1.5rem;
  padding-left:0;
}
.dropdown{
  color:white;
}

.dropdown-menu {
  margin-top:2rem;
  position: static;
  max-height: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  color:white;
  background: transparent;
}


  .dropdown:hover .dropdown-menu,
  .dropdown:hover .dropdown-menu-three-columns {
    max-height: none;
    opacity: 1;
  }










  .main-text  {
    display:flex;
    justify-content: center;
    margin-top:40%;
    text-align: center;
    position:absolute;
    top:0;
    left:0;
    z-index: 0;
    width:100%;
  }
  .main-text p{
    font-size:1rem;
  }
.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: rgb(255, 255, 255);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title-help a{
    color:rgb(0, 0, 0);
    max-width: 90%;
    font-size:2rem;


}

.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:Michroma;

}
.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(0, 0, 0);
    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(240,239,239);
  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;
   color: red;
  -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: rgb(0, 0, 0);
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(0, 0, 0); /* 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: rgb(0, 0, 0);
  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%;
    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;            
}


.text-box {
  background-color: rgb(232,234,238);
    padding: 2rem 1rem;
    border-radius: 12px;
    width:100%;
  box-shadow: 0 4px 3px 2px rgba(0, 0, 0, 0.171);
    text-align: left; 
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.showme-container {
  position: absolute;
  top: 53%;        
  left: 50%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
    border-top:2px solid white;
    border-bottom:1px solid white;
      transition: 0.4s ease-in-out;
}
.showme-btn {
  padding: 1rem 5rem;
  font-size: .8rem;
  font-family: Michroma;
  font-weight: 300;
  background-color: rgba(45, 50, 60, 0); 
  border: none;
  cursor: pointer;
  color:white;

}



}










@media (max-width: 860px){

.background-video-container video {
    width: auto;     
    height: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: #000000;
    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: rgb(255, 255, 255);
}
.title-help{
    display:flex;
    width:100%;
    margin-top:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title-help a{
    color:rgb(0, 0, 0);
    max-width: 90%;
    font-size:2rem;
  font-family: Michroma;
    font-weight:900;


}


#contact-form {
    width: 100%;
    max-width: 70%;
    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:3rem;
    font-weight:900;
    font-family:Michroma;

}
.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(0, 0, 0);
    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(240,239,239);
  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:black;
  -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: rgb(0, 0, 0);
  max-width:100%;
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgb(0, 0, 0); /* 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: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.02);
}
.main-text{
  margin-top:40%;
  margin-left:2rem;
}
.main-text a{
    color:white;
    font-size:2em;
    font-weight:900;
}
.main-text p{
    color:white;
    font-size:1em;
    font-weight:300;

}
html{
  overflow-x:hidden;
}
.footer-center img {
    width: 20%;
    height: auto;
    margin-bottom: 1.5rem;
}

.showme-container {
  position: absolute;
  top: 55%;        
  left: 50%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
    border-top:2px solid white;
    border-bottom:1px solid white;
      transition: 0.4s ease-in-out;
}
.showme-btn {
  padding: 1rem 5rem;
  font-size: .8rem;
  font-family: Michroma;
  font-weight: 300;
  background-color: rgba(45, 50, 60, 0); 
  border: none;
  cursor: pointer;
  color:white;

}




.text-features{
  padding-top:3rem;
}

}







@media(max-width:780px){



.features {
  width: 100%;
  height:50vh;
  position:relative;
  top:auto;
  left:auto;
  z-index: 79;
  padding: 5rem 2rem;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  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(0, 0, 0);
}

.feature-box p {
  max-width: 12rem;      /* optional, still centers */
  text-align: center;
  margin: 0 auto;
  font-size:.8rem;
  color:#000000;
}
.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(0, 0, 0);
    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;
}



.homepage{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}



.overlay.active {
  opacity: 1;
  visibility: visible;
}




}





@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;

    display: flex !important;
    justify-content: center;
    align-items: center; 
    z-index: -1;
}

.background-video-container video {
    display:block !important; 
    width: auto;    
    height: 100vh;     
        filter:brightness(60%);  
    object-fit: contain; 
}
.navbar-logo{
position:relative;
padding-top:1rem;
left:-25%;
}
.navbar-logo img {
    height: 2rem;
}
.navbar-logo:hover{
    filter:brightness(100%);
}
.homepage{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}

  
.navbar {
    position: fixed;
    top: 0;
    font-weight:300;
    left: 0;
    width: 100vw; 
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0);
    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;
  }


.navbar-menu {
  margin:0;
  position: fixed;
  top: -18%;
  font-weight:300;
  color:white;
  right: -100%; 
  height: 100vh;
  width: 70vw; 
  background-color: rgba(45,50,60); 
  transition: right 0.3s ease-in-out;
  z-index: 290;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  font-size: .7rem;
  box-sizing: border-box; 
}

.navbar-menu.active {
  right:-5%;
}
.navbar-menu > li {
  margin-bottom: 2rem;
  padding-left:2rem;
  width: 100%;
  background: transparent; 
}


.dropdown-menu li a{
  font-size:.9rem;
  color:white;
  font-weight:300;
    line-height:1.5rem;
  padding-left:0;
}
.dropdown{
  color:white;
}

.dropdown-menu {
  margin-top:2rem;
  position: static;
  max-height: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  color:white;
  padding-left:0.7rem;
  background: transparent;
}


  .dropdown:hover .dropdown-menu,
  .dropdown:hover .dropdown-menu-three-columns {
    max-height: none;
    opacity: 1;
  }

.main-text{
    display:flex;
    justify-content: center;
    margin-top:40%;
    width:90vw;
    margin-left:2em;
    text-align: center;
    position:absolute;
    top:0;
    left:0;
    z-index: 0;

}
.dropdown-menu >:nth-child(1){
  display:none;
}
.main-text a{
      font-family:Michroma;
    color:white;
    font-size:1.7rem;
    font-weight:900;
}
.main-text p{
    color:white;
    padding-top:.5rem;
    font-size:.7rem;
    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(0, 0, 0);
}
.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(255, 255, 255);
  color: rgb(0, 0, 0);
  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(0, 0, 0); 
}

.feature-box p {
  max-width: 20rem;      /* optional, still centers */
  text-align: center;
  margin-bottom:2em;
}

.aaa {
    font-size: 2rem;
    font-weight: 900;
    color: rgb(0, 0, 0);
    text-align: center;
   margin: 0 0 3rem 0;
    font-family:Michroma;
}

.highlight {
    color: rgb(0, 0, 0);
}











.intro{
    position:relative;
    top:auto;
    left:auto;
    height:100vh;
    z-index:80;
    width:100%;
  background: rgb(255, 255, 255);
}
.title-help{
    display:flex;
    width:100%;
    padding-top:2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title-help a{
    color:rgb(0, 0, 0);
    max-width: 90%;
    font-size:1.3rem;
    font-weight:900;
    line-height:1.4rem;


}

.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:Michroma;

}
.grid-help-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center; 
    gap: 1rem;            
    width: 100%;           
}

.grid-help-box {
    position: relative;     
    display: inline-block;   
    text-align: center;
}
.grid-help-box img {
    border-radius: 12px;
    width: 30vw;              
    max-width: 80%;     
    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%;              
    left: 0%;
    opacity: 1;
    width: 100%;
    max-width: 80%;
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 1rem;
    z-index: 99999;
    font-size: 0.8rem;
    line-height:1.5rem;
    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-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(232,234,238);
  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: black;
  -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: rgb(0, 0, 0);
}
.subtitle-help {
  margin-top: 1rem;
  font-family:roboto;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgb(0, 0, 0); /* 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: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.02);
}









.text-features {
    width: 100%;
    padding-top:3rem;
    min-height: 100vh; 
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    position:relative;
    z-index:78;
    align-items: center;
    justify-content: flex-start;
    padding: 0rem, 2rem;
    color: rgb(0, 0, 0);
}

.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(232,234,238);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: left; 
  box-shadow: 0 4px 3px 2px rgba(0, 0, 0, 0.171);
    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(0, 0, 0);
}

.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;
  flex-direction: column;
  justify-content: center;
}

#contact-form-section {
    position: relative;
    width: 100%;
    background-color: rgb(108,110,119);
    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: rgba(155, 18, 18, 0);
    padding: 2rem;
    display: flex;
    color: rgb(255, 255, 255);
    border:none;
    flex-direction: column;
    font-size:1.6rem;
    gap: 1rem;
    font-family: Montserrat, sans-serif;
    z-index: 10;            
}
#contact-form input,
#contact-form textarea {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgb(167, 167, 167);
    border-radius:0;
    font-size: 0.9rem;
    background-color: transparent;
    color: white;
    resize: none;
    transition: border 0.3s ease, transform 0.2s ease;
}
#contact-form input::placeholder,
#contact-form textarea::placeholder{
  color:rgb(167, 167, 167);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    color:white;
    border-bottom:1px solid white;
}
#contact-form input:focus::placeholder,
#contact-form textarea:focus::placeholder {
  color: white;        
  opacity: 1;          
  transition: color 0.3s ease; 
}

#contact-form button {
    padding: 0.8rem 1rem;
    border-radius: 24px;
    border: none;
  background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: .8rem;
    font-weight: 300;
    cursor: pointer;
    letter-spacing: .1rem;
    transition: 0.4s ease-in-out;
}

#contact-form button:hover {
    transform: scale(1.02);
    cursor:pointer;
}


#form-status {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}





#main-footer {
    background-color: rgb(255, 255, 255);
    color: #000000;
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;

    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: #000000;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    font-family:Roboto;
    transition: color 0.2s;
}

.footer-services a:hover {
    color: #000000;
}

.footer-socials {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-socials a {
    color: #000000;
    margin: 0 0.8rem;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #000000;
}

.faq-section {
  background: rgb(255, 255, 255);
  color: #000000;
  position: relative;
  z-index: 78;
  padding: 4rem 2rem;

  font-family: Montserrat, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 1.6rem;
  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-color: rgb(232,234,238);
  border-radius: 12px;
  overflow: visible; 
  box-shadow: 0 4px 3px 2px rgba(0, 0, 0, 0.171);
  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: #000000;
  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: absolute;
  top: 75%;        
  left: 50%;
  width:70%;
  z-index:1;
  transform: translateX(-50%);
  text-align: center;
    border-top:2px solid white;
    border-bottom:1px solid white;
      transition: 0.4s ease-in-out;
}
.showme-btn {
  padding: 1rem 5rem;
  font-size: .8rem;
  font-family: Michroma;
  font-weight: 300;
  background-color: rgba(45, 50, 60, 0); 
  border: none;
  cursor: pointer;
  color:white;

}

/* Bubble animation */
.bubble {
  animation: bubble 2s infinite ease-in-out;
}

.showme-btn:hover{
    color:rgb(0, 0, 0);
    background-color: white;
}
@keyframes bubble {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}



#digital_marketing {
  scroll-margin-top: 5vh;
}

#homepage {
  scroll-margin-top: 7vh;
}

#intro {
  scroll-margin-top: 8vh;
}

#how_do_we_work {
  scroll-margin-top: 10vh;
}

#why_mts {
  scroll-margin-top: 1vh;
}


#frequently_asked_questions {
  scroll-margin-top: 20vh;
}


#contact-form {
  scroll-margin-top: 10vh;
}


}
