*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        @font-face {
  font-family: 'Bagoss';
  src: url('font/BagossStandardTRIAL-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bagoss';
  src: url('font/BagossStandardTRIAL-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
} 

@font-face {
  font-family: 'Bagoss';
  src: url('font/BagossStandardTRIAL-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
  
.container {
  max-width: 100%;
  padding: 0px; /* Optional padding */
  overflow-x: hidden;
}

 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1%;
  position: fixed;
  width: 100%;
 
  box-shadow: none !important;
  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar a {
  text-decoration: none;
  color: #043D50;
  margin: 0 1rem;
  font-family: 'Bagoss',sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin: 1px;
  padding: 14px;
  background-color: white;

 
}

.navdiv {
  display: flex;
  justify-content: space-between; /* ✅ Keeps logo left and nav right */
  align-items: center;
  width: 100%;

  
}
.navdiv ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
  flex-wrap: nowrap;
 
}
.navdiv ul li {
  margin: 0 1rem;

  
 
}
.logo {
 
  margin-left: 50px;
  margin-right: 80px;
}


 .navbar-nav .nav-link{
  border-radius: 20px;
  background-color: transparent;
 }
.navbar-nav .nav-link:hover {
color: white;
  background-color: #632977;
  border-radius: 20px;
  padding: none;

}
        .mini-nav {
    width: 100%;
    height: 195px;
    background-color: #032430;
    
}
.niggs img{
    padding: 20px 60px 20px 60px;
    width: 100%;
    background-color:#F6F3FE ;
}

/* Service Section */
.services-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 90px;
    background-color: #f6f6f6;
    margin-top: -10px;
}

.left-side {
    width: 40%;
    margin-top: 20px;
    margin-left: 50px;
   
}

.right-side {
    width: 55%;
    display: flex;
    flex-direction: column; /* Ensures content stacks correctly */
}

.small-lines img {
    width: 50px;
    margin-right: -20px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 429px;
}
/* new1 */
.services-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    padding: 10px 15px;
    font-size: 19px;
    color: #17012C;
    font-weight: 600;
    transition: 0.3s;
    height: 65px;
    font-family: 'Bagoss',sans-serif;
    justify-content: space-between; /* Ensures text is left-aligned and arrow is at the right */
}

.services-list a img {
    width: 20px;
    
}

.services-list a.active {
    background-color: #663776;
    color: white;
}

.services-list a:hover {
    background-color: #663776;
    color: white;
}
/* new2 */

.right-side h2 {
    margin-top: 20px;
    font-family: 'Bagoss',sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #17012C;
    padding-bottom: 10px;
}
/* new3 */

.right-side p {
    color: #504E4E;
    line-height: 35px;
    font-family: 'Bagoss',sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.challenge-item img {
    width: 19px;
}
/* new4 */
.challenge-item p{
    font-size: 19px;
    font-family: 'Bagoss',sans-serif;
    font-weight: 400;
}
/* new5 */
.left-side h2 {
    color: #17012c;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Bagoss',sans-serif;}

.services-right {
    display: flex;
    justify-content: center; /* Centers image */
    margin-bottom: 20px; /* Adds space before "The Challenge" */
}

.services-right img {
    width: 950px;
    max-width: 110%;
    object-fit: cover;
}
.what-we-provide {
    margin-bottom: 20px; /* Adds space between text and image */
}

    .bottom-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
    width: 900px;
   
}
/* new6 */
.bottom-right a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    padding: 10px 15px;
    font-size: 18px;
    color: #17012C;
    font-weight: 600;
    transition: 0.3s;
    height: 75px;
    font-family: 'Bagoss',sans-serif;    justify-content: space-between; /* Ensures text is left-aligned and arrow is at the right */
}
.bottom-right a img {
    width: 20px;}


    .full-width-section {
    width: 100%;
    background-color: #f6f6f6;
    padding: 50px 0; /* Adds spacing inside the section */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the button */
}

.full-width-section img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers both image and button */
    margin-top: 20px;
}

