/* Reset and Base Styles */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6584;
    --accent-color: #00D9F5;
    --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #00D9F5 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6584 0%, #FFB199 100%);
    --text-dark: #2D3142;
    --text-light: #FFFFFF;
    --background-light: #F7F9FC;
    --card-shadow: 0 10px 20px rgba(108, 99, 255, 0.1);
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border: none;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-contact-number a {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1rem;
}

.nav-contact-number a i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F0FE 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subheadline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--text-light);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.demo-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.carousel-caption h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.carousel-caption p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 2;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F0FE 100%);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    background: var(--text-light);
    padding: 3rem 2rem 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.10);
    text-align: center;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    border: 2px solid transparent;
}

.pricing-card .plan-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 1.2rem 0 1.5rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.2rem;
}

.pricing-card .currency {
    font-size: 1.5rem;
    font-weight: 600;
}
.pricing-card .amount {
    font-size: 3rem;
    font-weight: 800;
}
.pricing-card .period {
    font-size: 1.1rem;
    font-weight: 400;
    color: #888;
    background: none;
    -webkit-text-fill-color: initial;
}

.pricing-card .features-list {
    list-style: none;
    margin: 2rem 0 2.5rem 0;
    padding: 0;
    text-align: left;
}

.pricing-card .features-list li {
    margin-bottom: 1rem;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-dark);
}

.pricing-card .features-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-card.featured {
    border: 2.5px solid var(--secondary-color);
    background: linear-gradient(135deg, #fff 60%, #ffe3ec 100%);
    box-shadow: 0 12px 40px rgba(255, 101, 132, 0.10);
    transform: scale(1.04);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 48px rgba(108, 99, 255, 0.18);
    border-color: var(--primary-color);
}

.pricing-card.featured:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(255, 101, 132, 0.18);
}

.pricing-card .btn {
    margin-top: 1.5rem;
    width: 80%;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .pricing-card .btn {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--text-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F0FE 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* Footer CTA */
.footer-cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        position: relative;
        z-index: 1001;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        background: var(--text-light);
        flex-direction: column;
        text-align: right;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        padding: 1.5rem 2rem;
        z-index: 2000;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .nav-contact-number {
        justify-content: flex-end;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .demo-carousel {
        padding: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
    
    .carousel-caption {
        position: relative;
        background: var(--primary-color);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .pricing-card, .testimonial-card {
    animation: fadeIn 1s ease-out;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

#formMessage {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 500px) {
    .modal-content {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: 98vw;
    }
} 