/* Minimoc Technologies - Complete Styling */

:root {
    --primary-color: #2E7D5A;
    --secondary-color: #4A90A4;
    --accent-color: #F4A460;
    --text-primary: #2C3E50;
    --text-secondary: #546E7A;
    --bg-light: #F8FFFE;
    --bg-gradient: linear-gradient(135deg, #2E7D5A 0%, #4A90A4 100%);
    --vata-color: #FF6B6B;
    --pitta-color: #FFE66D;
    --kapha-color: #4ECDC4;
    --shadow-light: 0 4px 15px rgba(46, 125, 90, 0.1);
    --shadow-medium: 0 8px 30px rgba(46, 125, 90, 0.15);
    --shadow-heavy: 0 15px 50px rgba(46, 125, 90, 0.2);
    --transition-smooth: all 0.3s ease;
}

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

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

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.sanskrit {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: var(--accent-color);
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-tagline {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.7rem;
    color: var(--accent-color);
    margin-top: -5px;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(46, 125, 90, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.device-showcase {
    position: relative;
    text-align: center;
}

.device-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: #E09142;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    color: white !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-3px);
}

/* Sensor Cards */
.sensor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
    text-align: center;
}

.sensor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.sensor-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.sensor-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sensor-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.sensor-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.sensor-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Dosha Cards */
.dosha-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    padding: 3rem;
    margin-bottom: 3rem;
    transition: var(--transition-smooth);
}

.dosha-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.vata-card {
    border-left: 5px solid var(--vata-color);
}

.pitta-card {
    border-left: 5px solid var(--pitta-color);
}

.kapha-card {
    border-left: 5px solid var(--kapha-color);
}

.dosha-symbol {
    text-align: center;
}

.dosha-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
}

.vata-icon {
    background: linear-gradient(135deg, var(--vata-color) 0%, #FF8E8E 100%);
}

.pitta-icon {
    background: linear-gradient(135deg, var(--pitta-color) 0%, #FFC107 100%);
}

.kapha-icon {
    background: linear-gradient(135deg, var(--kapha-color) 0%, #44A08D 100%);
}

.dosha-symbol h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Technology Cards */
.tech-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.tech-card h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.tech-card ul {
    list-style: none;
    padding: 0;
}

.tech-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.tech-card li:last-child {
    border-bottom: none;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 90, 0.25);
}

.contact-info {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer .brand-tagline {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 1rem;
    color: white;
    transition: var(--transition-smooth);
    margin-bottom: 0.5rem;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Statistics */
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .dosha-card, .sensor-card, .tech-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .btn-primary, .btn-outline-light {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        text-align: center;
    }

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

    .section-title {
        font-size: 1.5rem;
    }
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Technology Highlights */
.tech-highlight {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.tech-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Use Case Cards */
.use-case-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.use-case-card h4 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Stat Cards */
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Dosha Previews */
.dosha-preview {
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.dosha-preview:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* CTA Buttons */
.cta-buttons .btn {
    margin: 0.5rem;
}

@media (max-width: 768px) {
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Utility Classes */
.text-success { color: #28a745 !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: var(--vata-color) !important; }
.text-info { color: var(--kapha-color) !important; }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive Improvements */
@media (max-width: 576px) {
    .hero-stats {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .use-case-card, .tech-highlight {
        padding: 1.5rem;
    }
}