.contact-container a {
    display: block;
    text-align: center;
    background-color: #032430;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding:  40px 120px;
    margin-top: 10px;
    
    transition: background-color 0.3s ease;
}
.contact-container a p {
    margin: 0; /* Removes default margin from the paragraph */
    font-size: 40px;
    font-family: sans-serif;
    font-weight: 600;
    color: white;
}




.contact-container img {
    width: 1200px; /* Adjust as needed */
    height: auto;
    display: block;
    margin-top: 150px;
    margin-bottom: 20px;
}



.contact-container a:hover {
    background-color: #010d11;
}

/* Footer */

.footer {
  background-color: #442052;
  width: 100%;
  height: 100%;
  padding: 0px;
  color: white;
  font-family: 'Bagoss', sans-serif;
  font-weight: 400;
  min-width: 100%;
 
  
  
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 70px 50px 0px 50px;
  gap: 0px;
  min-width: 100%;
  

   

  
}

/* Footer Logo */
.footer-logo {
  width: 300px;
  margin-bottom: 30px;
}

/* Footer Column Styling */
.footer-column h2 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer-column p {
  font-size: 15px;
  width: 80%;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  margin: 5px 0 90px 0;
  font-size: 18px;
  font-weight: 500px;
}


.footer-column ul li a:hover {
  text-decoration: none;
}

/* Social Icons */
.social-icons img {
  width: 28px;
  margin-right: 10px;
  margin-top: 50px;
  margin-bottom:20px ;
}

/* Recent Posts */
.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.recent-post img {
  width: 70px;
  height: 60px;
 margin-right: 10px;
  border-radius: 5px;
 
}

.recent-post a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  width: 50%;
}

.recent-post a:hover {
  text-decoration: underline;
}

/* Contact Us Section */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.contact-item img {
  width: 25px;
  margin-right: 10px;
}

/* Subscription Form */
.subscription-form {
  display: flex;
  gap: 1px;
  margin-top: 50px;
  margin-right: -90px;
}

.subscription-form input {
  padding: 30px;
  font-size: 16px;
  width: 380px;
  border: none;
  border-radius: 15px;
}

.subscription-form button {
  background-color: #692481;
  color: white;
  font-size: 24px;
  margin-left: -135px;
  padding: 12px 10px;
  border: none;
  font-family: "Bagoss Standard TRIAL";
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscription-form button:hover {
  background-color: #6a0dad;
  color: white;
}

/* Footer Bottom Section */
.footer-bottom {
  
  text-align: center;

}



.footer-links {
  display: flex;
  justify-content: space-between;
  
  

}



.footer-links .terms{
  margin-left: 850px;
}
.footer-links .privacy{
  margin-right: 200px;
}

.footer-links a:hover {
  text-decoration: underline;
}




.footer-bottom {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}
/* new */
.footer-bottom hr {
  width: 100%;
  border: 1px solid white;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  


}

.footer-links p
 {
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-family: 'Bagoss Bold', sans-serif;
  margin-top: 0px;
  margin-left: 30px;
}
.footer-links a{
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-family: 'Bagoss Bold', sans-serif;
  

}

/* Right side: links beside each other with spacing */
.policy-links {
  display: flex;
  gap: 10px;
   transform: translateX(210px);
   margin-top: -42px;

}


@font-face {
    font-family: 'Bagoss Standard TRIAL';
    src: url('fonts/BagossStandardTRIAL-Regular.ttf') format('truetype');
}


i {
    font-style: normal; /* Removes italic */
    text-decoration: none; /* Removes underline */
}

/* General styles for smaller screens */
body {
    font-size: 16px; /* Adjust base font size for smaller screens */
    
}
.hamburger{
    display: none;
}
.close-btn {
    display: none;
}   
.nav-item-get a.nav-link,
.nav-item.get a.nav-link {
  background-color: #663776;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Bagoss Bold', sans-serif;
  transition: 0.3s ease;
  display: inline-block;
  text-align: center;
}
#remove{
  display: none;
}
.full-width-section img{
  margin-top: 0%;
  
}

