:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --info: #0dcaf0;
            --warning: #ffc107;
            --danger: #dc3545;
            --light: #f8f9fa;
            --dark: #212529;
            --bs-border-radius: 0.5rem;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        

        
.hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    color: white;
    padding: 3rem 0;
    text-align: center;
}

/* Pseudo-element for the blurred background image */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('/images/tour/three_worksheets.jpg') center/cover;
    filter: blur(2px);
    z-index: -2;
}

/* Pseudo-element for the gradient overlay */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: -1;
}
        
        .hero h1 {
            font-weight: 700;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hero h3 {
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            margin-bottom: 2rem;
            color: white;
        }
        
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-box .form-control {
            border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
            border-right: none;
            height: 3.5rem;
            font-size: 1.1rem;
        }
        
        .search-box .btn {
            border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
            height: 3.5rem;
        }
        
        .card {
            border: none;
            border-radius: var(--bs-border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .card-title {
            font-weight: 600;
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(13, 110, 253, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .bg-light-blue {
            background-color: #f0f7ff;
        }
        
        .category-box {
            background-color: white;
            border-radius: var(--bs-border-radius);
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .category-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .category-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .pricing-table {
            background-color: white;
            border-radius: var(--bs-border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .pricing-table:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            background-color: var(--primary);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .pricing-header h4 {
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .pricing-body {
            padding: 2rem;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-features i {
            color: var(--primary);
            margin-right: 0.5rem;
        }
        
        .jpd {
	        
	        border: 1px solid rgba(229, 209, 209, 1);
	        
	        
        }
        
        /*
        .carousel-inner img {
            border-radius: var(--bs-border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        */
        
        .testimonial {
            background-color: white;
            border-radius: var(--bs-border-radius);
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        

        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 0.5rem;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
        }
        
        .worksheet-carousel .carousel-item img {
            max-height: 500px;
            object-fit: contain;
            border: 0px;
        }
        
        .carousel-item img {
	        border: 1px grey solid;
	        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary);
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero h3 {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            
            .hero {
                padding: 5rem 0;
            }
        }
