.course-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
}
.course-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.course-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}
.course-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-buy-now1 {
    background-color: var(--primary);
    color: var(--dark);
    transition: background-color 0.3s ease;
    border-radius: 13px;
}
.btn-buy-now1:hover {
    background-color: var(--dark);
    color: var(--primary);
}

#courseContainer .card-title{
    font-size: 1.1rem!important;
}

.product-card {
    padding: 1rem;
}
.product-title {
    font-weight: bold;
}
.product-price {
    font-weight: bold;
}
.horizontal-line {
    margin: 0.8rem 0;
    border-top: 2px solid #d0d1d2;
}
.roundedBtn{
    border-radius: 40px;
    font-size: 1.2rem;
}

/* ********* header using gsap *********** */
.hero-section {
    min-height: 300px;
    background: linear-gradient(135deg, #f0e6ff 0%, #e6e9ff 50%, #ffe6f7 100%);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    display: flex;
    align-items: center;
}

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

.hero-section .floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(102, 16, 242, 0.3);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hero-section .icon-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-section #planet {
    top: 15%;
    left: 10%;
    font-size: 3rem;
}

.hero-section #book {
    bottom: 20%;
    right: 15%;
    font-size: 2.5rem;
}

.hero-section #paper-plane {
    top: 25%;
    right: 20%;
    font-size: 2rem;
}

.hero-section #star {
    top: 10%;
    right: 10%;
    font-size: 1.8rem;
}

.hero-section #chart {
    bottom: 15%;
    left: 20%;
    font-size: 2.2rem;
}

.hero-section .page-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #6610f2, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
}

.breadcrumb {
    background: rgba(255, 255, 255);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.breadcrumb-items a {
    color: #6610f2;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-items a:hover {
    text-decoration: none;
    color: #8540f5;
}

.hero-section .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-section .shape {
    position: absolute;
    background: rgba(102, 16, 242, 0.1);
    border-radius: 50%;
}