/* ================= CARD BASE ================= */

.rounded{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(15px);
    transition: transform .45s cubic-bezier(.22,1,.36,1),
                box-shadow .45s cubic-bezier(.22,1,.36,1);
}

/* Smooth Lift */
.rounded:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}


/* ================= IMAGE EFFECT ================= */

.rounded img{
    transition: transform .7s cubic-bezier(.22,1,.36,1),
                filter .7s ease;
}

.rounded:hover img{
    transform: scale(1.08);
    filter: brightness(1.05);
}


/* ================= TITLE PREMIUM ================= */

.rounded .h5{
    transition: color .35s ease;
    font-weight: 600;
}

.rounded:hover .h5{
    color: #f6a623 !important;
}


/* ================= META (Duration + Students) ================= */

.rounded small{
    transition: color .35s ease;
    font-weight: 500;
}

.rounded:hover small{
    color: #f6a623 !important;
}

.rounded:hover small i{
    color: #f6a623 !important;
}


/* ================= PRICE ================= */

.course-price,
.rounded h5.text-primary{
    font-size: 22px;
    font-weight: 700;
    color: #f6a623 !important;
}


/* ================= ENROLL BUTTON ================= */

.btn-primary{
    background: linear-gradient(135deg,#f6a623,#ffb84d);
    border: none;
    border-radius: 18px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .35s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 4px 12px rgba(246,166,35,.25);
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246,166,35,.45);
}


/* ================= SOFT ENTRANCE ANIMATION ================= */

.reveal{
    opacity: 0;
    transform: translateY(40px);
    transition: all .9s cubic-bezier(.22,1,.36,1);
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}/* ================= ROYAL ELITE COURSES HERO ================= */

.courses-hero{
    padding:150px 0 110px;
    background: linear-gradient(135deg,#0c2f4a,#123d5f);
    color:#ffffff;
    position:relative;
    overflow:hidden;
}

/* Subtle Islamic Pattern Overlay */
.courses-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:url('/noonacademy/img/islamic-pattern.png');
    opacity:.04;
    pointer-events:none;
}

/* Golden Top Accent Line */
.courses-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#f6a623,#ffcc70,#f6a623);
}

/* Subtitle */
.hero-subtitle{
    letter-spacing:6px;
    font-size:14px;
    color:#f6a623;
    margin-bottom:25px;
}

/* Main Title */
.hero-title{
    font-size:54px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:30px;
    color:#ffffff;
    text-shadow:0 8px 30px rgba(0,0,0,.4);
}

/* Description */
.hero-desc{
    max-width:750px;
    margin:auto;
    font-size:19px;
    color:#e8e8e8;
    margin-bottom:50px;
}

/* Royal Gold Button */
.hero-btn{
    display:inline-block;
    padding:16px 42px;
    border-radius:50px;
    background:linear-gradient(135deg,#f6a623,#ffb84d);
    color:#0c2f4a;
    font-weight:600;
    font-size:16px;
    text-decoration:none;
    transition:all .4s cubic-bezier(.22,1,.36,1);
    box-shadow:0 12px 30px rgba(246,166,35,.35);
}

.hero-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(246,166,35,.55);
}.hero-title::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    margin:20px auto 0;
    background:linear-gradient(90deg,#f6a623,#ffcc70);
    border-radius:10px;
}