/* Base Styles */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #e9ecef; /* Slightly darker gray to make the white card pop */
    margin: 0;
    padding: 0;
}

/* Main Card Container - Expanded to fulfill the screen */
.login-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1400px; /* Made much wider */
    min-height: 85vh; /* Forces the card to take up 85% of the screen height */
    overflow: hidden;
}

/* Custom Toggle Buttons */
.toggle-container {
    background-color: #8ba9d4;
    border-radius: 50px;
    display: flex;
    width: fit-content;
    margin-bottom: 50px;
    padding: 5px;
}

.toggle-btn {
    padding: 12px 40px;
    color: white;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.05rem;
}

.toggle-btn.active {
    background-color: #4a76b8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.toggle-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Form Inputs */
.form-label {
    font-weight: 700;
    color: #212529;
    font-size: 1rem;
    margin-bottom: 10px;
}

.form-control {
    border-radius: 50px;
    border: 1.5px solid #8ba9d4;
    padding: 14px 25px;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(74, 118, 184, 0.2);
    border-color: #4a76b8;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Password Wrapper for Icon */
.password-wrapper {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    left: 25px; 
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.password-toggle-icon:hover {
    color: #4a76b8;
}

.password-input {
    padding-left: 55px; 
}

/* Orange Submit Button */
.btn-submit {
    background-color: #e58b20;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    width: 200px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d17a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 139, 32, 0.3);
}

/* Links and text */
.forgot-link {
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #4a76b8;
    text-decoration: underline;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.form-check-input {
    cursor: pointer;
}

/* Image styling */
.side-image {
    object-fit: cover;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    min-height: 80vh; /* Stretches the image to fill the expanded card */
}
/* Custom Radio Buttons for Registration */
.custom-radio-group .form-check-label {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
    cursor: pointer;
}

.custom-radio-group .form-check-input {
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    border: 1.5px solid #8ba9d4; /* Matches input borders */
}

.custom-radio-group .form-check-input:checked {
    background-color: #4a76b8;
    border-color: #4a76b8;
}

/* =========================================
   Organization Registration Page Styles
========================================= */

.bg-light {
    background-color: #e2e2e2 !important; /* Matches the gray background outside the form */
}

.org-card {
    border-radius: 0;
    max-width: 950px;
    overflow: hidden;
}

/* Blue Wave Header */
/* Blue Wave Header with Overlapping Circles/Waves */
/* Blue Wave Header Container */
.org-header-banner {
    height: 160px;
    width: 100%;
    position: relative;
    background-color: #6095e0; /* The exact base blue from your screenshot */
    overflow: hidden; /* This hides the parts of the circles that go outside the box */
}

/* First Shape: Top Right Circle */
.org-header-banner::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.06); /* Soft, semi-transparent white */
    border-radius: 50%;
    top: -380px;
    right: -20px; /* Anchors it to the right edge */
}

/* Second Shape: Bottom Right Circle */
.org-header-banner::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly more transparent */
    border-radius: 50%;
    bottom: -480px;
    right: 12%; /* Pushed slightly left of the first circle to create the overlap */
}

.title-text {
    color: #000;
    font-size: 1.3rem;
}

/* Specific Input Styling for Org Form */
.form-control-org {
    border-radius: 8px; /* Less rounded than the login form */
    border: 1px solid #dee2e6;
    padding: 12px 20px;
}

.form-control-org:focus {
    box-shadow: 0 0 0 0.25rem rgba(74, 118, 184, 0.15);
    border-color: #8ba9d4;
}

textarea.form-control-org {
    resize: none;
}

/* Save Button */
.org-btn {
    width: 150px; /* Slightly shorter than the login button */
    border-radius: 25px;
}
/* =========================================
   Typography & RTL Fixes
========================================= */

/* Force the bold, clean Arabic font on all labels and titles */
.form-label, 
.title-text,
h4 {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 700 !important; /* 700 is the bold weight */
    color: #111111 !important; /* Dark, sharp black like the design */
    text-align: right;
}

/* Center the main title specifically */
.title-text {
    text-align: center !important;
}

/* Force RTL and right-alignment inside the input boxes */
.form-control,
.form-control-org {
    font-family: 'Tajawal', sans-serif !important;
    text-align: right !important; /* Pushes text to the right */
    direction: rtl !important;    /* Ensures Arabic text flows correctly */
    font-weight: 500 !important;  /* Slightly thicker than normal for readability */
}

/* Style the placeholder text specifically */
.form-control::placeholder,
.form-control-org::placeholder {
    text-align: right !important;
    direction: rtl !important;
    color: #b3b3b3 !important; /* Matches the soft gray of the original placeholders */
    font-weight: 400 !important;
}

/* =========================================
   Mobile Responsiveness & Adjustments
========================================= */

@media (max-width: 991.98px) {
    /* Make the background white on mobile to feel like a native app */
    body {
        background-color: #ffffff !important;
    }

    /* Flatten the cards so they merge with the background */
    .login-card, 
    .org-card {
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
    }

    /* Remove extra padding from the main container on mobile */
    .container-fluid {
        padding: 0 !important;
    }

    .form-wrapper {
        padding: 10px 0;
    }

    /* Adjust the toggle buttons to fit smaller screens better */
    .toggle-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .toggle-btn {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    /* Center the submit buttons on mobile */
    .text-lg-start, 
    .text-lg-end, 
    .text-end {
        text-align: center !important;
    }

    /* Make the orange buttons a bit wider on mobile for easier tapping */
    .btn-submit,
    .org-btn {
        width: 80% !important;
        max-width: 300px;
        margin-top: 15px;
    }

    /* Adjust the blue banner and circles for mobile proportions */
    .org-header-banner {
        height: 120px;
    }

    .org-header-banner::before {
        width: 350px;
        height: 350px;
        top: -250px;
        right: -50px;
    }

    .org-header-banner::after {
        width: 450px;
        height: 450px;
        bottom: -350px;
        right: 0;
    }
}

/* =========================================
   IFDO Landing Page Styles
========================================= */

/* Core Colors */
.text-blue { color: #3b71ca !important; }
.text-orange { color: #f29831 !important; }
.bg-light-gray { background-color: #efefef !important; }

/* =========================================
   Hero Curved Section (Perfected Layout)
========================================= */

/* =========================================
   Hero Curved Section (Perfected Waves & Alignment)
========================================= */

.hero-curved {
    min-height: 90vh;
    background: linear-gradient(135deg, #4b8df2 0%, #3560ab 100%);
    position: relative;
    clip-path: ellipse(120% 100% at 50% 0%);
    margin-bottom: 0; /*Removes gray padding*/
    overflow: hidden; 
    z-index: 1; /* Keeps everything layered correctly */
}

/* Top Wave (Matches your top red arrow) */
.hero-curved::before {
    content: "";
    position: absolute;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08); /* Increased visibility */
    top: -800px;
    left: 10%; /* Positions it to sweep down through the middle */
    z-index: -1;
    pointer-events: none;
}

/* Bottom Right Wave (Matches your bottom red arrow) */
.hero-curved::after {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly softer */
    bottom: -400px;
    right: -200px; /* Positions it to sweep up from the right corner */
    z-index: -1;
    pointer-events: none;
}

/* Left Image Wrapper (Updated Curve) */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    /* Increased width so the image reaches further right before curving */
    width: 53%; 
    height: 100%;
    /* A much rounder, deeper curve. 
       The 75% vertical radius creates that pronounced bulge shown in your markup.
    */
    clip-path: ellipse(100% 75% at 0% 50%);
    z-index: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 30, 80, 0.1), rgba(0, 30, 80, 0.4));
}

/* Introduction Cards (Perfected Shadow and Spacing) */
.membership-intro-card {
    border: none;
    transition: transform 0.3s ease;
    max-width: 480px;
    margin-top: 50px; /* Gives room for the circle */
    /* Extremely soft, wide shadow matching Figma */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04) !important; 
}

.membership-intro-card:hover {
    transform: translateY(-5px);
}

.circle-badge {
    position: absolute;
    /* Negative half of the height to sit perfectly on the border */
    top: -40px; 
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(242, 152, 49, 0.2);
}

.circle-orange { 
    background-color: #f29831; 
}

/* Custom Orange Bullet Point Lists */
.orange-bullet-list {
    list-style: none;
    padding-right: 0;
}
.orange-bullet-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
}
.orange-bullet-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    background-color: #f29831;
    border-radius: 50%;
}

