@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  
  html, body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
  }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #000;
    
    
  }
  
  :root{
    --bs-dark-color:#000;
    --bs-dark-primary:#52024F;
    --bs-main-color:#63005F;
    --bs-primary-color:#A870A5;
    --secondary-color:#FFFFFF;
    --bs-supporting-color:#FFE0FE;
   }

   

  /* Navbar */
  .bg-purple {
    background-color: var(--bs-main-color);
  }
  
  .navbar-brand span {
    font-size: 1.25rem;
  }
  
  .nav-link {
    color:var(--secondary-color)!important;
    transition: 0.3s;
  }
  
  .nav-link:hover {
    color: var(--secondary-color)  !important;
  }
  
  /* Hero Section */
  .hero-section h1 {
    color: var(--bs-main-color);
  }
  
  .hero-section p {
    color: var(--bs-primary-color);
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-section p span{
    color: var(--bs-dark-primary)
  }
  
  .hero-img {
    max-width: 700px;
    width: 100%;
    margin-top: 20px;
  }
  

  .fullscreen-image {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  .fullscreen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .about{
    width: 100%;
      height: auto;
      display: block;
  }
  .about img{
    width: 100%;
      height: auto;
      display: block;
  }


  

  /* Solutions Section */
  .solutions {
    text-align: center;
    padding: 60px 20px;
  }


  .custom-purple {
    color: var(--bs-main-color);
    font-size: 50px;
  font-weight: bold;
  
  }


  .solutions p {
    color: var(--bs-primary-color);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
  }

  .solution-boxes {
    background-color: #fef5ff;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  
    width: 100%;
    max-width: 898px;
    height: auto;
  
    border-radius: 25px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  
    margin: 0 auto; /* Center horizontally */
    box-sizing: border-box;
  }

  .solution-boxes .box {
    background-color: #f5e7f8;
    color: #6f2781;
    font-weight: 700;
    padding: 25px 30px;
    border-radius: 20px;
    font-size: 18px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  /* Services Section */
  .services {
    background-color: #63005F;
    color: white;
    padding: 50px 20px;
    border-radius: 25px;
    margin: 40px auto;
    max-width: 1200px;
  }

  .services .content h2 {
    font-size: 40px;
    line-height: 1.3;
  }

  .services .content p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .services .btn {
    background-color: white;
    color: #6f2781;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px 10px 0 0;
    text-decoration: none;
    display: inline-block;
  }

  .services-box {
    background: none;
    text-align: center;
    margin-top: 30px;
  }

  .services-box p {
    background-color: #89489a;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 16px;
    max-width: 100%;
  }

  .service-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .service-tags span {
    background-color: white;
    color: #6f2781;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
  }

  /* Responsive tweaks */
  @media (min-width: 768px) {
    .services-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    }

    .content,
    .services-box {
      flex: 1;

    }

    .services .content h2 {
      font-size: 50px;
      font-weight:bold ;
      color: #FFFFFF;

    }

    .services-box p {
      max-width: 450px;
      margin: 0 auto;
      font-weight:regular ;
    }
  }


  .growth-section {
    background-color: #63005F;
  }
  
  .growth-card {
    background-color: #52024F;
    border-radius: 20px;
    max-width: 1100px;
    color: white;
  }
  
  .bar-graph .bar {
    width: 20px;
    background-color: white;
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s ease;
  }
  
  .bar-graph .bar:hover {
    transform: scaleY(1.1);
  }
  
  @media (max-width: 768px) {
    .growth-card {
      flex-direction: column;
      text-align: center;
    }
  
    .bar-graph {
      justify-content: center;
    }
  }

  .tools-container {
    border: 2px solid var(--bs-main-color);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem;
  }

  .tools-label {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  /* Custom width classes */
.w-80 { width: 80%; }
.w-90 { width: 90%; }
.w-95 { width: 95%; }
.w-99 { width: 99%; }


.custom-progress {
  width: 100%;
  height: 20px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-bar {
  height: 100%;
  
  border-radius: 10px 0 0 10px;
  transition: width 0.5s ease-in-out;
}

  .custom-progress {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    height: 45px;
    overflow: hidden;
    margin-bottom: 1.2rem;
  }

  .custom-progress .progress-bar {
    background-color: white;
    border-radius: 50px;
    color: var(--bs-dark-primary);
    font-weight: 600;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

  @media (max-width: 768px) {
    .tools-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .tools-label {
      margin-bottom: 1.5rem;
    }

    .progress-wrapper {
      width: 100%;
    }
  }

  .heading {
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
    color: #800080;
    margin-bottom: 3rem;
  }

  .custom-card {
    background-color: #ffc8f9;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .custom-card h5 {
    color: #800080;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .custom-card p {
    color: var(--bs-dark-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
  }
 


  
  .btn-gradient {
    background: linear-gradient(to right, #741559, #fc929d);
    color: white;
    border: none;
    font-weight: bold;
  }

  .btn-gradient:hover {
    background: linear-gradient(to right, #fc929d, #974b84);
    transform: scale(1.02);
  }

  .bg-pink {
    background-color: #f66bd1;
  }

  .text-pink {
    color: #f66bd1;
  }

  .form-control::placeholder {
    color: #ccc;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }
  
  

  .footer {
    background-color: #fff; 
    color: #ffffff;
    padding: 40px 0;
    font-family: ', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  
  .footer-row ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-row ul li {
    margin-bottom: 12px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .footer-center {
    text-align: center;
    padding: 20px;
    color: var(--bs-dark-color);
  }
  
  .divider- {
    width: 2px;          
    height: 50px;        
    background-color:var(--bs-dark-color); 
    margin: 0 auto;      
  }
  
  .divider {
    height: 1px;
    background-color: var(--bs-dark-color);
    margin: 30px auto;
    width: 60%;
  }
  


  .social-icons {
    display: flex;                
    justify-content: center;      
    align-items: center;         
    gap: 20px;                    
    background-color: white;      
    padding: 10px;                
    border-radius: 50px;          
  }
  
  .social-icons a {
    font-size: 24px;              
    color: #333;                  
    text-decoration: none;        
  }
  
  .social-icons a:hover {
    color: var(--bs-dark-primary);              
  }

  

  .accordion-container {
    display: flex;
    justify-content: space-between;  /* Equal space between items */
    max-width: 900px;  /* Adjust this value for spacing */
    margin: 0 auto;
    text-align: center;
  }
  
  .accordion-item {
    width: 30%;  /* Each item takes up 30% of the space */
  }
  
  .accordion-title {
    background: none;
    border: none;
    color:var(--bs-dark-color);
    font-size: 16px;
    padding: 15px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    outline: none;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
}

  
  .accordion-title:hover {
    background-color: #ffffff11;
  }
  
  .accordion-content p  {
    display: none;
    padding: 0 15px 15px;
    color: var(--bs-dark-color);
    font-size: px;
  }
  
  .footer-bottom {
    text-align: center;   /* This centers the content horizontally */
    padding: 20px 0;      /* Add padding for spacing */
    color: var(--bs-dark-color);         /* Text color */
    font-size: 14px;      /* Font size */
  }
  