

 /* Custom CSS Variables */
      :root {
        --primary-50: #eff6ff;
        --primary-100: #dbeafe;
        --primary-200: #bfdbfe;
        --primary-300: #93c5fd;
        --primary-400: #60a5fa;
        --primary-500: #3b82f6;
        --primary-600: #2563eb;
        --primary-700: #1d4ed8;
        --primary-800: #1e40af;
        --primary-900: #1e3a8a;
        
        --health-50: #f0fdf4;
        --health-100: #dcfce7;
        --health-200: #bbf7d0;
        --health-300: #86efac;
        --health-400: #4ade80;
        --health-500: #22c55e;
        --health-600: #16a34a;
        --health-700: #15803d;
        --health-800: #166534;
        --health-900: #14532d;
      }

      /* Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      html {
        scroll-behavior: smooth;
      }
      
    body {
  min-height: 100vh; /* equivalent of min-h-screen */
background:#eff6ff;
    }


      /* Navigation Styles */
      .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .navbar-brand {
        font-weight: 700;
        color: #1f2937 !important;
      }

      .navbar-nav .nav-link {
        color: #4b5563 !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
      }

      .navbar-nav .nav-link:hover,
      .navbar-nav .nav-link.active {
        color: var(--primary-600) !important;
        background-color: var(--primary-50);
      }

      .logo-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--primary-500), var(--health-500));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
      }

      .logo-icon img {
        border-radius: 50%;
        width: 100%;
      
        object-fit: cover;
      }