/* Custom Nav Pills (Tabs) to match Figma */
.custom-tabs {
    border: none;
}
.custom-tabs .nav-link {
    background-color: #e9ecef;
    color: #f29831;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.custom-tabs .nav-link:hover {
    background-color: #dde0e3;
}
.custom-tabs .nav-link.active {
    background-color: #3b71ca !important;
    color: white !important;
}

/* Giant Orange CTA Button */
.btn-orange-lg {
    background-color: #f29831;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 15px 50px;
    border: none;
    transition: all 0.3s ease;
}
.btn-orange-lg:hover {
    background-color: #d88122;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 152, 49, 0.3);
}

/* Footer Styling */
.social-icons a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.social-icons a:hover {
    opacity: 0.7;
}
/* Custom Text Gradient for the Statistics Numbers */
.gradient-number {
    /* Exact colors from your Figma export: Slate Blue -> Greyish-Brown -> Gold */
    background: linear-gradient(to right, #4c73a6 0%, #90887a 45%, #d69d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block; /* Ensures the gradient spans the width of the text perfectly */
}
/* Force the entire index/home page background to be pure white */
body.home-page {
    background-color: #ffffff !important;
}
/* =========================================
   Organization Membership Layout Details
========================================= */

/* Dark Navy Text */
.text-navy {
    color: #2b3363 !important;
}

/* The yellow/orange oval behind the word "من" */
.highlight-oval {
    position: absolute;
    top: -5px;
    right: -12px;
    width: 65px;
    height: 45px;
    background-color: #fbd68b;
    border-radius: 50%;
    z-index: 0;
}

/* Adjust bullet list spacing so text doesn't overlap the dot */
.orange-bullet-list li {
    position: relative;
    padding-right: 30px; /* Gives space for the orange circle */
    margin-bottom: 12px;
}

.orange-bullet-list li::before {
    top: 14px; /* Perfectly centers the dot with the larger text */
}

/* Image Decorative Shapes */
.org-image-container {
    padding: 20px;
    z-index: 1;
}

.org-img {
    z-index: 2;
    border-radius: 16px;
    max-width: 90%;
}

/* Blue shape peeking out of the Top-Left */
.shape-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: #71a0ea;
    border-radius: 16px;
    z-index: 1;
}

