:root {
    --primary-color: #2D5BFF;
    --secondary-color: #1A1A1A;
    --background-color: #FFFFFF;
    --text-color: #333333;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation Styles */
header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    background-color: var(--background-color);
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--secondary-color);
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.nav-buttons a {
    text-decoration: none;
    margin-left: 1rem;
}

.demo-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.demo-btn:hover {
    background-color: #1a4aff;
}

.login-btn {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Section Styles */
.hero {
    display: flex;
    padding: 4rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.portfolio-btn {
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
}

/* Trusted By Section */
.trusted-by {
    text-align: center;
    padding: 4rem 2rem;
}

.trusted-by h2 {
    color: #424242;
    margin-bottom: 2rem;
    font-weight: 500;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    height:50px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.client-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .client-logos {
        gap: 2rem;
    }
    
    .client-logo {
        height: 24px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }
    
    nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .demo-btn {
        display: none;
    }

    nav {
        flex-wrap: wrap;
    }

    .nav-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .nav-buttons .demo-btn {
        margin: 0;
    }
} 

/* Add these dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 1.5rem 0;
    margin: -1.5rem 0;
}

.dropdown-trigger svg {
    width: 10px;
    height: 10px;
    transition: transform 0.15s ease;
    opacity: 0.6;
}

.dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% - 0.5rem);
    left: -1rem;
    background-color: white;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.15s ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.dropdown-text {
    flex: 1;
}

.dropdown-title {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.dropdown-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Remove the previous hover border styles */
.dropdown-content a + a {
    border-top: none;
}

/* Add padding to create invisible bridge */
.dropdown::after {
    content: '';
    position: absolute;
    height: 0.5rem;
    left: 0;
    right: 0;
    bottom: -0.5rem;
} 

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.features-cta {
    text-align: center;
}

.link-with-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-with-arrow::after {
    content: '→';
    transition: transform 0.2s ease;
}

.link-with-arrow:hover::after {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features h2 {
        font-size: 2rem;
    }
} 

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.social-link {
    color: #666;
    transition: color 0.2s ease;
}

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

.footer-column h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

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

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

.footer-column ul a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

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

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

    .footer-legal {
        justify-content: center;
    }
} 

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    margin: 1rem;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #1a4aff;
}

body.modal-open {
    overflow: hidden;
} 

/* Add to your existing Modal Styles */
.confirmation-content {
    text-align: center;
    padding: 2rem 1rem;
}

.confirmation-icon {
    margin-bottom: 1.5rem;
}

.confirmation-content p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.close-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background-color: #1a4aff;
}

/* Loading spinner animation */
.spinner {
    animation: rotate 1s linear infinite;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.spinner circle {
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
} 

/* About Page Styles */
.about-hero {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-stats {
    padding: 4rem 2rem;
    background-color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.about-content {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.values {
    padding: 4rem 2rem;
    background-color: white;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.5;
}

/* Responsive styles for about page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
} 

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 2rem;
    background-color: white;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-section p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
} 