/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
header {
    background: #f5f5f5;
    border-top: 4px solid #e6a23c;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e6a23c;
}

.btn-login {
    background: #e6a23c;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-login:hover {
    background: #d4922c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a90e2 0%, #7cb9e8 100%);
    color: white;
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cloud {
    position: absolute;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cloud1 {
    top: 15%;
    width: 220px;
    height: 70px;
    animation: fade-in 2s ease-out 0.5s forwards, float-cloud 28s infinite linear -5s;
}

.cloud2 {
    top: 35%;
    width: 280px;
    height: 90px;
    animation: fade-in 2.5s ease-out 1s forwards, float-cloud-slow 42s infinite linear -15s;
}

.cloud3 {
    top: 55%;
    width: 160px;
    height: 60px;
    animation: fade-in 3s ease-out 1.5s forwards, float-cloud 32s infinite linear -25s;
}

.cloud4 {
    top: 10%;
    width: 300px;
    height: 85px;
    animation: fade-in 2.8s ease-out 0.8s forwards, float-cloud-slow 45s infinite linear -35s;
}

.cloud5 {
    top: 70%;
    width: 190px;
    height: 65px;
    animation: fade-in 3.2s ease-out 2s forwards, float-cloud 26s infinite linear -8s;
}

.cloud6 {
    top: 45%;
    width: 240px;
    height: 75px;
    animation: fade-in 2.6s ease-out 1.2s forwards, float-cloud-slow 38s infinite linear -18s;
}

@keyframes float-cloud {
    from {
        transform: translateX(-350px);
    }
    to {
        transform: translateX(calc(100vw + 350px));
    }
}

@keyframes float-cloud-slow {
    from {
        transform: translateX(-400px);
    }
    to {
        transform: translateX(calc(100vw + 400px));
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.8;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero .btn-primary {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.btn-primary {
    background: #e6a23c;
    color: white;
}

.btn-secondary {
    background: #e6a23c;
    color: white;
}

/* Capabilities Section */
.capabilities-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.capabilities-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.capability-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.capability-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Home page capability card icons */
.capability-card:nth-child(1) h3::before {
    content: "🚀 ";
    margin-right: 0.5rem;
}

.capability-card:nth-child(2) h3::before {
    content: "🔗 ";
    margin-right: 0.5rem;
}

.capability-card:nth-child(3) h3::before {
    content: "⚡ ";
    margin-right: 0.5rem;
}

.capability-card:nth-child(4) h3::before {
    content: "🏢 ";
    margin-right: 0.5rem;
}

.capability-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.learn-more {
    color: #e6a23c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #d4922c;
}

/* Inspiration Widget */
.inspiration-widget {
    padding: 3rem 0;
    background: white;
}

.quote-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#daily-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    border-left: 4px solid #e6a23c;
    padding-left: 2rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4a90e2 0%, #7cb9e8 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column;
}

.footer-info p {
    margin: 0.5rem 0;
}

.footer-info a,
.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-info a:hover,
.footer-contact a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, #4a90e2 0%, #7cb9e8 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.info-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* About page info card icons */
.info-card:nth-child(1) h3::before {
    content: "🏗️ ";
    margin-right: 0.5rem;
}

.info-card:nth-child(2) h3::before {
    content: "💻 ";
    margin-right: 0.5rem;
}

.info-card:nth-child(3) h3::before {
    content: "🤝 ";
    margin-right: 0.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e6a23c;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    justify-content: space-between;
}

.timeline-year {
    flex: 0 0 calc(50% - 4rem);
    text-align: right;
    padding-right: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e6a23c;
}

.timeline-content {
    flex: 0 0 calc(50% - 4rem);
    padding-left: 2rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 1.2rem;
    width: 16px;
    height: 16px;
    background: #e6a23c;
    border: 3px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Timeline item icons */
.timeline-item:nth-child(1) .timeline-content h3::before {
    content: "🎯 ";
    margin-right: 0.5rem;
}

.timeline-item:nth-child(2) .timeline-content h3::before {
    content: "📈 ";
    margin-right: 0.5rem;
}

.timeline-item:nth-child(3) .timeline-content h3::before {
    content: "🚀 ";
    margin-right: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

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

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: block;
}

.cta-card:hover {
    border-color: #e6a23c;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cta-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-link {
    color: #e6a23c;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Active nav link */
.nav-menu a.active {
    color: #e6a23c;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f5f5f5;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .btn-login {
        width: 100%;
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    #daily-quote {
        font-size: 1.2rem;
        padding-left: 1rem;
    }
    
    /* About page responsive */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-year {
        flex: none;
        text-align: left;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }
    
    .timeline-content {
        flex: none;
        padding-left: 0;
    }
    
    .timeline-item::after {
        left: 20px;
        top: 20px;
    }
}

/* Capabilities Page Styles */
.page-hero {
    background: linear-gradient(135deg, #4a90e2 0%, #7cb9e8 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.page-hero .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Core Services Section */
.core-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.core-services h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Service-specific icons */
.service-card:nth-child(1) h3::before {
    content: "🚀 ";
    margin-right: 0.5rem;
}

.service-card:nth-child(2) h3::before {
    content: "💼 ";
    margin-right: 0.5rem;
}

.service-card:nth-child(3) h3::before {
    content: "💰 ";
    margin-right: 0.5rem;
}

.service-card:nth-child(4) h3::before {
    content: "🗺️ ";
    margin-right: 0.5rem;
}

.service-card:nth-child(5) h3::before {
    content: "⚡ ";
    margin-right: 0.5rem;
}

.service-card:nth-child(6) h3::before {
    content: "💡 ";
    margin-right: 0.5rem;
}

.service-card:nth-child(7) h3::before {
    content: "📋 ";
    margin-right: 0.5rem;
}

.service-card:nth-child(8) h3::before {
    content: "🤖 ";
    margin-right: 0.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Technology Stack Section */
.tech-stack {
    padding: 4rem 0;
    background: white;
}

.tech-stack h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.tech-category {
    text-align: center;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: #e6a23c;
    background: #fef9f3;
}

/* Tech stack icons */
.tech-category:nth-child(1) h3::before {
    content: "⚙️ ";
    margin-right: 0.5rem;
}

.tech-category:nth-child(2) h3::before {
    content: "🎨 ";
    margin-right: 0.5rem;
}

.tech-category:nth-child(3) h3::before {
    content: "🗄️ ";
    margin-right: 0.5rem;
}

.tech-category:nth-child(4) h3::before {
    content: "💻 ";
    margin-right: 0.5rem;
}

.tech-category:nth-child(5) h3::before {
    content: "☁️ ";
    margin-right: 0.5rem;
}

.tech-category h3 {
    color: #e6a23c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-category p {
    color: #666;
    line-height: 1.6;
}

/* Project Approach Section */
.project-approach {
    padding: 4rem 0;
    background: #f8f9fa;
}

.project-approach h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-item {
    padding: 2rem;
}

/* Approach icons */
.approach-item:nth-child(1) h3::before {
    content: "🤝 ";
    margin-right: 0.5rem;
}

.approach-item:nth-child(2) h3::before {
    content: "👥 ";
    margin-right: 0.5rem;
}

.approach-item:nth-child(3) h3::before {
    content: "📈 ";
    margin-right: 0.5rem;
}

.approach-item h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-item p {
    color: #666;
    line-height: 1.8;
}

/* CTA Button on Capabilities Page */
.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #e6a23c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #d4922c;
}

/* Updated nav-links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e6a23c;
}

.nav-links a.active {
    color: #e6a23c;
    font-weight: 600;
}

/* Industry Experience Page Styles */
.primary-industry {
    padding: 4rem 0;
    background: #f8f9fa;
}

.primary-industry h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

.industry-feature {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.industry-feature h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.industry-feature .industry-icon {
    font-size: 2rem;
    display: inline-flex;
}

.industry-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.industry-details {
    list-style: none;
    padding: 0;
}

.industry-details li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.industry-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.2rem;
}

.additional-industries {
    padding: 4rem 0;
    background: white;
}

.additional-industries h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.industry-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: #e6a23c;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.industry-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-card .industry-icon {
    font-size: 1.5rem;
    display: inline-flex;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
}

.domain-expertise {
    padding: 4rem 0;
    background: #f8f9fa;
}

.domain-expertise h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.expertise-item h3 {
    color: #e6a23c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

/* Products Page Styles */
.products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-section:nth-child(even) {
    background: white;
}

.products-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fef9f3 0%, #fff 100%);
    border: 2px solid #e6a23c;
}

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

.product-header h3 {
    color: #4a90e2;
    font-size: 1.5rem;
    margin: 0;
}

.product-badge {
    background: #e6a23c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.product-links {
    margin-top: auto;
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e6a23c;
    color: #e6a23c;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #e6a23c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 162, 60, 0.3);
}

/* Coming Soon Section */
.coming-soon {
    background: white;
}

.product-status {
    margin-top: 1rem;
}

.status-tag {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Private Products Section */
.private-products {
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

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

.private-product {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e6a23c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.private-product:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.private-product h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.industry-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.private-product p {
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-featured {
        grid-column: 1;
    }
    
    .private-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Legal Pages Styles (Privacy & Terms) - Consolidated */
.legal-hero,
.terms-of-service .container > h1,
.privacy-policy .container > h1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.legal-hero h1,
.terms-of-service h1,
.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: white;
}

.privacy-policy .container > h1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 2rem;
    margin: -4rem -20px 2rem -20px;
    border-radius: 0;
}

.terms-of-service {
    padding: 4rem 0;
    background: white;
}

.terms-of-service .container > h1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 2rem;
    margin: -4rem -20px 2rem -20px;
    border-radius: 0;
}

.terms-of-service .last-updated,
.last-updated,
.legal-date {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.terms-content,
.policy-content,
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.terms-content h2,
.policy-content h2,
.legal-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    font-weight: 600;
}

.terms-content h2:first-child,
.policy-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.terms-content h3,
.policy-content h3,
.legal-section h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.terms-content p,
.policy-content p,
.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-content ul,
.policy-content ul,
.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li,
.policy-content li,
.legal-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.terms-content li strong,
.policy-content li strong {
    color: #333;
}

.terms-content .contact-info,
.policy-content .contact-info,
.contact-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e6a23c;
    margin-top: 1rem;
}

.terms-content .contact-info p,
.policy-content .contact-info p,
.contact-info-box p {
    margin: 0.5rem 0;
}

.terms-content .contact-info a,
.policy-content .contact-info a,
.contact-info-box a {
    color: #4a90e2;
    text-decoration: none;
}

.terms-content .contact-info a:hover,
.policy-content .contact-info a:hover,
.contact-info-box a:hover {
    text-decoration: underline;
}

/* Legal wrapper for backwards compatibility */
.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
    border-bottom: none;
}

/* Back to Top Button */
.back-to-top {
    text-align: center;
    padding: 2rem 0;
    background: #f8f9fa;
}

/* Privacy Policy Specific Styles (for existing page) */
.privacy-policy {
    padding: 4rem 0;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.policy-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content li strong {
    color: #333;
}

.policy-content .contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e6a23c;
    margin-top: 1rem;
}

/* Footer active link styling */
footer a.active {
    color: #e6a23c;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    color: #4a90e2;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: #f0f7ff;
    border-radius: 5px;
    border: 2px solid #4a90e2;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.email-link:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.why-contact {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e6a23c;
}

.why-contact h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-contact ul {
    list-style: none;
    padding: 0;
}

.why-contact li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.why-contact li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .email-link {
        width: 100%;
        text-align: center;
    }
}

/* App Login Page Styles */
.login-section {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.login-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.login-box h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.login-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.login-form {
    margin-bottom: 2rem;
}

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

.login-form label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.login-links {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 0.95rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.coming-soon-notice {
    background: #fef9f3;
    border: 2px solid #e6a23c;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.coming-soon-notice h3 {
    color: #e6a23c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.coming-soon-notice p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coming-soon-notice ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.coming-soon-notice li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.coming-soon-notice li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e6a23c;
    font-weight: bold;
}

.coming-soon-notice a {
    color: #4a90e2;
    text-decoration: none;
}

.coming-soon-notice a:hover {
    text-decoration: underline;
}

.security-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.security-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.security-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.security-info ul {
    list-style: none;
    padding: 0;
}

.security-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.security-info li::before {
    content: "🔒";
    position: absolute;
    left: 0;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-box {
        padding: 2rem;
    }
    
    .security-info {
        padding: 1.5rem;
    }
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-hero h1,
    .privacy-policy h1 {
        font-size: 2rem;
    }
    
    .legal-wrapper,
    .policy-content {
        padding: 2rem 1rem;
    }
    
    .legal-section h2,
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3,
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
}