/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to right, #1e1e1e, #2e2e2e);
    padding: 0 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #00ff99;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #ccc;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #00ff99;
    border: 2px solid #00ff99;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #00ff99;
}

.btn-primary:hover {
    background-color: transparent;
    color: #00ff99;
}

.btn-secondary:hover {
    background-color: #00ff99;
    color: #121212;
}

.hero-image img {
    width: 400px;
    animation: float 3s ease-in-out infinite;
}

/* Image floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.feature-box {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
}

.features-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #00ff99;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-box {
    background-color: #2e2e2e;
    padding: 30px;
    border-radius: 10px;
    max-width: 300px;
    flex: 1;
    margin: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00ff99;
}

.feature-box p {
    font-size: 1rem;
    color: #ccc;
}

/* How It Works Section */
.step {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
}

.how-it-works-section {
    padding: 80px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.how-it-works-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    flex-basis: 30%;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 60px;
    margin-bottom: 20px;
}

.step-icon img {
    width: 100%;
}

.step-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.step-details p {
    font-size: 1rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-it-works-steps {
        flex-direction: column;
    }

    .step {
        flex-basis: 100%;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.prev:hover, button.next:hover {
    background-color: #555;
}

button.prev {
    left: 0;
}

button.next {
    right: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 20px;
    background-color: #f4f4f9;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    min-width: 250px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #444;
}

.price {
    font-size: 2.5rem;
    color: #555;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #888;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    font-size: 1.1rem;
    color: #666;
    margin: 10px 0;
}

.choose-plan {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.choose-plan:hover {
    background-color: #555;
}

/* Highlight Pro Plan */
.highlighted {
    background-color: #f9f9ff;
    border: 2px solid #333;
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f9c74f;
}

.footer-column p {
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: #bbb;
}