/* .nav-item-get a.nav-link:hover,
.nav-item.get a.nav-link:hover {
  background-color: #4e265c;
  color: white;
} */

/*Get Started – always purple */
.navbar-nav .nav-item-get .nav-link {
  background-color: #4e265c;
  color: white;
  border-radius: 5px!important; /* No border radius for this link */
  padding: 15px;
}

/* Responsive changes */


@media (min-width: 992px) {
  .row > div:nth-of-type(2) .box-top,
  .row > div:nth-of-type(5) .box-top {
    background-color: #4e265c;
    transform: translateY(-70px);
  }
   .mobile-logo {
    height: 70px;
    width: auto;
  }
  body {
    overflow-x: hidden;
  }
}


 @media (max-width: 991px) {
 

  .navbar-toggler {
    margin-right: 15px;
    background-color: #4e265c;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 25px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .navbar-toggler img {
    width: 54px;
    height: auto;
    
  }

  

  .container-fluid{
    padding: 0 !important;
  }
   .navbar-toggler {
    z-index: 999;
  }

  .navbar .logo img,
  .navbar-toggler img {
    max-height: 40px;
    width: auto;
  }
 

  #nav-links-mobile {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 360px;
    height: 35vh;
    display: flex;
    flex-direction: column;
    padding-top: 10px !important;
    
    display: flex;
  flex-direction: column;
  align-items: flex-start;
  
    
    
   
    z-index: 1050;
    transition: all 0.3s ease;
  }


  .navbar a{
    font-size: 16px;
    display: flex;
    justify-content: start;
    padding: 10px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: block;
    z-index: 1060;
  }

  .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
  .close-btn img {
    width: 32px;
    height: 32px;
  }
  
/* hamburger down */
#nav-links-mobile {
    position: absolute;
    top: 0%;
    right: 0;
    background-color: #fff;
    padding: 20px;
    z-index: 1001;
    animation: slideDown 0.8s ease forwards;
    display: flex;
  flex-direction: column;
  align-items: center;
  }

  #nav-links-mobile.show {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 999;
  padding: 30px 20px;
 
  animation: slideDown 0.3s ease-in-out;
  
}

.mobile-menu.active {
  display: block;
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
    
  }

  .close-btn {
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .navbar-collapse {
    position: relative;
  }
  nav-links-mobile .nav-item {
  width: 100%;
}

#nav-links-mobile .nav-link {
  display: block;
  padding: 12px 15px;
  font-size: 18px;
  font-family: 'Bagoss Bold', sans-serif;
  text-decoration: none;
 
  transition: background 0.3s ease;
}
#nav-links-mobile .nav-link:hover{
  background-color: none;
}
#nav-links-mobile .nav-link{
  background-color: none;
}
 /* Remove hover on mobile links */
  #nav-links-mobile .nav-link:hover {
  background-color: transparent !important;
  color: inherit !important;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
    #nav-links-mobile .nav-link{
      background-color: white !important;
      color: #043D50 !important;
    }
  
  
}




@media (max-width: 767px) {
    .mini-nav{
        display: none;
    }
    .niggs{
        display: flex;
        align-items: center;
        justify-content: center;
        
        height: auto;
              

    }
    .niggs img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120%;
       margin-top: 20%;

    }
  
  

