
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      color: #333;
    }
    /* Navbar */
    .navbar {
      font-size: 14px;
      padding: 0.6rem 0;
      background: linear-gradient(90deg, #f6d365, #fda085);
    }
    .navbar-nav .nav-link {
      padding: 0.6rem 1rem;
      font-weight: 500;
      color: #fff !important;
    }
    .navbar-brand img {
      max-height: 60px;
    }
    .navbar .btn {
      font-size: 13px;
      padding: 4px 12px;
      border-radius: 20px;
    }
    /* Hero Section */
    .hero img {
      width: 100%;
      height: auto;
      border-radius: 0;
      object-fit: cover;
    }
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      max-width: 700px;
    }
    .hero-text h6 {
      letter-spacing: 1px;
      font-weight: 600;
    }
    .hero-text h1 {
      font-weight: 700;
      font-size: 2.3rem;
      margin-top: 10px;
    }
    /* Sections */
    .section-padding {
      padding: 70px 0;
    }
    .bg-light-gray {
      background: #f9f9f9;
    }
    .icon-box {
      font-size: 40px;
      color: #f39c12;
      margin-bottom: 15px;
    }
    /* Trial Section */
    .trial-box {
      background: linear-gradient(120deg, #a1c4fd, #c2e9fb);
      color: #222;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .trial-box .btn {
      margin: 5px;
      transition: all 0.3s ease;
      border-radius: 25px;
    }
    .trial-box .btn:hover {
      transform: translateY(-2px);
    }
    /* Blog Items */
    .blog-item {
      transition: all 0.3s ease;
    }
    .blog-item img {
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .blog-item:hover {
      transform: translateY(-4px);
    }
    /* Footer */
    .footer {
      background: linear-gradient(90deg, #667eea, #764ba2);
      color: #eee;
      padding: 50px 0 20px;
      font-size: 14px;
    }
    .footer h6 {
      font-weight: 600;
      color: white;
    }
    .footer a {
      color: #ddd;
      transition: color 0.3s ease;
    }
    .footer a:hover {
      color: #fff;
    }

/* login */

    /* Navbar */
    .navbar {
      background: linear-gradient(90deg, #f6d365, #fda085);
    }
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
    }
    /* Registration form container */
    .register-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(120deg, #a1c4fd, #c2e9fb);
    }
    .register-card {
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      max-width: 500px;
      width: 100%;
    }
    .register-card h4 {
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
    }
    .form-control {
      border-radius: 25px;
    }
    .btn-primary {
      background: linear-gradient(90deg, #667eea, #764ba2);
      border: none;
      border-radius: 25px;
      transition: 0.3s;
    }
    .btn-primary:hover {
      opacity: 0.9;
    }
  
  /* Additional styles for pricing */
    .pricing-section {
      background: linear-gradient(120deg, #fdfbfb, #ebedee);
      padding: 60px 0;
    }
    .pricing-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: 0.3s;
      text-align: center;
    }
    .pricing-card:hover {
      transform: translateY(-5px);
    }
    .pricing-price {
      font-size: 2rem;
      font-weight: bold;
      margin: 20px 0;
    }
    .discount {
      font-size: 0.9rem;
      color: #28a745;
      font-weight: 500;
    }
    .popular {
      border: 2px solid #667eea;
    }
	body { background:#f8f9fa; }
    .card { border:0; border-radius:1rem; box-shadow:0 10px 25px rgba(0,0,0,.06); }
    .form-section-title { font-size: .95rem; font-weight:700; color:#6c757d; text-transform:uppercase; letter-spacing:.04em; }
    .required::after { content:" *"; color:#dc3545; }
    .register-section { padding:40px 0; }
    footer { background:#343a40; color:#fff; padding:15px 0; text-align:center; margin-top:40px; }

    /* === Tabs as Boxed Buttons === */
    .nav-tabs {
      border-bottom: none;
      margin-bottom: 1rem;
      justify-content: flex-start;
      flex-wrap: wrap;
    }
    .nav-tabs .nav-link {
      background: #fff;
      border: 1px solid #dee2e6;
      border-radius: 0.5rem;
      margin: 0.3rem;
      padding: 0.6rem 1.2rem;
      color: #495057;
      font-weight: 600;
      transition: all 0.2s ease-in-out;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .nav-tabs .nav-link:hover {
      background: #f1f5ff;
      border-color: #007bff;
      color: #007bff;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav-tabs .nav-link.active {
      background: #007bff;
      color: #fff;
      border-color: #007bff;
      box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    }
    .tab-pane {
      border: 1px solid #dee2e6;
      border-radius: 0.7rem;
      background: #fff;
      padding: 1.5rem;
      margin-top: -0.5rem;
      box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    }
	
	  body {
      background-color: #f8f9fa;
    }
    .search-results {
      margin-top: 30px;
    }
    .search-result-item {
      padding: 15px;
      border-bottom: 1px solid #dee2e6;
    }
    .search-result-item h5 {
      margin-bottom: 5px;
    }
    .search-result-item p {
      margin-bottom: 0;
      color: #6c757d;
    }
	
	user-links {
      background: #f8f9fa;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .user-links h4 {
      margin-bottom: 20px;
      font-weight: 600;
      color: #343a40;
    }
    .user-links a {
      display: block;
      padding: 12px 15px;
      margin-bottom: 12px;
      border-radius: 8px;
      text-decoration: none;
      color: #495057;
      background: #ffffff;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    .user-links a:hover {
      background: #007bff;
      color: #fff;
      border-color: #007bff;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,123,255,0.2);
    }
    
    .navbar-dark .navbar-toggler{
        border-color:#fff !important;
        color:#fff !important;
    }
    
    @media (max-width: 768px) {
    .section-padding{
        padding:30px 0 !important;
    }
}
