#hamburger-btn{
  display: none;
}

#mobile-menu{
  display: none;
}

/* Mobile menu - ensure it can hold all items */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(24, 24, 24, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 999;
  pointer-events: none;
  padding: 0px 100px;
	 opacity: 0; 
   transform: scale(0); 

}
.nav-menu{
  display: flex;
  flex-direction: column;
}
.mobile-menu a{
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: -1px;
	font-size: 4vw;
	font-weight: 800;
	line-height: 5vw;
  color: white;
}

.cross{
	position: absolute;
	right: 30px;
	top: 30px;
}
.cross i{
	color: white;
	cursor: pointer;
}
@media (max-width: 989px) {
  #hamburger-btn{
  display: block;
}

}
.card-3d{
	transition: all .3s ease-in-out;
  min-height: 473px;
}

.card-3d:hover {
	background-color: #ffe14f; /* yellow on hover like previous button */
	box-shadow: 4px 4px 0 #000;
	transform: translate(4px, 4px);

}
.box-border{
    border: 3px solid transparent;
    box-shadow: 5px 5px 0 transparent;
    transition: all 0.3s ease-in-out;
}
/*
.box-border:hover {
	box-shadow: 4px 4px 0 black;
	transform: translate(4px, 4px);

}
*/
 .navbar {
      transition: all 0.4s ease;
      padding: 10px 20px;
    }
.navbar-nav .nav-item{
	margin-right: 15px;
	font-weight: 500;
	font-size: 22px;
}
.transparent {
  background-color: transparent !important;
}

.black-bg {
  background-color: #000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-light .nav-link,
.navbar-light .navbar-brand,
.navbar-light .btn-custom {
  color: black !important;
}

.navbar-nav .nav-item .nav-link:hover{
	color: #f51ac5 !important
}
.navbar-nav .nav-item .nav-link:active{
	color: #f51ac5 !important
}
.navbar-dark .nav-link,
.navbar-dark .navbar-brand,
.navbar-dark .btn-custom {
  color: white !important;
}

.navbar-brand img {
  width: 70px;
}

 /* Center nav links - make nav links horizontal */
.navbar-nav {
  flex-direction: row;
  gap: 20px;
}

    /* For smaller screens, stack nav links vertically */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }
}
 
.infobox-section {
  text-align: center;
  padding: 40px 20px;

  h2 {
    font-size: 4rem;
	font-weight: 900;
    margin-bottom: 10px;
    color:white
  }

  p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: white;
  }
}

.infobox-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  color: black
}

.infobox {
  	border-radius: 10px;
  	padding: 20px;
  	text-align: left;
  	transition: transform 0.3s ease;
 	  border: 2px solid black;
    border-radius: 30px;
    box-shadow: 8px 8px 0 black;
    position: relative;
	 transition: all 0.3s ease-in-out;

  &:hover{
    background-color: #ffe14f; /* yellow on hover like previous button */
	  box-shadow: 4px 4px 0 white;
	  transform: translate(4px, 4px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

  h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
	  border-top: 1px solid black;
	  padding-top: 20px;
	  font-weight: 400;
}

  p{
    font-size: 1rem;
    margin-bottom: 20px;

  }

}
.infobox i{
	font-size: 40px;
	margin-bottom: 20px;
	color: rgb(51, 50, 50);
}

.custom-header {
  position: relative;
  width: 100%;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 10;
}

.custom-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-header.hide-header {
  top: -100px; /* adjust based on your navbar height */
}

/* Styling for the header's transition when scrolling */
.custom-header.hide-header {
    top: -100px; /* Hides header when scrolling down */
}
/* Navbar responsiveness */
.custom-header .navbar {
    transition: top 0.3s ease;
}
/* White background after scrolling */
.custom-header.scrolled {
    color: white; /* Text color when background is white */
}

/* Nav link color adjustment */
.custom-header.scrolled .navbar-nav .nav-link {
    color: black; /* Change nav link color to dark when background is white */
}
.title-sub{
  font-size: 53px;
  font-weight: 900;
}
/* Fade effect */
.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.main-img {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.primary-btn {
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    color: #e546a2;
    padding: 0 35px;
    line-height: 50px;
    border: 3px solid #e546a2;
    box-shadow: 5px 5px 0 #e546a2;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    font-family: "Montserrat", sans-serif;
    background-color: black;
    display: inline-block;
    position: relative;
}

.primary-btn:hover {
    background-color: #e546a2;
    border: 3px solid #e546a2; /* Keep border same size */
    box-shadow: 2px 2px 0 #e546a2;
    transform: translate(2px, 2px);
    color: white;
}

.primary-btn:active {
    box-shadow: none;
    transform: translate(4px, 4px);
    background-color: #e546a2 ;
    color: white;
}

.terms-section .row .col-lg-10 p{
  color: white !important;
	font-family: "Montserrat", sans-serif !important;

}
.terms-section h4{
  color: white
}
.terms-section h3{
  color: white
}
.terms-section .row .col-lg-10 ul li{
  color: white !important;
	font-family: "Montserrat", sans-serif !important;

}
.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px;
    background-color: #fed9a2;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;

}
.banner .content-box {
    flex: 1 1 60%;
    margin-right: 20px;
}

.content h1 {
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;

}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.categories {
    flex: 1 1 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    align-items: flex-start;
}

.category {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
    }

    .banner .content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .categories {
        flex-direction: column;
        justify-content: center;
    }
}

