* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    
    background: linear-gradient(45deg, #010758, #490d61) !important;
    color: #fff !important;
}

.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    padding-top: 10%;
}

.hero h1 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 50px;
    margin-top: -50px;
    text-align: center;
}

.hero h1 span {
    color: #ff2963;
    border-bottom: 4px solid #fff;
}

textarea {
    width: 100%;
    max-width: 600px;
    height: 200px;
    background: #403d84;
    color: #fff;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 10px;
}

textarea::placeholder {
    font-size: 16px;
    color: #ddd;
}

.hero .row {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    background: #ff2963;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

button:hover {
    background: #e02456;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

select {
    flex: 1;
    min-width: 200px;
    color: #fff;
    background: #403d84;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 15px);
    background-position-y: center;
}

.byte-counter {
    font-size: 14px;
    margin: -10px 0 15px;
    text-align: right;
    width: 100%;
    max-width: 600px;
    color: #ddd;
}

.long-text-btn {
    background: #4CAF50;
}

.long-text-btn:hover {
    background: #45a049;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background: linear-gradient(45deg, #010758, #490d61);
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    background-color: #403d84;
    border-radius: 5px;
    margin: 10px 0;
}

.progress {
    height: 20px;
    background-color: #4CAF50;
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s;
}

#status {
    margin-top: 20px;
    color: #ff2963;
    min-height: 24px;
    text-align: center;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff2963;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
        margin-top: 0;
    }
    
    .row {
        flex-direction: column;
        align-items: stretch;
    }
    
    select, button {
        width: 100%;
    }
}

#audioPlayer {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    padding: 10px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    outline: none;
    transition: box-shadow 0.3s ease;
  }
  
  #audioPlayer:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  }
  @media (prefers-color-scheme: dark) {
    #audioPlayer {
      background-color: #222;
      border: 1px solid #444;
      box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    }
  }
    
  .progress-text {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

.progress-text strong {
    font-size: 16px;
    color: #4CAF50;
}

.progress-bar {
    width: 100%;
    background-color: #403d84;
    border-radius: 5px;
    margin: 10px 0;
    height: 20px;
    position: relative;
}

.progress {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s;
}


/* Main Header Styles */
.main-header {
    background: linear-gradient(45deg, #010758, #490d61);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

#loginBtn, #signupBtn {
    background: transparent;
    border: 2px solid #ff2963;
    padding: 8px 20px;
    transition: all 0.3s;
}

#loginBtn:hover, #signupBtn:hover {
    background: #ff2963;
}

#signupBtn {
    background: #ff2963;
}

#signupBtn:hover {
    background: #e02456;
}

/* Modal Enhancements */
.modal-content {
    position: relative;
    background: linear-gradient(45deg, #010758, #490d61);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    background: #403d84;
    color: #fff;
    font-size: 16px;
}

.modal-content input::placeholder {
    color: #ccc;
}

.modal-content button[type="submit"] {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: #ff2963;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.modal-content button[type="submit"]:hover {
    background: #e02456;
}

.close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #ff2963;
}

/* Responsive Design */
@media (max-width: 600px) {
    .main-header {
        padding: 1rem;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .header-buttons {
        gap: 10px;
    }
    
    #loginBtn, #signupBtn {
        padding: 1px 9px;
    font-size: 12px;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
}

/* Footer Styles */
#footer {
    background: linear-gradient(45deg, #010758, #490d61);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 14px;
    position: relative;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.published {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
    position: relative;
}

.published a {
    color: #ff2963;
    text-decoration: none;
    transition: all 0.3s ease;
}

.published a:hover {
    color: #fff;
}

.underline-effect {
    display: inline-block;
    position: relative;
}

.underline-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ff2963;
    transition: width 0.3s ease;
}

.underline-effect:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 600px) {
    #footer {
        padding: 1.5rem 1rem;
        font-size: 13px;
    }
    
    .published {
        padding: 0.3rem;
    }
}



section.pb-30 {
   
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

h2.small {
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
}

.color-heading {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.blocks .col-md-4 {
  background-color: #f8f8f8;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blocks .col-md-4:hover {
  transform: translateY(-5px);
}

.blocks i {
  color: #7f3cff;
  font-size: 58px;
  margin-bottom: 10px;
}

.title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-95 {
  margin-top: 95px;
}

.mb-50 {
  margin-bottom: 50px;
}

.text-adaptive {
  font-size: 15px;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
    
.username{
    display: none;
}    
#logoutBtn{
    padding: 5px 12px !important;
}
  .blocks .col-md-4 {
    margin-bottom: 20px;
  }
}
section.pb-30.mt-30 {
    padding-bottom: 30px;
 
  }
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
  }
  
  .blocks > div {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    flex: 0 0 30%;
    max-width: 30%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .blocks > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .blocks i {
    color: #4a90e2;
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .blocks h3.title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin: 20px 0 10px;
  }
  
  .blocks .color-heading {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
  }
  
  /* Responsive for Tablets */
  @media (max-width: 992px) {
    .blocks > div {
      flex: 0 0 45%;
      max-width: 45%;
    }
  }
  
  /* Responsive for Mobile */
  @media (max-width: 576px) {
    .blocks > div {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 30px;
    }
  
    section .row.text-center.text-sm-left {
      text-align: center !important;
    }
  }
  .blocks > div {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .blocks > div:nth-child(2) {
    animation-delay: 0.2s;
  }
  .blocks > div:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
    


  /* Add this to your style.css file */
.pricing-section {
    background: linear-gradient(45deg, #010758, #490d61);
    padding: 80px 20px;
    color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff2963;
  }
  
  .section-subtitle {
    text-align: center;
    color: #ddd;
    margin-bottom: 50px;
    font-size: 18px;
  }
  
  .pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  
  .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .featured {
    background: rgba(255, 41, 99, 0.1);
    border: 1px solid #ff2963;
    transform: scale(1.05);
  }
  
  .featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .card-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .plan-name {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 48px;
    font-weight: 500;
    color: #ff2963;
  }
  
  .price span {
    font-size: 16px;
    color: #ddd;
  }
  
  .popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff2963;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .features {
    list-style: none;
    margin-bottom: 30px;
  }
  
  .features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ddd;
  }
  
  .features i {
    margin-right: 10px;
    width: 20px;
  }
  
  .fa-check {
    color: #4CAF50;
  }
  
  .fa-times {
    color: #ff2963;
  }
  
  .select-plan {
    width: 100%;
    background: #ff2963;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .select-plan:hover {
    background: #e02456;
  }
  
  .featured-btn {
    background: #4CAF50;
  }
  
  .featured-btn:hover {
    background: #45a049;
  }
  
  .faq {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .faq-question {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
  }
  
  .faq-question i {
    transition: transform 0.3s;
  }
  
  .faq-answer {
    padding: 0 0 15px;
    color: #ddd;
    display: none;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  @media (max-width: 768px) {
    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }
    
    .pricing-card {
      max-width: 100%;
    }
    
    .featured {
      transform: none;
    }
    
    .featured:hover {
      transform: translateY(-10px);
    }
  }