/* Home Page */
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: rgb(188,58,111);
    border-radius: 10px;
    transition: 0.3s;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0052D4, #4A90E2);
  }
  
  /* For Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: rgb(188,58,111) #f0f0f0;
  }
  
.card {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    top: -100px;
    font-size: 18px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: aliceblue;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: #f8d7da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle img {
    width: 80px;
}

.card-title {
    font-weight: bold;
}

.card-text {
    color: black;
    line-height: 2;
}

.learn-more {
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: none;
    color: black;
}

.about-section {
    padding: 50px 0;
    background-color: rgb(237, 237, 237);
}

.about-text {
    color: #343a40;
}

.about-text h1 {
    font-weight: bold;
    color: #212529;
}

.about-text p {
    color: #6c757d;
    line-height: 1.8;
}

.btn-read-more {
    background-color: #dc3545;
    color: #fff;
    font-weight: bold;
    /* border-radius: 25px; */
    padding: 10px 30px;
    text-transform: uppercase;
}

.btn-read-more:hover {
    background-color: #c82333;
    color: #fff;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

.image-container {
    padding: 10px;
}

@media (max-width: 768px) {
    .about-text {
        text-align: center;
    }

    .image-container {
        margin-top: 20px;
    }
}

.course-card {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.course-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-info {
    padding: 15px;
    text-align: center;
}

.course-name {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}


.header {
    text-align: center;
    margin-top: 50px;
}

.header h1 {
    font-size: 2rem;
    color: #dc3545;
}

.header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.feature-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 15px;
}

.products img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products img:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c2185b;
}

.description {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.feature-section {
    background-color: #f7f7f7;
    padding: 50px 0;
}


.testimonial-section {
    text-align: center;
}

.testimonial-section h2 {
    font-weight: bold;
    /* margin-bottom: px; */
}

.google-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.review-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    width: 300px;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-header img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.stars {
    color: #f4c150;
}

.review-content {
    font-size: 16px;
    color: black;
    line-height: 2;
}

.testimonial-section {
    padding: 50px 0;
    background-color: #fff;
}

.testimonial-section h2 {
    font-weight: bold;
    text-align: center;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.google-rating img {
    width: 150px;
    margin-right: 20px;
}

.reviews-slider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    max-width: 100%;
    height: auto;
    color: black;
    flex: 1;
    margin-top: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-header img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.stars {
    color: rgb(246, 187, 6);
}

.review-content {
    font-size: 14px;
    color: #555;
}

.slider-controls {
    text-align: center;
    margin-top: 20px;
}

.slider-controls button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.slider-controls button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}




/* about page  */
/* 
.card-content:hover {
    background-color: rgb(40, 40, 40);
    color: white;
} */

/* courses page */
.course-card {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.course-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-info {
    padding: 15px;
    text-align: center;
}

.course-name {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

/* clients page  */

/* gallery page */

/* certification page */

/* workshop page */


.workshop-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s;
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-card img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* reviews page */

.review-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.review-form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.review-form-container label {
    font-weight: bold;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffc10770;
    cursor: pointer;
}

.rating-stars .fa-star {
    transition: color 0.3s;
}

.rating-stars .fa-star:hover,
.rating-stars .fa-star.active {
    color: orangered;
}

/* contact page */