

/* Icons */
.fas, .far, .fal, .fab, .fad {
    color: inherit !important;
}


.c_discount_text {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        to right bottom,
        rgba(255, 49, 49, 0.69),
        rgb(255, 36, 0, 0.69)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* The angled, brush-style “strike” */
.c_discount_text::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 120%;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--red2) 0%,
        var(--red1) 25%,
        var(--red2) 50%,
        var(--red3) 100%
    );
    transform: rotate(-5deg);
    border-radius: 22px;
    filter: blur(0.2px);
    pointer-events: none;
    opacity: 0.9;
}

.c_text_color {
    background: linear-gradient(
        to right bottom,
        var(--text_color_strong_alt),
        var(--text_color_mute_alt)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.c_text_color_alt {
    background: linear-gradient(
        to right bottom,
        var(--text_color_strong),
        var(--text_color_mute)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.c_mute_text_color {
    background: linear-gradient(
        to right bottom,
        var(--text_color_mute_alt),
        var(--text_color_alt)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.c_mute_text_color_alt {
    background: linear-gradient(
        to right bottom,
        var(--text_color_mute),
        var(--text_color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


/* Icon arrow */
.c_arrow {
    color: var(--color-accent);
    padding: 3px 8px;
    font-weight: 500;

}

/* background image for a section */
.c_bg_img {
    position: relative;
    background: var(--section_img);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.c_bg_img1 {
    position: relative;
    background: var(--section_img1);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.c_bg_img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--text_color) 50%, transparent),
        color-mix(in srgb, var(--text_color_mute) 40%, transparent)
    );
    z-index: 2;
}

.c_bg_img > * {
    position: relative;
    z-index: 3;
}
/* background image for a section */


/* feature section start */
.c_feature_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.c_feature_box {
    background: var(--background_color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.c_feature_box:hover {
    transform: var(--scale_effect)
}

.c_feature_image {
    background: var(--background_color);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.c_feature_image img {
    width: 100%;
    border-radius: 15px;
}
/*  feature section ends */

/* feature items start */
.c_feature_icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    background: var(--nav_bg_gradient);
    box-shadow: var(--shadow);
    padding: 0.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
/* feature items end*/


/* Testimonial */
.c_tab-btn {
    border: 2px solid var(--color-neutral);
    background: transparent;
    color: var(--color-neutral);
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 15px;
    transition: 0.2s ease-in-out;
}

.c_tab-btn:hover {
    background: var(--color-neutral);
    color: var(--text_color);
}

.c_tab-btn.active {
    background: var(--color-neutral);
    color: var(--text_color);
    border-color: var(--color-neutral);
}

.c_tab-box {
    background: none;
    border: 2px solid var(--color-neutral);
}

/* End testimonial */

/* Start actionsection */
.c_dash_screenshot {
    max-height: 90%;
    height: auto;
    border-radius: 25px 0px 0px 0px;
}
/* End actionsection */


/* Pricing Table Start */

.c_table_head th {
    background: transparent;
}

tr:nth-child(even) {
    background-color: var(--text_color_strong);
}

/* Pricing Table End */





/* Estimate Slider section Start */

  
/* Tracks */
input[type="range"].c_slider_color::-webkit-slider-runnable-track {
    background: var(--color-secondary);
    height: 6px;
    border-radius: 5px;
}

input[type="range"].c_slider_color::-moz-range-track {
    background: var(--color-secondary);
    height: 6px;
    border-radius: 5px;
}

/* Thumbs */
input[type="range"].c_slider_color::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: var(--color-accent);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
}

input[type="range"].c_slider_color::-moz-range-thumb {
    background: var(--color-accent);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
}
/* Estimate Slider section END */


/* FAQ section start */

.c_faq_q {
    border: 2px solid var(--text_color_alt);
    background: var(--background_color);
    color: var(--text_color_alt);
}

/* Active/open accordion item */
.accordion-item:has(.accordion-collapse.show) .c_faq_q {
    border-color: var(--color-accent);
}

/* FAQ section end */





.c_cta_btn {
  display: inline-block;
  padding: 14px 20px;
  background: var(--text_color_alt);
  color: var(--text_color);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: 
    background 0.4s ease,
    color 0.4s ease,
    transform 0.25s ease; /* smooth animation */
}

/* Optional full-width mode */
.c_cta_full {
  display: block;
  width: 100%;
}

/* Hover animation */
.c_cta_btn:hover {
  background: var(--cta_bg_gradient);
  color: var(--text_color_alt);
}

/* Stats section */
.c_event_stats {
  font-size: 0.95rem;
  color: var(--text_color_alt);
}

.c_event_stats i {
  font-size: 1.1rem;
}

/* Facilities badges */
.c_facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact_item {
    color: var(--text_color_alt);
    padding: 6px 12px;
    text-decoration: none;
    border: 1px solid var(--text_color_alt);
    border-radius: 12px;
    background: transparent;
}

.contact_item:hover {
    background: var(--text_color_alt);
    color: var(--text_color);
}

.facility_item {
  background: var(--text_color_alt);
  color: var(--text_color);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.facility_item:hover {
  transform: translateY(-2px);
}

.c_facilities .facility_item {
  animation: fadeInUp 0.4s ease both;
}