.try-it-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .try-it-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            color: white;
        }
        
        .try-it-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .try-it-btn:hover::before {
            left: 100%;
        }
        
        .try-it-btn:active {
            transform: translateY(0);
        }
      /* Hero Section */
      .hero-section {
        padding: 120px 0 80px;
      
        color: white;
        position: relative;
        overflow: hidden;
      }

      .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill=%27%23ffffff%27 fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
      }

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

      .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
         font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
      }

      .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
        opacity: 0.9;
          font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
      }

      .gradient-text {
  font-size: 3rem; /* Adjust as needed */
  font-weight: bold;
 background: linear-gradient(to right, #2563eb, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
      }

      /* Button Styles */
      .btn-primary-custom {
        background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
        border: none;
        color: white;
        font-weight: 600;
        padding: 12px 32px;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
      }

      .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        color: white;
      }

      .btn-health-custom {
       background: linear-gradient(to right, #222afb, #6a1be9);

        border: none;
        color: white;
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
      }

      .btn-health-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
        color: white;
      }

      /* Input Styles */
      .symptom-input-container {
        position: relative;
        max-width: 600px;
        margin: 0 auto 2rem;
      }

      .symptom-input {
        width: 100%;
        padding: 16px 140px 16px 24px;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.9);
        color: #1f2937;
        transition: all 0.3s ease;
      }

      .symptom-input:focus {
        outline: none;
        border-color: var(--primary-400);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        background: white;
      }

      .symptom-input::placeholder {
        color: #6b7280;
      }

      .check-btn {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
        border: none;
        color: white;
        padding: 10px 20px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
      }

      .check-btn:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
      }

      /* Stats Section */
      .stats-section {
        margin: 3rem 0;
      }

      .stat-item {
        text-align: center;
        padding: 1rem;
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .stat-number.primary { color: var(--primary-600); }
      .stat-number.health { color: var(--health-600); }
      .stat-number.purple { color: #8b5cf6; }

      .stat-label {
        color: #6b7280;
        font-weight: 500;
      }

      /* Card Styles */
      .custom-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: none;
        overflow: hidden;
      }

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

      .card-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: transform 0.3s ease;
      }

      .custom-card:hover .card-icon {
        transform: scale(1.1);
      }

      .icon-primary { background: linear-gradient(135deg, var(--primary-500), var(--primary-600)); }
      .icon-health { background: linear-gradient(135deg, var(--health-500), var(--health-600)); }
      .icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
      .icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
      .icon-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
      .icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

      .card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
      }

      .card-text {
        color: #6b7280;
        margin-bottom: 1.5rem;
      }

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

      .feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        color: #6b7280;
      }

      .feature-list .check-icon {
        color: var(--health-500);
        margin-right: 0.5rem;
        font-size: 0.9rem;
      }

      /* Section Styles */
      .section-padding {
        padding: 80px 0;
      }

      .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
        text-align: center;
      }

      .section-subtitle {
        font-size: 1.25rem;
        color: #6b7280;
        text-align: center;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .bg-gray-light {
        background-color: #f8fafc;
      }

      /* About Section */
      .about-image {
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        width: 100%;
        height: 400px;
        object-fit: cover;
      }

      .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2rem;
      }

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

      .about-stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .about-stat-number.primary { color: var(--primary-600); }
      .about-stat-number.health { color: var(--health-600); }

      /* Team Section */
      .team-member {
        text-align: center;
        margin-bottom: 2rem;
      }

      .team-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1rem;
        border: 4px solid white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .team-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.5rem;
      }

      .team-role {
        font-weight: 600;
        margin-bottom: 0.75rem;
      }

      .team-role.primary { color: var(--primary-600); }
      .team-role.health { color: var(--health-600); }
      .team-role.purple { color: #8b5cf6; }

      .team-bio {
        color: #6b7280;
        font-size: 0.9rem;
      }

      /* Values Section */
      .values-section {
        background: #f8fafc;
        border-radius: 30px;
        padding: 3rem;
        margin: 3rem 0;
      }

      .value-item {
        text-align: center;
        margin-bottom: 2rem;
      }

      .value-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
      }

      .value-icon.primary { background: var(--primary-100); color: var(--primary-600); }
      .value-icon.health { background: var(--health-100); color: var(--health-600); }
      .value-icon.purple { background: #ede9fe; color: #8b5cf6; }
      .value-icon.orange { background: #fed7aa; color: #f97316; }

      .value-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.5rem;
      }

      .value-text {
        color: #6b7280;
        font-size: 0.9rem;
      }

      /* Contact Section */
      .contact-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
      }

      .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
      }

      .contact-icon.primary { background: var(--primary-100); color: var(--primary-600); }
      .contact-icon.health { background: var(--health-100); color: var(--health-600); }
      .contact-icon.purple { background: #ede9fe; color: #8b5cf6; }

      .contact-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.5rem;
      }

      .contact-text {
        color: #6b7280;
        margin: 0;
      }

      /* Blog Section */
      .blog-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 2rem;
      }

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

      .blog-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .blog-card:hover .blog-image {
        transform: scale(1.05);
      }

      .blog-content {
        padding: 1.5rem;
      }

      .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
      }

      .blog-tag {
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .blog-tag.orange { background: #fed7aa; color: #f97316; }
      .blog-tag.health { background: var(--health-100); color: var(--health-600); }
      .blog-tag.purple { background: #ede9fe; color: #8b5cf6; }

      .blog-read-time {
        color: #9ca3af;
        font-size: 0.8rem;
      }

      .blog-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.75rem;
        transition: color 0.3s ease;
      }

      .blog-card:hover .blog-title {
        color: var(--primary-600);
      }

      .blog-excerpt {
        color: #6b7280;
        margin-bottom: 1rem;
        line-height: 1.6;
      }

      .blog-author {
        display: flex;
        align-items: center;
        color: #6b7280;
        font-size: 0.9rem;
      }

      /* Footer */
      .footer {
        background: #1f2937;
        color: white;
        padding: 3rem 0;
      }

      .footer-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .footer-link {
        color: #9ca3af;
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        margin-bottom: 0.5rem;
      }

      .footer-link:hover {
        color: white;
      }

      .footer-bottom {
        border-top: 1px solid #374151;
        margin-top: 2rem;
        padding-top: 2rem;
        text-align: center;
        color: #9ca3af;
      }

      /* Bolt Badge */
      .bolt-badge {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 64px;
        height: auto;
        z-index: 1000;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
      }

      .bolt-badge:hover {
        transform: scale(1.1);
      }

      /* Animations */
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }

      @keyframes slideUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
      }

      .animate-fade-in {
        animation: fadeIn 0.6s ease-in-out;
      }

      .animate-slide-up {
        animation: slideUp 0.8s ease-out;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .hero-title {
          font-size: 2.5rem;
        }
        
        .hero-subtitle {
          font-size: 1.1rem;
        }
        
        .symptom-input {
          padding: 14px 120px 14px 20px;
          font-size: 1rem;
        }
        
        .check-btn {
          padding: 8px 16px;
          font-size: 0.8rem;
        }
        
        .section-title {
          font-size: 2rem;
        }
        
        .about-stats {
          grid-template-columns: 1fr;
          gap: 1rem;
        }
        
        .values-section {
          padding: 2rem 1rem;
        }
      }

      @media (max-width: 576px) {
        .hero-title {
          font-size: 2rem;
        }
        
        .symptom-input {
          padding: 12px 100px 12px 16px;
        }
        
        .check-btn {
          padding: 6px 12px;
          font-size: 0.75rem;
        }
      }

      .bolt-badge {
      position: fixed;
      bottom: 10px;
      left: 10px; /* 👈 Change from right to left */
      width: 64px; /* Adjust size if needed */
      height: auto;
      z-index: 1000;
    }