/* Orange shape peeking out of the Bottom-Right */
.shape-orange {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    height: 130px;
    background-color: #f5b05f;
    border-radius: 16px;
    z-index: 1;
}
/* =========================================
   Individual Membership Image Decor
========================================= */

.ind-image-container {
    padding: 30px;
    z-index: 1;
}

.ind-img {
    z-index: 2;
    border-radius: 16px;
    width: 100%;
}

/* Big Blue Circle (Top Right) */
.ind-circle-blue-lg {
    position: absolute;
    top: 5px;
    right: 5%; 
    width: 120px;
    height: 120px;
    background-color: #71a0ea;
    border-radius: 50%;
    z-index: 0;
}

/* Small Yellow/Orange Circle (Top Right offset) */
.ind-circle-orange-sm {
    position: absolute;
    top: -15px;
    right: 30%;
    width: 25px;
    height: 25px;
    background-color: #fbd68b;
    border-radius: 50%;
    z-index: 0;
}

/* Big Orange Circle (Bottom Left) */
.ind-circle-orange-lg {
    position: absolute;
    bottom: 5px;
    left: 5%;
    width: 140px;
    height: 140px;
    background-color: #f5b05f;
    border-radius: 50%;
    z-index: 0;
}

/* Small Blue Circle (Bottom Left offset) */
.ind-circle-blue-sm {
    position: absolute;
    bottom: -15px;
    left: 35%;
    width: 25px;
    height: 25px;
    background-color: #71a0ea;
    border-radius: 50%;
    z-index: 0;
}

