 :root {
            --primary-red: #ff0000;
            --dark-black: #1a1a1a;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--dark-black);
            color: white;
        }

        .navbar {
            background-color: rgba(0, 0, 0, 0.9) !important;
        }

        .navbar-brand img {
            width: 50px;
            height: 50px;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('/api/placeholder/1920/1080') center/cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .section-title {
            color: var(--primary-red);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
            margin-bottom: 30px;
        }

        .card {
            background-color: rgba(0, 0, 0, 0.8);
            border: 1px solid var(--primary-red);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .instructor-img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--primary-red);
        }

        .carousel-item img {
            height: 600px;
            object-fit: cover;
        }

        .schedule-card {
            background: linear-gradient(45deg, var(--dark-black), #400000);
            border: none;
            border-radius: 15px;
        }

        .social-icon {
            color: var(--primary-red);
            font-size: 24px;
            margin: 0 10px;
            transition: transform 0.3s;
        }

        .social-icon:hover {
            transform: scale(1.2);
        }

        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 20px 0;
        }
		
		.schedule-section {
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                    url('/api/placeholder/1920/1080') center/cover fixed;
        padding: 80px 0;
        position: relative;
    }

    .schedule-title {
        font-size: 3.5rem;
        text-transform: uppercase;
        color: var(--primary-red);
        text-align: center;
        margin-bottom: 50px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        position: relative;
    }

    .schedule-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background-color: var(--primary-red);
        margin: 20px auto;
    }

    .schedule-card {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(68, 0, 0, 0.9));
        border: 2px solid var(--primary-red);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        transform: translateY(0);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .schedule-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    }

    .schedule-card .card-title {
        color: var(--primary-red);
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .schedule-time {
        font-size: 1.2rem;
        color: white;
        margin: 10px 0;
        padding: 10px;
        border-left: 3px solid var(--primary-red);
        background: rgba(255, 0, 0, 0.1);
    }

    .schedule-icon {
        font-size: 2.5rem;
        color: var(--primary-red);
        margin-bottom: 20px;
    }

    .location-badge {
        display: inline-block;
        background-color: var(--primary-red);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        margin-bottom: 15px;
    }
	
		.social-links {
			display: flex;
			justify-content: center;
			gap: 20px;
		}
		
		.social-icon {
			color: var(--primary-red);
			font-size: 24px;
			transition: transform 0.3s, color 0.3s;
			text-decoration: none;
		}
		
		.social-icon:hover {
			transform: scale(1.2);
			color: #ff3333;
		}
		
		.fa-youtube:hover {
			color: #ff0000;
		}
		
		.fa-facebook:hover {
			color: #1877f2;
		}
		
		 .contact-section {
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                    url('/api/placeholder/1920/1080') center/cover fixed;
        padding: 80px 0;
    }

    .contact-card {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(68, 0, 0, 0.9));
        border: 2px solid var(--primary-red);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    }

    .contact-icon {
        font-size: 3rem;
        color: var(--primary-red);
        margin-bottom: 20px;
    }

    .contact-info {
        font-size: 1.1rem;
        color: white;
        margin: 10px 0;
        padding: 15px;
        border-left: 3px solid var(--primary-red);
        background: rgba(255, 0, 0, 0.1);
    }

    .contact-title {
        font-size: 3.5rem;
        text-transform: uppercase;
        color: var(--primary-red);
        text-align: center;
        margin-bottom: 50px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .contact-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background-color: var(--primary-red);
        margin: 20px auto;
    }

    .instructor-contact {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
        background: rgba(255, 0, 0, 0.1);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .instructor-contact:hover {
        background: rgba(255, 0, 0, 0.2);
    }

    .instructor-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 15px;
        border: 2px solid var(--primary-red);
    }

    .map-container {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        border: 2px solid var(--primary-red);
    }

    .contact-cta {
        background: var(--primary-red);
        color: white;
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        display: inline-block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-top: 20px;
    }

    .contact-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        color: white;
    }

     /* Grading Section */
     #grading {
        background-color: #1a1a1a;
    }

    .grading-carousel .carousel-item {
        background-color: #2a2a2a;
        padding: 20px;
        border-radius: 8px;
    }

    .carousel-indicators [data-bs-target] {
        background-color: #dc3545;
    }
	
    .custom-carousel {
        background-color: #1a1a1a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 2px solid #ff0000;
    }

    .carousel-inner {
        position: relative;
    }

    .carousel-item {
        height: 500px;
        background-color: #000;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        padding: 20px;
        max-width: 80%;
        margin: 0 auto;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background-color: rgba(255, 0, 0, 0.7);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: #ff0000;
        opacity: 1;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0.5;
        margin: 0 5px;
        border: 2px solid #ff0000;
    }

    .carousel-indicators button.active {
        background-color: #ff0000;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .carousel-item {
            height: 300px;
        }
        
        .carousel-caption {
            padding: 10px;
        }

        .carousel-caption h5 {
            font-size: 1rem;
        }

        .carousel-caption p {
            font-size: 0.875rem;
        }
    }

    /* Register Button */

    .register-btn {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
            color: white;
            text-decoration: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(238, 90, 111, 0.4);
            position: relative;
            overflow: hidden;
        }

        .register-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .register-btn:hover:before {
            left: 100%;
        }

        .register-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(238, 90, 111, 0.6);
            background: linear-gradient(45deg, #ff5252, #e91e63);
        }

        .register-btn:active {
            transform: translateY(-1px);
            transition: transform 0.1s;
        }

        .icon {
            margin-right: 8px;
            font-size: 1.1em;
        }