/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}
/* Hero Section */


/* Services Section */
.services {
    padding: 8rem 5%;
    text-align: center;
    background: #f8f9fa;
}

.services h2, .contact h2, .about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    color: #333;
    position: relative;
}

.service-card h3, .about-service-item h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: #333;
}

/* Update media queries */
@media (max-width: 768px) {
    .services h2, .contact h2, .about-text h2 {
        margin-bottom: 2.5rem;
    }

    .service-card h3, .about-service-item h3 {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services h2, .contact h2, .about-text h2 {
        margin-bottom: 2rem;
    }

    .service-card h3, .about-service-item h3 {
        margin-bottom: 0.6rem;
    }
}
.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #007bff, #00bfff);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.service-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #007bff, #00bfff);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding: 2rem 3rem;
}

.contact-intro::before,
.contact-intro::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: #6C3CE1;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.contact-intro::before {
    left: 0;
    top: -1rem;
}

.contact-intro::after {
    right: 0;
    bottom: -2rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #007bff, #00bfff);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Footer */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .footer-logo-img {
        width: 100px;
    }
    
    .footer-logo span {
        font-size: 1.2rem;
    }
}

.footer {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 4rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.footer-social {
    margin-bottom: 2rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 5%;
    }
    
    .footer-social a {
        margin: 0 0.5rem;
    }
    
    .footer-links a {
        display: block;
        margin: 1rem 0;
    }
}


.service-features {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #6C3CE1;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    transition: all 0.5s ease;
    animation: colorChange 10s infinite alternate;
}

.feature-card:nth-child(1) {
    animation-delay: 0s;
}

.feature-card:nth-child(2) {
    animation-delay: 2s;
}

.feature-card:nth-child(3) {
    animation-delay: 4s;
}

.feature-card:nth-child(4) {
    animation-delay: 6s;
}

@keyframes colorChange {
    0% { background: #6C3CE1; }
    25% { background: #00C853; }
    50% { background: #686de0; }
    75% { background: #7158e2; }
    100% { background: #5f27cd; }
}

/* Reset these classes as they're no longer needed */
.feature-card.highlight {
    /* removed static green background */
}

.feature-card:hover {
    transform: translateY(-5px);
    animation-play-state: paused;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.faq {
    padding: 6rem 5%;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #6C3CE1, #8B5CF6);
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #6C3CE1;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: #6C3CE1;
    border-color: #6C3CE1;
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-question i {
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 5%;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

.experience-heading {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: #6C3CE1;
    margin: 1.5rem 0 2rem;
    line-height: 1.3;
    font-weight: 600;
}

@media (max-width: 768px) {
    .experience-heading {
        font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    }
}
/* Timeline Section */
.roadmap {
    padding: 6rem 5%;
    background: #f8f9fa;
    position: relative;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
}

.roadmap-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.roadmap-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #6C3CE1, #8B5CF6);
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #6C3CE1;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin: 2rem 0;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #6C3CE1;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: calc(100% - 20px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 15px 0 10px;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.timeline-content li {
    position: relative;
    padding-left: 25px;
    margin: 10px 0;
    color: #666;
    line-height: 1.6;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6C3CE1;
    font-size: 1.1em;
}


@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .timeline-content {
        width: 100%;
    }
}
/* Pricing Section */

.pricing {
    padding: 6rem 5%;
    background: white;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
}

.pricing-header p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #6C3CE1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.price {
    margin: 2rem 0;
}

.price .currency {
    font-size: 1.5rem;
    color: #6C3CE1;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
}

.price .period {
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #666;
}

.pricing-features i {
    color: #6C3CE1;
    margin-right: 0.5rem;
}

.pricing-button {
    background: #6C3CE1;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: #5731b3;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: auto;
        transform: none;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* Testimonials Section */

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.header-line {
    width: 100%;
    height: 3px;
    background: #ddd;
    position: relative;
    margin: 1rem auto;
    max-width: 200px;
}

.header-line::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #6C3CE1;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-header p {
    color: #666;
    font-size: clamp(1rem, 3vw, 1.1rem);
    max-width: 600px;
    margin: 1rem auto 0;
}

@media (max-width: 768px) {
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .header-line {
        max-width: 150px;
    }
}

.testimonials {
    padding: 6rem 5%;
    background: #f8f9fa;
    text-align: center;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(100% / 3 - 2rem); /* Default: 3 cards */
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

/* Dots Navigation */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #6C3CE1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(100% / 2 - 2rem); /* Show 2 cards */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* Show 1 card */
    }
}



.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 5%;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

.experience-heading {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: #6C3CE1;
    margin: 1.5rem 0 2rem;
    line-height: 1.3;
    font-weight: 600;
}

@media (max-width: 768px) {
    .experience-heading {
        font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    }
}
/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 1rem 0;
        text-align: center;
    }

    /* Sections padding adjustment */
    .services, .about, .pricing, .contact, .testimonials, .faq {
        padding: 4rem 1.5rem;
    }

    /* Grid adjustments */
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Form adjustments */
    .contact-form {
        padding: 0 1rem;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .pricing-card {
        margin: 1rem 0;
    }

    .footer-content {
        padding: 2rem 1rem;
    }
}

.analytics-section {
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}

.analytics-header {
    margin-bottom: 40px;
}

.analytics-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.analytics-header p {
    color: #666;
    font-size: 1.1rem;
}

.analytics-image {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.analytics-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}


/* Blog Section Styles */
.blog-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-menu {
    margin: 30px 0;
}

.blog-filter {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.blog-filter.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin: 0 0 15px;
    font-size: 1.4em;
    color: #333;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}