/* Gradient backgrounds */
.bg-gradient-blue { background: linear-gradient(135deg, #113253, #2670BA) !important; }
.bg-gradient-purple   { background: linear-gradient(135deg, #6365B5, #3D3E82) !important; }
.bg-gradient-green  { background: linear-gradient(135deg, #1781C3, #265F83) !important; }
.bg-gradient-orange { background: linear-gradient(135deg, #FF9800, #F57C00) !important; }
.bg-gradient-dark-purple    { background: linear-gradient(135deg, #380F59, #5F278C) !important; }
.bg-gradient-teal   { background: linear-gradient(135deg, #4facfe, #00f2fe) !important; }
.bg-gradient-indigo { background: linear-gradient(135deg, #490552, #80288C) !important; }
.bg-gradient-cyan   { background: linear-gradient(135deg, #74b9ff, #0984e3) !important; }

/* Logo circle */
.logo-circle {
  width: 100px;
  height: 100px;
  @media (min-width:500px) and (max-width: 1024px) {
    width: 80px;
    height: 80px;
  }
}
img.logo-circle {
    border-radius: 0 !important;
}
/* Card container */

.uni-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 8px !important;
}

.uni-card:hover {
  transform: scale(1.04); /* Approx 5px zoom for 250-300px wide cards */
  z-index:2;
  box-shadow: 0 5px 10px rgba(14, 14, 14, 0.2); /* Optional shadow on hover */
}

.card-text-box{
  min-height: 40px;
  @media (max-width:1024px) {
    min-height: 120px;
  }
  @media(min-width:1025px) and (max-width:1440px)
  {
    min-height: 125px;
  }
  @media (min-width:1450px) {
    min-height: 120px;
  }
}
/* Title */
.uni-card-title {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500 !important;
  
}

/* Subtext */
.card-text {
  font-size: 14px;
  padding: 4px 0;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  
}

/* Button */
.uni-card-btn 
{
    padding: 5px 18px;
    border-radius: 8px;
    font-size: 14px !important;
    background: transparent;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1);
    
}

.uni-card-btn:hover
{
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2) !important;
}

body.dark-mode .no-dark-reset[style*="background"] {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1) !important;
    filter: none !important;
}
.owl-stage{
  margin: 5px 0px;
}

/* // card simmer effects */
.card-shimmer {
      border-radius: 15px;
      height: 160px;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      
      animation: shimmer 1.5s infinite;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      border: 1px solid #e9ecef;
      position: relative;
      overflow: hidden;
    }

    @keyframes shimmer {
      0% { 
        background-position: 200% 0; 
      }
      100% { 
        background-position: -200% 0; 
      }
    }

    /* Top section with logo and text */
    .shimmer-top {
      display: flex;
      flex-direction: row;
      gap: 30px;
      word-spacing: 0em;
      padding: 20px 0;
    }

    .shimmer-logo {
      width: 90px;
      height: 90px;
      background: linear-gradient(90deg, #d1d5db 25%, #e5e7eb 50%, #d1d5db 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    .shimmer-text {
      background: linear-gradient(90deg, #d1d5db 25%, #e5e7eb 50%, #d1d5db 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 6px;
      margin-bottom: 8px;
    }

    .shimmer-text.title {
      height: 20px;
      width: 200px;
      @media (max-width:768px) {
        width: 180px;
      }
      @media (min-width:768px) and (max-width:1024px) {
        width:130px
      }
    }

    .shimmer-text.subtitle {
      height: 16px;
      width: 150px;
      margin: 5px 0;
    }

    /* Bottom button */
    .shimmer-btn {
      width: 100px;
      height: 30px;
      background: linear-gradient(90deg, #d1d5db 25%, #e5e7eb 50%, #d1d5db 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 18px;
      align-self: flex-start;
      margin-top: 10px;
    }

    /* Staggered animation delays for more realistic effect */
    .card-shimmer:nth-child(1) {
      animation-delay: 0s;
    }
    
    .card-shimmer:nth-child(2) {
      animation-delay: 0.2s;
    }
    
    .card-shimmer:nth-child(3) {
      animation-delay: 0.4s;
    }
    
    .card-shimmer:nth-child(4) {
      animation-delay: 0.6s;
    }

    .card-shimmer:nth-child(1) .shimmer-logo,
    .card-shimmer:nth-child(1) .shimmer-text,
    .card-shimmer:nth-child(1) .shimmer-btn {
      animation-delay: 0s;
    }
    
    .card-shimmer:nth-child(2) .shimmer-logo,
    .card-shimmer:nth-child(2) .shimmer-text,
    .card-shimmer:nth-child(2) .shimmer-btn {
      animation-delay: 0.2s;
    }
    
    .card-shimmer:nth-child(3) .shimmer-logo,
    .card-shimmer:nth-child(3) .shimmer-text,
    .card-shimmer:nth-child(3) .shimmer-btn {
      animation-delay: 0.4s;
    }

    /* Optional: Pulse effect for variety */
    .card-shimmer.pulse-variant {
      animation: pulse 2s infinite;
      background: #f1f5f9;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.7;
      }
    }

    .pulse-variant .shimmer-logo,
    .pulse-variant .shimmer-text,
    .pulse-variant .shimmer-btn {
      background: #e2e8f0;
      animation: pulse 2s infinite;
    }