/* =========================================
   Footer Styles & Layout
========================================= */

.footer-custom {
    /* Exact gradient from your design */
    background: linear-gradient(135deg, #4b8df2 0%, #3560ab 100%);
}

/* Background Wave Top-Left */
.footer-wave-1 {
    position: absolute;
    top: -400px;
    left: -200px;
    width: 1000px;
    height: 1000px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Background Wave Bottom-Right */
.footer-wave-2 {
    position: absolute;
    bottom: -500px;
    right: 15%;
    width: 1200px;
    height: 1200px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Fix social icons hover effect */
.social-icons a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #f29831; /* Turns orange on hover! */
    transform: translateY(-3px);
}

/* =========================================
   Checkout Page Styles
========================================= */

.payment-box {
    width: 85px;
    height: 55px;
    background-color: #ffffff;
    border-color: #d1d9e6 !important;
    transition: all 0.2s ease;
}

/* Ssleeker checkout inputs matching Figma */
.checkout-input {
    border: 1px solid #d1d9e6;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 10px 14px;
    color: #333;
}

.checkout-input::placeholder {
    color: #b0bac9;
}

.checkout-input:focus {
    box-shadow: none;
    border-color: #f29831;
}

/* =========================================
   Members Directory Styles (Perfected Grid)
========================================= */

/* Member Cards */
.member-card {
    margin-top: 85px; /* Space outside for the image to pop up into */
    padding-top: 95px !important; /* Space inside so the image doesn't cover the name! */
    position: relative;
    border: none !important; /* Removes the hard border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important; /* Soft, elegant card shadow */
}

.member-img {
    width: 160px; /* Larger size to match Figma proportions */
    height: 160px;
    object-fit: cover;
    border-radius: 0; /* Perfectly square edges, no rounding */
    position: absolute;
    top: -80px; /* Exactly half of the height to center it on the top edge */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: none; /* Removed the shadow from the image itself */
}

/* About Members Showcase - Decorative Circles */
.about-showcase-img {
    padding: 20px;
}

.main-circle-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.circle-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-blue-light {
    top: 5px;
    right: 5px;
    width: 110px;
    height: 110px;
    background-color: #88b0eb;
}

.circle-orange-bottom {
    bottom: -10px;
    left: 10px;
    width: 130px;
    height: 130px;
    background-color: #f29831;
}

.circle-blue-dark {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #2b5299;
}
/* =========================================
   Ask an Expert Page Styles
========================================= */

/* The long text input */
/* The auto-expanding text area */
.ask-input {
    border: 1.5px solid #4b8df2 !important;
    border-radius: 30px !important; /* Softened slightly for multi-line scaling */
    padding: 15px 30px;
    font-size: 1.15rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none; /* Removes the ugly default drag handle in the corner */
    overflow: hidden; /* Hides the scrollbar while typing */
    min-height: 62px; /* Keeps the initial height looking exactly like a button */
    line-height: 1.6;
}

.ask-input::placeholder {
    color: #a0aec0;
}

.ask-input:focus {
    box-shadow: 0 0 0 4px rgba(75, 141, 242, 0.15) !important;
    outline: none;
}

.ask-input::placeholder {
    color: #a0aec0;
}

.ask-input:focus {
    box-shadow: 0 0 0 4px rgba(75, 141, 242, 0.15) !important;
}

/* The Ask Button */
.btn-ask {
    background-color: #f29831;
    color: white;
    border-radius: 50px;
    padding: 15px 45px;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevents text from breaking onto two lines */
}

.btn-ask:hover {
    background-color: #d88122;
    color: white;
    transform: translateY(-2px);
}

/* The Attach Button */
.btn-attach {
    background-color: #f29831;
    color: white;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 1.25rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-attach:hover {
    background-color: #d88122;
    color: white;
    transform: translateY(-2px);
}

/* =========================================
   Expert Answer Page Styles
========================================= */

/* The labels above the boxes */
.expert-label {
    color: #6a7c92; /* The exact grayish-blue color from the mockup */
    font-size: 1.6rem;
}

/* The large text areas */
.expert-box {
    border: 1.5px solid #4b8df2 !important;
    border-radius: 20px !important;
    padding: 20px 25px;
    font-size: 1.15rem;
    color: #333;
    min-height: 200px; /* Forces the box to be nice and tall */
    resize: vertical; /* Allows the expert to make the box taller if they write a lot */
    transition: all 0.3s ease;
    line-height: 1.8;
}

.expert-box:focus {
    box-shadow: 0 0 0 4px rgba(75, 141, 242, 0.15) !important;
    outline: none;
}

/* Make the readonly question box look like a normal box, not grayed out */
.expert-box[readonly] {
    background-color: #ffffff;
}

/* =========================================
   Admin Dashboard Table Styles
========================================= */

/* The outer blue wrapper with rounded corners */
.admin-table-wrapper {
    border: 2px solid #4b8df2;
    border-radius: 20px;
    background-color: #ffffff;
    overflow: hidden; /* Clips the table corners perfectly */
}

/* The actual table */
.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}

/* Internal grid lines */
.admin-table th, .admin-table td {
    border-bottom: 1px solid #4b8df2;
    border-left: 1px solid #4b8df2;
    text-align: center;
    vertical-align: middle;
    padding: 1.2rem 0.5rem;
    color: #6a7c92; /* Grayish-blue text */
}

/* Remove the left border on the very last column */
.admin-table th:last-child, .admin-table td:last-child {
    border-left: none;
}

/* Remove the bottom border on the very last row */
.admin-table tr:last-child td {
    border-bottom: none;
}

/* Specific styling for headers */
.admin-table th {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1.5rem 0.5rem;
}

/* Specific styling for table body cells */
.admin-table td {
    height: 75px; /* Ensures all rows are uniformly tall */
}

/* Action Buttons */
.btn-action {
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    width: 80px; /* Forces all buttons to be the exact same width */
    padding: 6px 0;
    border: none;
    transition: all 0.2s ease;
}

.btn-action:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-approve {
    background-color: #a0a6b1; /* Muted gray */
}
.btn-approve:hover { background-color: #8a909a; }

.btn-reject {
    background-color: #4b8df2; /* Blue */
}
.btn-reject:hover { background-color: #3560ab; }

.btn-edit {
    background-color: #f29831; /* Orange */
}
.btn-edit:hover { background-color: #d88122; }

/* =========================================
   Knowledge Centre Page Styles
========================================= */

/* The Teal Color used for video progress and price tags */
.bg-teal {
    background-color: #4dc2b4 !important;
}

.text-teal {
    color: #4dc2b4 !important;
}

/* The custom orange quote box */
.quote-box {
    background-color: #f3c178; /* Soft orange/tan */
}

/* Teal Navigation Arrows for Articles Carousel */
.btn-arrow {
    background-color: #7acac2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    background-color: #65b3ab;
    color: white;
    transform: translateY(-2px);
}

/* Article / Course Cards */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Tiny helper for pointer icons */
.cursor-pointer {
    cursor: pointer;
}
/* =========================================
   Search Page Styles
========================================= */

/* Prevents the default blue glow from breaking the pill design */
.search-input-clean:focus {
    outline: none !important;
    box-shadow: none !important;
}