:root {
    --primary-gradient: linear-gradient(135deg, #cb11a036 0%, #c86dc82e 100%); 
    --primary-gradient2: linear-gradient(135deg, #cb11a0 0%, #c86dc8 100%); 
    --accent-color: #ff00cc; 
    --glass-bg: rgba(255, 255, 255, 0.9);
    --text-dark: #2d3436;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
}

.text-gradient{
    background: linear-gradient(90deg, #ee00ff, #f04305 , #cc05f4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  .prim{
    color: #6a11cb;
  }
.mt{
    margin-top: 100px;
}
/* Hero Section */
.course-hero {
    background: var(--primary-gradient);
    padding: 80px 0 120px 0;
    color: white;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.badge-live {
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Course Card Styles */
.main-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: -80px;
    padding: 30px;
    border: none;
}

.info-box {
    background: #f1f2f6;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    border-right: 5px solid #6a11cb;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.schedule-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a11cb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.purchase-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.btn-buy-premium {
    background: var(--primary-gradient2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    width: 100%;
    transition: transform 0.3s;
}

.btn-buy-premium:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

/* Accordion Style */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: #f3e5f5;
    color: #6a11cb;
}

.course-img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}



















  .divider-custom {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #d946ef, #8b5cf6);
    border-radius: 2px;
  }

  .custom-input {
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
  }

  .custom-input:focus {
    border-color: #d946ef !important;
    box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.1) !important;
    background-color: #fff !important;
  }

  .comment-item {
    transition: transform 0.2s ease;
  }

  .comment-item:hover {
    transform: translateX(-5px); 
  }

  
  .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
  }
  
  .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  @media (max-width: 991.98px) {
    .comment-item:hover {
      transform: none;
    }
  }

.star-rating .bi-star-fill {
    color: #ffc107; 
  }
  
  .star-rating .bi-star {
    color: #dee2e6; 
  }
  

  .star-rating i {
    transition: transform 0.1s ease, color 0.2s ease;
  }
  
  .star-rating i:hover {
    transform: scale(1.2);
  }
  