:root {
            --purple: #5d1d6d;
            --mint: #7eb5b2;
            --pink: #c98bdc;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Cairo", sans-serif;
        }

        body {
            background: var(--purple);
            color: var(--white);
        }

        /* Navbar */
        .navbar {
            padding: 20px 0;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
        }

        .btn.outline {
            background: transparent;
            border: 1px solid var(--white);
            color: var(--white);
        }

        .btn.filled {
            background: var(--pink);
            color: var(--purple);
            border: none;
        }

        /* Hero */
        .hero {
            padding: 60px 0;
            text-align: center;
            padding-bottom: 100px;
        }

        .logo {
               width: 450px;
            margin-top: 20px;
        }

        .hero-text {
            max-width: 500px;
            margin: auto;
            line-height: 1.9;
            font-size: 19px;
            font-weight: bold;
            text-align: justify;
        }
.swiper {
  padding: 20px 0;
}

.card {
  height: 100%;
  border-radius: 12px;
}

        .btn.shop {
            margin-top: 25px;
            background: transparent;
            border: 1px solid var(--white);
            color: var(--white);
        }

        /* Testimonials */
        .testimonials {
            background: var(--mint);
            padding: 70px 0;
            color: var(--purple);
            text-align: center;
            padding-top: 10px;
        }

        .card {
            padding: 25px;
            border-radius: 10px;
            border: none;
            height: 100%;
            color: var(--purple);;
        }

        .card span {
            display: block;
            margin-top: 15px;
            font-weight: bold;
        }
        .card p{
            padding: 35px 20px 25px 20px;
                text-align: left;
        }

        /* About */
        .about {
            padding: 80px 0;
        }

      

        /* Footer */
        .footer {
            background: #4b165e;
            padding: 35px 0;
            text-align: center;
        }

        .footer p {
            margin: 0;
            font-size: 14px;
            color: #ddd;
        }


.footer-link {
    color: #555;
    text-decoration: none;
    margin: 0 5px;
}

.footer-link:hover {
    color: #7b5cff;
}

.separator {
    color: #ccc;
}

.social-icon {
    color: #555;
    margin: 0 6px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #7b5cff;
}

.footer hr {
    margin: 15px 0;
    opacity: 0.1;
}


        /* Scroll Animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
.swiper-button-lock {
    display: flex;
}
        @media (max-width: 768px) {
            .hero-text {
                font-size: 14px;
            }
        }
         /* Navbar */
        .navbar {
            padding: 20px 0;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
        }

        .btn.outline {
            background: transparent;
            border: 1px solid var(--white);
            color: var(--white);
        }

        .btn.filled {
            background: var(--pink);
            color: var(--purple);
            border: none;
        }
        .btnt{
               background: #c98bdc;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    color: white;
    padding: 4px 13px;
        }
         p{
                font-family: serif;
    line-height: 30px;
        }

        .courses {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .course {
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      height: 400px;
    }
    .course img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
    }
    .course-content {
      position: absolute;
      bottom: 20px;
      right: 20px;
    }
    .course-content h3 {
      margin: 0;
      font-size: 20px;
    }
    .price {
      margin-top: 10px;
      display: inline-block;
      background: #000;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 14px;
    }


    .btnt{
               background: #c98bdc;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    color: white;
    padding: 4px 13px;}


    .dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.2);
}

.dropdown-menu {
    background: #c98bdc;
    border-radius: 12px;
}



.messages-container {
        margin-bottom: 25px;
    }
    
    .alert {
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        animation: slideIn 0.3s ease;
    }
    
    .alert-success {
        background: #c98bdc;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .alert-error, .alert-danger {
        background: #c98bdc;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    .alert-warning {
        background: #c98bdc;
        color: #856404;
        border: 1px solid #c98bdc;
    }
    
    .close-alert {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: inherit;
        opacity: 0.7;
    }