.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    text-align: center;
    padding: 250px 20px 170px 20px;
}



.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    color: #000000;
    
}

.hero-content p {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.cta-button {
    font-weight: 500;
    font-size: 1.2rem;
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 200px 20px 110px 20px;
        text-align: left;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    .button-align{
        display: flex;
        justify-content: center;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}
/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f6f8ff, #dce1f5);
    padding: 60px 20px;
    text-align: center;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.stats-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.stat-text {
    font-size: 1rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-title {
        font-size: 2.3rem;
    }

    .stat-item {
        width: 100%;
    }
}

/* Features Section */
.features-section {
    background-color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.features-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-title {
        font-size: 2.1rem;
    }
    .feature-item {
        width: 100%;
    }
}

/*  */

/* Platforms Section */
.platforms-section {
    background-color: #f8f8f8; /* Light background */
    padding: 60px 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Title */
.platforms-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

/* Subtitle */
.platforms-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Logos Section */
.platforms-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* Logo Items */
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .platforms-title {
        font-size: 2.1rem;
    }

    .platforms-subtitle {
        font-size: 1rem;
    }

    .platforms-logos {
        gap: 30px;
    }

    .logo-item {
        width: 120px;
        height: 100px;
    }
}

/* General Section Styling */
#how-it-works {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    color: #333;
  }
  
  #how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000000;
  }
  
  #how-it-works .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* Steps Styling */
  #how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  #how-it-works .step {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #how-it-works .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Step Number Styling */
  #how-it-works .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #how-it-works .step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  #how-it-works .step p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #how-it-works h2 {
      font-size: 2.3rem;
    }
  
    #how-it-works .steps {
      grid-template-columns: 1fr;
    }
  
    #how-it-works .step {
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    #how-it-works h2 {
      font-size: 2.3rem;
    }
  
    #how-it-works .section-description {
      font-size: 1rem;
    }
  }
  /* FAQ Section Styling */
#faq {
    background-color: #ffffff;
    padding: 60px 0px;
    text-align: center;
  }
  
  #faq .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #faq h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #000000;
  }
  
  #faq .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  /* FAQ List Styling */
  #faq .faq-list {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  
  #faq .faq-item {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s;
  }
  
  #faq .faq-item:hover {
    background-color: #f1f1f1;
  }
  
  /* FAQ Question Styling */
  #faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  #faq .faq-question h3 {
    font-size: 1.3rem;
    color: #000000;
    margin: 0;
  }
  
  #faq .toggle-icon {
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease;
  }
  
  #faq .faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
    
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s ease, opacity 0.5s ease;
  }
  
  /* Active Answer Styling with smooth transition */
  #faq .faq-item.active .faq-answer {
    display: block;
    height: auto;
    opacity: 1;
  }
  
  #faq .faq-item.active .toggle-icon {
    transform: rotate(45deg);
  }
  

  /* Tools Section Styling */
#tools {
    background-color: #1e1e1e;
    padding: 60px 0px;
    text-align: center;
    color: #fff;
  }
  
  #tools .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #tools h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  #tools .section-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
  }
  
  /* Tools List Styling */
  #tools .tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  #tools .tool-item {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s ease;
  }
  
  #tools .tool-item:hover {
    background-color: #333;
    transform: translateY(-10px);
  }
  
  #tools .tool-icon {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 20px;
  }
  
  #tools .tool-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
  }
  
  #tools .tool-item p {
    font-size: 1rem;
    color: #bbb;
  }
  

  /* Call to Action Section Styling */
#cta {
    background-color: #333;
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  #cta .cta-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #cta h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
  
  #cta p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  #cta .cta-button {
    background-color: #00bcd4;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  #cta .cta-button:hover {
    background-color: #0097a7;
    transform: translateY(-5px);
  }
  
  #cta .cta-button:active {
    transform: translateY(0);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #cta h1 {
      font-size: 2.2rem;
    }
  
    #cta p {
      font-size: 1rem;
    }
  
    #cta .cta-button {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }
  