.according-container{
  padding: 30px;
  background-color: #fed9a2;
  border-radius: 15px;
  font-family: "Montserrat", sans-serif;


}
.according-container .according-title{
  display: flex;
  justify-content: space-between;
}
.according-container .according-title h4{
  font-size: 50px;
  font-weight: 700;
}
.according-container .according-title button{
  padding: 0px 20px;
  border-radius: 25px;
  background-color: black;
  color: white;
}
/*start styles*/
.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.accordion__item {
    border-radius: 10px;
    overflow: hidden;
}

.accordion__header {
    padding: 20px 25px;
    font-weight: 400;
    font-size: 32px;
    cursor: pointer;
    position: relative;
    background-color: white;
    border-top: 1px solid #a6a6a6;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

.accordion__header.active {
    background: white;
}

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
    background-color: white;
}



 .custom-card {
      background-color: #f5f5f5;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      height: 100%;
    }

 .icon-box {
      float: right;
      font-size: 1.5rem;
      color: #333;
    }
   
    /* company section  */
.company .custom-card {
      border: none;
      border-radius: 15px;
      padding: 20px;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin: -10px; /* Overlap effect */
      position: relative;
      z-index: 1;
    }

    /* Card Backgrounds */
  .company .title-card { background-color: transparent }
  .company .green-card { background-color: #c3e6cb; }
  .company .yellow-card { background-color: #ffeeba; }
  .company .purple-card { background-color: #d4c4fb; }
  .company .orange-card { background-color: #ffd7a6; }
  .company .pink-card { background-color: #f8d7da; }

    /* Z-index stacking */
  .company .custom-card:nth-child(1) { z-index: 6; }
  .company .custom-card:nth-child(2) { z-index: 5; }
  .company .custom-card:nth-child(3) { z-index: 4; }
  .company .custom-card:nth-child(4) { z-index: 3; }
  .company .custom-card:nth-child(5) { z-index: 2; }
  .company .custom-card:nth-child(6) { z-index: 1; }

    /* Typography */
  .company .custom-card h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .company .custom-card p {
    font-size: 1.3rem;
      font-family: "Montserrat", sans-serif;

  }
  .company .custom-card img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
  }

  .company.btn-custom {
      background-color: #000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
  }

  .company .btn-custom:hover {
      background-color: #333;
  }

  .mt-{
    margin-top: -6px;
  }
    /* Responsive font & spacing */
    @media (max-width: 768px) {
     .company .custom-card {
        margin: -5px;
      }

      .company .custom-card h1 {
        font-size: 1.5rem;
      }

     .company .custom-card p {
        font-size: 0.9rem;
      }
    }    


  .-mt-20{
    margin-top: -20px;
  }
 
.technology-box{
    background: transparent;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid black;
    border-radius: 30px;
    box-shadow: 8px 8px 0 black;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.technology-box:hover{
	  box-shadow: 4px 4px 0 #000;
	  transform: translate(4px, 4px);

}
.technology-box p{
  color: black;
}
 .technology img{
    color: black;
    height: 70px;
    width: 70px;
    text-align: center;
}
.our-process{
  background-color: #ebe9e9;
  border-radius: 15px;
  padding: 20px 30px; 
}
.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 10px;
  font-size: 25px;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #f1f7ff;
  color: #007bff;
  font-weight: bold;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.step-icon {
  font-size: 30px;
  color: #333;
}

.step-line {
  height: 2px;
  background: repeating-linear-gradient(to right, #007bff, #007bff 10px, #f0f0f0 10px, #f0f0f0 20px);
  margin: 40px 0;
}

.our-process .process-img{
    position: absolute;
    right: 80px;
    top: 50px;
  }
.industrie-section p{
    font-family: "Montserrat", sans-serif;

}

.industrie-section .industrie-shape{
    position: absolute;
    left: 60px;
    bottom: 50px;
    animation: rotated 40s infinite linear;
}

.bg-three p{
    font-family: "Montserrat", sans-serif;

}
.bg-three h1{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 30px;
    font-style: italic;
    color: black
}
.our-process p{
    font-family: "Montserrat", sans-serif;

}
.our-process h4{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 30px;
    font-style: italic;
    color: black
}
.faq-section-one p{
  font-family: "Montserrat", sans-serif;

}
.para{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.m-0{
  margin: 0px;
}
.privacy-policy {
  color: white;
}
.privacy-policy p{
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 20px;
}
.privacy-policy ol li{
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 20px;
  line-height: 35px;

}
.services-img{
    position: absolute;
    bottom: 20px;
    right: 40px;
}
.bor-15{
  border-radius: 15px !important;
}
@media(max-width: 1290px){
  .our-process .process-img{
    display: none;
  }
  
.industrie-section .industrie-shape{
   display: none
}
}
@media (max-width: 661px) {
    .hero-banner-five .hero-heading {
        font-size: 69px;
        letter-spacing: -4px;
    }
    .hero-banner-five .hero-heading span{
      font-size: 50px !important;
    }
    .footer-two .bg-wrapper{
      padding: 40px 20px;
    }
    .p-50{
      padding: 20px;
    }

  }
@media (max-width: 580px){
  .s-m-20{
    margin-right: 10px;
    margin-left: 10px;

  }
}
  @media (max-width: 491px) {
    .hero-banner-five .hero-heading {
        font-size: 49px;
        letter-spacing: -2px;
    }
    .hero-banner-five .hero-heading span{
      font-size: 40px !important;
    }
    .hero-banner-five p{
      font-size: 17px !important;
      padding-top: 10px;
    }
    .md-d-block{
      display: block !important;
    }

  }
