/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary-color: #00cec9;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
    --gray-color: #636e72;
    --light-gray: #dfe6e9;
    --success-color: #00b894;
    --danger-color: #d63031;
    --warning-color: #fdcb6e;
    --info-color: #0984e3;
    --light-dark:#83969dbe;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 15px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
}

h3 {
    font-size: 30px;
	margin-right:40px;
}

p {
    color: rgb(0, 0, 0);
    line-height: 1.2;
    text-align: center;
    margin:auto;
}

a{
    text-decoration: none;
    padding:0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 0px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    float: right;
    margin-top: -1%;
}

.btn-secondary:hover {
    background-color: #121717;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 201, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-effect {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 10px 15px;
    font-size: 0.9rem;
}

.btn-effect:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.header {
    position: flex;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding:0;
    margin-top:0px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}






/* Hero Section */
.hero {
    padding-top: 0px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top:0px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
	margin-right:60px;
	
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
	 margin-left:32px;
	
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
	margin-left:47px;
	
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}








/* all effect dive */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #ecf0f7 0%, #bdcade 100%);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 180px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: brown;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Demo Section */
.audio-processor {
    background-color: white;
    border-radius: 10px;
    background: linear-gradient(135deg, #ecf0f7 0%, #bdcade 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-top: 30px;
}

.upload-section {
    margin-bottom: 20px;
}

.upload-box {
    border: 2px dashed var(--light-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p1 {
    color: rgb(0, 0, 0);
    line-height: 1.5;
    text-align: left;
    margin: 15px 0;
}

.upload-box:hover {
    border-color: var(--primary-color);
    background-color: rgba(72, 60, 160, 0.122);
}

.upload-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.upload-box p {
    color: var(--gray-color);
    margin: 10px 0;
}

#audioUpload {
    display: none;
}

.file-info {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    min-height: 80px;
}

.controls-section {
    margin-bottom: 20px;
}

.effect-control {
    margin-bottom: 15px;
}

.effect-control label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.effect-control input[type="range"] {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    background-color: black;
    border-radius: 5px;
    outline: none;
}

.effect-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.effect-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.player-section {
    text-align: center;
}

.visualizer {
    width: 100%;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 5px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Testimonials Section */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
    display: block;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 30px;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-gray);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    text-align: left;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
    text-align: left;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-color);
    cursor: pointer;
    padding: 5px 15px;
}

.slider-btn:hover {
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact .container {
    display: flex;
    gap: 50px;
}

.contact-content {
    flex: 2;
}

.contact-info {
    flex: 1;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer p {
    color: var(--light-gray);
    max-width: 400px;
    text-align: left;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.link-group h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: left;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 10px;
    text-align: left;
}

.link-group ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-group ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    /* Laptop adjustments */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        max-width: 400px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    /* Tablet adjustments */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content h1,
    .hero-content p {
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-secondary {
        float: none;
        margin-top: 10px;
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .testimonial {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Small tablet adjustments */
    .header .container {
        padding: 10px 15px;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
    }
    
    .nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .quote {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Mobile adjustments */
    .header {
			
        margin-top: 0;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        width: 100%;
    }
    
    .effect-buttons {
        flex-direction: column;
    }
    
    .effect-buttons .btn {
        width: 100%;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    /* Small mobile adjustments */
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .upload-box {
        padding: 20px 10px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}