﻿
/* Base Anchor Tag Styling */
.informative-alert a {
    color: #991903;
    text-decoration: none;
    font-weight: bold;
}

    /* Anchor Tag Hover Effect */
    .informative-alert a:hover {
        background-color: green;
        text-decoration: underline;
    }

    /* Image Styling */
    .informative-alert a img {
        vertical-align: middle;
        margin-left: 5px;
    }
/* Navbar Introductory Styling */
.informative-alert {
    background-color: var(--main-bg-color);
    border: 1px solid var(--border);
    border-radius: 5px;
    text-align: right;
    position: relative;
    padding: 5px;
    margin-bottom: 20px;
}
    .informative-alert .btn-sample {
        color: var(--dark);
    }
    .informative-alert .btn-sample:hover {
        color: var(--main-bg-color);
    }
    /* Close Button Styling */
    .informative-alert .btn-close {
        background: transparent;
        border: none;
        font-size: 1.2rem;
        color: #00cc99;
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 5px;
    }

    /* Heading Styling */
    .informative-alert h1, .informative-alert h2, .informative-alert h3, .informative-alert h4, .informative-alert h5, .informative-alert h6 {
        color: #991903; /* Dark red for headings */
    }

    /* Icon Styling */
    .informative-alert i {
        font-size: 1.2rem;
        color: #00cc99; /* Teal for icon */
        margin-right: 10px; /* Add more space for clarity */
        vertical-align: middle;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .informative-alert {
        /*font-size: 0.8rem;*/
        /*padding: 1rem;*/ 
    }

        .informative-alert i {
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .informative-alert {
        /*font-size: 0.75rem;
        padding: 0.75rem; */
    }

        .informative-alert i {
            font-size: 0.9rem;
        }
}


.inform-discount-end {
    /* background-color: var(--site-red); */
    /* border-top: 2px solid var(--site-red); */
    padding: 20px;
    text-align: center;
    width: 100%;
    margin: 20px 0 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, -0.1);
    font-weight: bold;
    /* color: var(--main-bg-color) !important; */
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px 0;
}

.feature-card {
    background-color: var(--main-bg-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: var(--success);
    border-width: 1px;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .feature-card i {
        font-size: 40px;
        color: var(--turquoise-green);
        margin-bottom: 10px;
    }

    .feature-card h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

@media (max-width: 992px) {
    .product-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .feature-card i {
        font-size: 25px;
        color: var(--turquoise-green);
        margin-bottom: 10px;
    }
}

.courseReview-slider-hero {
    width: 100%;
    margin: 0 auto;
}

    /* .courseReview-slider-hero > div{
                    margin: 5px 10px;
                } */
    .courseReview-slider-hero > div {
        border-right: 4px solid var(--site-red);
        border-radius: 10px;
        padding: 20px;
        background-color: var(--main-bg-color);
        margin: 5px 10px;
    }

        .courseReview-slider-hero > div h3 {
            font-weight: bold;
            /* padding-right: 10px; */
            margin-bottom: 15px;
        }

            .courseReview-slider-hero > div h3:hover {
                background-color: transparent !important;
                color: forestgreen;
                /* transform:scale(1.1); */
            }

.informative-a {
    text-decoration: underline !important;
    color: #007bff !important;
}


.slick-dots li button {
    margin-top: 10px;
    background-color:black !important;
    opacity: 0.5; 
    border-radius: 50%;
    width: 5px !important; 
    height: 5px !important; 
    background: gray; 
    transition: opacity 0.3s, background 0.3s; 
    content: none !important;
}

.slick-dots li.slick-active button {
    width: 14px !important; 
    height: 14px !important; 
    opacity: 1; 
    background: black; 
    z-index: 100; 
}
.slick-dots li button::before {
    content: ''; /* Clear any content */
    display: none; /* Hide the before element */
}
.courseReview-slider-hero .slick-slide {
    transition: transform 0.3s ease; /* Smooth transition for slide movement */
}

.slick-list {
    padding: 10px 15px 10px 15px !important;
}