 
        :root {
            --pastel-green: #a8d5ba;
            --light-green: #d4e9d7;
            --beige: #f5f1e6;
            --dark-green: #5a7d5a;
            --text-color: #3a3a3a;
            --white: #ffffff;
            --gold: #d4af37;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--beige);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 400;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            color: var(--dark-green) !important;
            font-weight: 500;
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--dark-green) !important;
        }
        
        /* Classes Hero Section */
        .classes-hero {
            padding: 140px 0 80px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1820&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }
        
        .classes-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .classes-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        /* Introduction Section */
        .introduction-section {
            padding: 30px 0;
            background-color: var(--light-green);
        }
        
        .intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .intro-content h2 {
            font-size: 2.2rem;
            color: var(--dark-green);
            margin-bottom: 25px;
        }
        
        .intro-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 15px;
        }
        
        /* Classes Section */
        .classes-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--pastel-green);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
      .class-cards {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 40px;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }


        
      .class-cards:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .class-header {
            padding: 30px 30px 20px;
            text-align: center;
            background: linear-gradient(to bottom, var(--light-green), rgba(212, 233, 215, 0.3));
            position: relative;
        }
        
        .class-number {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background-color: var(--dark-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .class-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--pastel-green);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--dark-green);
            font-size: 2rem;
        }
        
        .class-header h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
            font-size: 1.6rem;
        }
        
        .class-subtitle {
            color: #666;
            font-style: italic;
            margin-bottom: 0;
        }
        
        .class-body {
            padding: 25px 30px 0px;
            
        }
        
        .class-description {
            color: #555;
            margin-bottom: 20px;
        }
        
        .class-highlights {
            margin-bottom: 25px;
        }
        
        .class-highlights h4 {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .class-highlights ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
        
        .class-highlights li {
            margin-bottom: 8px;
            color: #666;
        }
        
        .class-details {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .detail-icon {
            color: var(--pastel-green);
            font-size: 1.1rem;
        }
        
        .detail-label {
            font-weight: 600;
            color: var(--dark-green);
            margin-right: 5px;
        }
        
        .class-type-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--pastel-green);
            color: var(--text-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        @media (max-width: 576px) {
             .class-type-badge{
                position: absolute;
                top: 10px;
                right: 2px;
             }
        }
        
        .btn-book {
            background-color: var(--pastel-green);
            border: none;
            color: var(--text-color);
            padding: 12px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            width: 100%;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-book:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-2px);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background-color: var(--beige);
            color: #3a3a3a;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .btn-cta {
            background-color: var(--pastel-green);
            border: none;
            color: var(--text-color);
            padding: 14px 35px;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-cta:hover {
            background-color: white;
            color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        




        

      
       @media (max-width: 576px) {
            p{
                text-align: start !important;
            }
       }
    




    .class-body a{
        text-decoration: none;
    }