/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.3.1748427925
Updated: 2025-05-28 10:25:25

*/

/* Set the body background color */
body {
    background-color: #0D0A2C;
    color: #FFFFFF; /* Default text color for better visibility */
}

/* Adjust text colors for specific elements */
.navbar, .footer, .cta-bar {
    background-color: #0D0A2C;
    color: #FFFFFF;
}

.nav-link, .btn-outline-light {
    color: #FFFFFF;
}

.nav-link:hover, .btn-outline-light:hover {
    color: #FFD700; /* Highlight color for hover effects */
}

.hero-title, .hero-subtitle, .main-heading, .section-title, .testimonial-text, .relate-title, .relate-item p, .benefit-card p, .trainer-title, .trainer-bio, .stat-text, .role-card p, .bonus-image, .footer p, .cta-bar p {
    color: #FFFFFF;
}

/* Accent color for highlights */
.text-accent {
    color: #FFD700; /* Gold color for accents */
}

/* Adjust button styles */
.btn-accent {
    background-color: #FFD700;
    color: #0D0A2C;
}

.btn-accent:hover {
    background-color: #FFC107;
    color: #0D0A2C;
}


* course section */

        .course-section {
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .section-title {
            margin-top: 65px;
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            color: #d1d5db;
            font-size: 1.125rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
        }

        .course-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #475569;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            height: 100%;
        }

        .course-card:hover {
            background: rgba(30, 41, 59, 0.8);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .course-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
            line-height: 1.3;
        }

        .course-card:hover .course-title {
            color: #fb923c;
        }

        .level-badge {
            background: rgba(249, 115, 22, 0.2);
            color: #fb923c;
            border: 1px solid rgba(249, 115, 22, 0.3);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .course-description {
            color: #d1d5db;
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .course-duration {
            color: #9ca3af;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .card-footer {
            border-top: 1px solid #475569;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        .price-container {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
        }
        .card-footer{
                display: flex;
    justify-content: space-between;
        }
        .card-footer a{
                width: 138px;
    line-height: 1.3;
        }
        .price-amount {
            color: white;
            font-size: 2rem;
            font-weight: 700;
        }

        .price-gst {
            color: #9ca3af;
            font-size: 1.125rem;
        }

        .btn-enroll {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            border: none;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
            width: 100%;
        }

        .btn-enroll:hover {
            background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
            color: white;
        }