/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #111827;
    font-weight: 700;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px; /* Set a fixed height for the navbar */
}

.logo {
    display: flex;
    align-items: center;
    height: auto;
}


.logo img {
    height: 100px; /* Increase this value as needed */
    max-height: 90%; /* Prevents logo from overflowing navbar */
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 8rem 0 6rem;
    color: var(--white);
    margin-top: 60px; /* Account for fixed navbar */
}


.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E3F2FD; /* Light cyan for better contrast */
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #DCE3EA; /* Soft grayish-white for readability */
    opacity: 0.9;
}


.hero-section .cta-button {
    background: linear-gradient(135deg, #1E88E5, #42A5F5); /* Gradient Blue */
    color: #FFFFFF; /* White text for contrast */
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}



.hero-section .cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1565C0, #1E88E5); /* Darker Blue on Hover */
}

/* CTA Buttons Wrapper */
.cta-buttons {
    display: flex;
    gap: 1rem; /* Space between buttons */
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* CLI Button Specific Styles */
.cli-button {
    background: linear-gradient(135deg, #43A047, #66BB6A); /* Green gradient */
}

.cli-button:hover {
    background: linear-gradient(135deg, #2E7D32, #43A047); /* Darker Green */
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    transition: var(--transition);
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.icon-circle i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Process Section */
.process-section {
    background: var(--gray-50);
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Results Section */
.results-section {
    padding: 5rem 0;
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    transition: var(--transition);
}

.metric {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-50);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(37, 99, 235, 0.02);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f6f9ff 0%, #f1f5ff 100%);
}

.contact-container {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #eef2ff;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8faff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Submit Button */
.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.submit-button.loading {
    background: #4b70dd;
    pointer-events: none;
}

.submit-button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    right: 1rem;
}

.submit-button.success {
    background: #22c55e;
}

.submit-button.error {
    background: #ef4444;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .benefits-grid,
    .process-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 1.5rem;
    }
}

/* Additional Hover Effects */
.benefit-card:hover,
.process-card:hover,
.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: #0099ff;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    font-size: 40px;
    color: #0099ff;
}

.author-info h4 {
    color: #2d3748;
    font-size: 18px;
    margin: 0;
}

.author-info p {
    color: #718096;
    font-size: 14px;
    margin: 5px 0 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a3a3a3;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
    background: #333;
    color: #ffffff;
}

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

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #a3a3a3;
}

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

.legal-links a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}


/* Policy Pages Styles */
.policy-container {
    max-width: 1000px;
    margin: 80px auto 40px;
    padding: 2rem;
}

.policy-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: left;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.cookie-table th {
    background-color: var(--gray-50);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: var(--gray-50);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 1rem;
        margin: 60px auto 20px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}



/* Documentation Page Specific Styles */
.code-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    border-left: 4px solid var(--primary-color);
    overflow: hidden;
}

.code-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.code-block pre {
    margin: 0;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-block code {
    font-family: 'Courier New', monospace;
    color: #333;
    display: block;
    line-height: 1.6;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-button:hover {
    background: var(--primary-color);
    color: white;
}

.policy-container {
    margin-top: 0;
    padding-top: 3rem;
}

.policy-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.5rem;
}

.policy-container h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

.policy-container ul,
.policy-container ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-container li {
    margin-bottom: 0.5rem;
}

.policy-container p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cta-button {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 1rem;
    }

    .code-block {
        padding: 1rem;
    }

    .policy-container h2 {
        font-size: 1.8rem;
    }

    .policy-container h3 {
        font-size: 1.3rem;
    }
}