/* services section */

  .services-section {
    flex-direction: column;
    padding: 40px 20px; /* Less padding on mobile */
    gap: 40px;
  }
  
  .left-side {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .services-list {
    width: 100%;
    margin-top: 20px;
  }

  .services-list a {
    font-size: 14px;
    height: 60px;
  }

  .right-side {
    width: 100%;
  }

  .right-side h2 {
    font-size: 25px;
    font-weight: 500;
  }

  .right-side p {
    font-size: 12px;
    line-height: 20px;
    color: #000;
  }

  .small-lines img {
    width:18%;
   
  }

  .services-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .challenge-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    gap: 20px;
  }

  .challenge-item p {
    font-size: 15px;
  }

  .bottom-right {
    width: 100%;
    margin-top: 40px;
  }

  .bottom-right a {
    font-size: 16px;
    height: 65px;
  }
  /* Bottom image section */

  .full-width-section {
    padding: 30px 10px;
  }

  .full-width-section img {
    width: 100%;
    height: auto;
  }

  .contact-container {
    margin-top: 30px;
  }

  .contact-container img {
    width: 90%; /* Shrink "Get in Touch" image */
    margin-top: 60px;
    margin-bottom: 20px;
  }

  .contact-container a {
    padding: 20px 40px; /* Smaller padding for button */
  }

  .contact-container a p {
    font-size: 24px; /* Smaller font size for mobile */
  }
  .subscription-form input {
  padding: 10px;
  font-size: 14px;
  width: 280px;
  border: 2px;
  border-radius: 20px;
  font-family: 'Bagoss Bold', sans-serif;
  outline: none;
  height: 80px;

}

.subscription-form button {
  background-color: #713586!important;
  color: white;
  font-size: 18px;
  padding: 1px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: -90px;
  font-family: 'Bagoss Bold', sans-serif;
  font-weight: 400;
    overflow: show;
    
    
}
#remove{
  display: none;
}
.full-width-section img{
  margin-top: 0%;
  
}
/* footer */
.footer {

  height: auto;
  background-color: #4E265C;
}

.footer-container {
  grid-template-columns: 1fr; /* Stack all columns on mobile */
padding: 20px;
}
.footer-column p{
  font-size: 12px;
  width: 70%;
  
  
}
.social-icons  a img {
  margin-top: 5%;
}
.footer-logo {
  width: 60%;
}
.recent-post img {
 width:20%;
}
.footer-column form{
  margin-bottom: 0px;
}


.footer-column h2 {
  font-size: 16px;
  
}

.footer-column ul li {
  margin-bottom: 22px;
}

.footer-column ul li a {
  font-size: 12px;
 
}

.recent-post a {
  font-size: 12px;
}
.footer-links{
  margin-top: 0%;
}
.footer-bottom {
  margin-top: 30px;
  text-align: center;
}

.footer-bottom hr {
  border: 1px solid white;
  margin-bottom: 0;
  margin-top: 0%;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;

}
.footer-links .terms{
  margin-left: 10px;
}



.footer-links {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
/* Subscription */
.subscription-form input {
  padding: 10px;
  font-size: 14px;
  width: 280px;
  border: 2px;
  border-radius: 20px;
  font-family: 'Bagoss Bold', sans-serif;
  outline: none;
  height: 80px;
  display:inline-block;
  

}

.subscription-form button {
  background-color: #692481 !important;
  color: white;
  font-size: 18px;
  padding: 1px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: -90px;
  font-family: 'Bagoss Bold', sans-serif;
  font-weight: 400;
    overflow: show;
    display: inline-block;
   
    
    
}


.small-footer{
  display: none;
}
/* new */

.footer-bottom {
  
  text-align: center;

}



.footer-links {
  display: flex;
  justify-content: space-between;
  
  

}



.footer-links .terms{
  margin-left: 850px;
}
.footer-links .privacy{
  margin-right: 200px;
}

.footer-links a:hover {
  text-decoration: underline;
}




.footer-bottom {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
}
/* new */
.footer-bottom {
  padding: 10px 0px;
}

.footer-bottom hr {
  border: none;
  height: 1px;
  background-color: #fcfcfc;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* allows stacking if needed */
}

.footer-links .copyright {
  font-size: 10px;
  color: #ffffff;
  
}

.footer-links .policy-links {
  display: flex;
   transform: translateX(-210px);
   display: none;

  gap: 1px; /* space between terms and privacy */
}

.footer-links .policy-links a {
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
  
}

.footer-links .policy-links a:hover {
  text-decoration: underline;
}
}