/*
 Theme Name:   Refreshworks
 Theme URI:    https://refreshworks.ai/
 Description:  Theme made by Refreshworks
 Author:       Refreshworks
 Author URI:   https://refreshworks.ai/
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Import the parent theme's stylesheet */
@import url("../hello-elementor/style.css");

/* Add your custom styles below */

.project-details-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--primary-color);
    font-size: 16px;
}

.project-details-table td {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #C5DEED;
}

.project-details-table td:first-child {
    font-weight: bold;
}

table.project-details-table tbody>tr:nth-child(odd)>td,
table tbody>tr:nth-child(odd)>th,
.project-details-table tr:hover td {
    background-color: #EFF6F7;
}

.single-project .elementor-widget-theme-post-content h2,
.single-project .elementor-widget-theme-post-content h3,
.single-project .elementor-widget-theme-post-content h4,
.single-project .elementor-widget-theme-post-content h5,
.single-project .elementor-widget-theme-post-content h6,
.single-project .elementor-widget-theme-post-content figure {
    margin-top: 50px;
}

.single-project .elementor-widget-theme-post-content h2:first-of-type,
.single-project .elementor-widget-theme-post-content h3:first-of-type,
.single-project .elementor-widget-theme-post-content h4:first-of-type,
.single-project .elementor-widget-theme-post-content h5:first-of-type,
.single-project .elementor-widget-theme-post-content h6:first-of-type {
    margin-top: 0;
}

.single-project .elementor-widget-theme-post-content figure,
.single-project .elementor-widget-theme-post-content figure img {
    width: 100%;
    max-width: 100%;
}

.single-project .project-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.single-project .project-category-box {
    background-color: #d3e7f4;
    /* Light blue background */
    color: #2d3e50;
    /* Dark text color */
    padding: 10px 20px;
    border-radius: 10px;
    /* Rounded corners */
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    display: inline-block;
}

.single-project .project-subtitle {
    font-size: 40px;
    line-height: 110%;
    color: var(--tertiary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.single-project .project-gallery-carousel .carousel-slide.slick-slide {
    padding-right: 24px;
}

@media (max-width: 768px) {
    .single-project .project-gallery-carousel .carousel-slide.slick-slide {
        padding-right: 0px;
    }
    .project-details-table td:first-child {
        padding-right: 20px;
    }
}

.single-project .project-gallery-carousel .carousel-slide.slick-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.single-project .project-gallery-carousel .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 40px 0 0 0;
    list-style-type: none;
    gap: 12px;
}

.single-project .project-gallery-carousel .slick-dots li {
    margin: 0;
}

.single-project .project-gallery-carousel .slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: var(--primary-color);
    text-indent: -9999px;
}

.single-project .project-gallery-carousel .slick-dots li.slick-active button,
.single-project .project-gallery-carousel .slick-dots li.slick-active button:hover,
.single-project .project-gallery-carousel .slick-dots li button:hover {
    background-color: var(--secondary-color);
}