/* Basic CSS reset and common styles */

/* Headings */
.markdown h1 {
  font-size: 2rem;       /* ~32px */
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.markdown h2 {
  font-size: 1.75rem;    /* ~28px */
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.markdown h3 {
  font-size: 1.5rem;     /* ~24px */
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.markdown h4 {
  font-size: 1.25rem;    /* ~20px */
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
.markdown p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #374151; /* Tailwind's gray-700 */
}

/* Lists */
.markdown ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.markdown ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.markdown li {
  margin-bottom: 0.5rem;
}

/* Links */
.markdown a {
  color: #2563eb; /* Tailwind's blue-600 */
  text-decoration: underline;
}

#logo a:focus {
  outline: none;
  
}

.gradient-bg 
{
            background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(108, 35, 107) 100%);
}
.card-hover {
   transition: all 0.3s ease;
}

.card-hover::after {
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    135deg,
    #6A97F2 0%,
    #5B8DEF  100%
  );
  transform: scaleX(0);
  transform-origin: left; 
  transition: transform 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-hover:hover::after {
  transform: scaleX(1);
}
/* Mobile styles below 1134px */
@media (max-width: 1134px) {
.search-bar {
    display: block;
}
.desktop-menu {
    display: none !important;
}
.mobile-menu-btn {
    display: block !important;
}
.mobile-menu-dropdown {
    display: none;
    transition: all 0.3s ease-in-out;
}
.mobile-menu-dropdown.active {
    display: block;
}
.desktop-login-buttons {
    display: none !important;
}
}
@media (max-width: 445px) {
	.search-bar
        {
           //display: none;   
        }
        .logo-text
        {
        	display: none;  
        }
        
}

 @media (min-width: 1135px)  {
  .mobile-menu-btn {
    display: none; 
	}
}
