/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.project-one__shape-1 {
    position: absolute;
    top: 168px;
    right: 20px;
    z-index: -1;
}

.project-one__shape-1 img {
    width: auto;
}

.project-one__bg-color {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% - -800px) /3);
    background-color: var(--tanspot-primary);
    z-index: -1;
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
}

.project-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 62px;
}

.project-one__top .section-title {
    margin-bottom: 0px;
}

.project-one__btn-box {
    position: relative;
    display: block;
}

.project-one__bottom {
    position: relative;
    display: block;
}

.project-one__bottom .container {
    max-width: 1730px;
}

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--tanspot-bdr-radius);
    background-color: var(--tanspot-black);
}

.project-one__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--tanspot-black-rgb), .85);
    border-radius: var(--tanspot-bdr-radius);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.project-one__single:hover .project-one__img::before {
    opacity: 1;
    transform: translateY(0px);
}

.project-one__img img {
    width: 100%;
    opacity: .70;
    border-radius: var(--tanspot-bdr-radius);
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.project-one__content {
    position: absolute;
    bottom: 33px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.project-one__title-box {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateX(-60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.project-one__single:hover .project-one__title-box {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 200ms;
}

.project-one__sub-title {
    color: var(--tanspot-primary);
}

.project-one__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    opacity: 0;
    transform: translateX(-60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.project-one__single:hover .project-one__title {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 400ms;
}

.project-one__title a {
    color: var(--tanspot-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__title a:hover {
    color: var(--tanspot-base);
}

.project-one__arrow {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateX(60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.project-one__single:hover .project-one__arrow {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 600ms;
}

.project-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--tanspot-base);
    font-size: 16px;
    color: var(--tanspot-white);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__arrow a:hover {
    background-color: var(--tanspot-white);
    color: var(--tanspot-base);
}


/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    padding: 120px 0 120px;
}

.project-two .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.project-two .project-one__single {
    margin-bottom: 0;
}

.project-two__carousel.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    margin: 40px 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 2px solid rgba(var(--tanspot-black-rgb), .70);
    background-color: transparent;
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active {
    border: 2px solid var(--tanspot-base);
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot:before {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    content: "";
    background-color: rgba(var(--tanspot-black-rgb), .70);
    border-radius: 2px;
    transform: scale(1);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active:before {
    transform: scale(1);
    background-color: var(--tanspot-base);
}

.project-two__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
    padding: 50px 0 90px;
}


/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.project-details__left {
    position: relative;
    display: block;
}

.project-details__img {
    position: relative;
    display: block;
}

.project-details__img img {
    width: 100%;
    border-radius: 20px;
}

.project-details__title-1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    margin-top: 31px;
    margin-bottom: 19px;
}

.project-details__title-2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    margin-top: 52px;
    margin-bottom: 19px;
}

.project-details__text-and-img {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 31px;
    margin-bottom: 61px;
}

.project-details__text-img {
    position: relative;
    display: block;
}

.project-details__text-img img {
    width: auto;
    border-radius: 20px;
}

.project-details__title-3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
}

.project-details__text-4 {
    margin-top: 29px;
    margin-bottom: 31px;
}

.project-details__img-and-points {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-details__points-img {
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
}

.project-details__points-img img {
    width: 100%;
    border-radius: 20px;
}

.project-details__points {
    position: relative;
    display: block;
}

.project-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-details__points li+li {
    margin-top: 16px;
}

.project-details__points li .icon {
    position: relative;
    display: inline-block;
}

.project-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--tanspot-base);
}

.project-details__points li p {
    color: var(--tanspot-black);
}

.project-details__sidebar {
    position: relative;
    display: block;
}

.project-details__information {
    position: relative;
    display: block;
    background-color: var(--tanspot-primary);
    border-radius: var(--tanspot-bdr-radius);
    padding: 40px 40px 40px;
    margin-bottom: 30px;
}

.project-details__information-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 30px;
}

.project-details__information-list {
    position: relative;
    display: block;
}

.project-details__information-list li {
    position: relative;
    display: block;
    background-color: var(--tanspot-white);
    border: 1px solid var(--tanspot-bdr-color);
    border-radius: 20px;
    padding: 18px 30px 19px;
}

.project-details__information-list li+li {
    margin-top: 12px;
}

.project-details__information-list li h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--tanspot-black);
    margin-bottom: 4px;
}


.project-details__get-started {
    position: relative;
    display: block;
    background-color: var(--tanspot-primary);
    border-radius: var(--tanspot-bdr-radius);
    padding: 40px 40px 40px;
}

.project-details__get-started-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.project-details__get-started-text {
    margin-top: 18px;
    margin-bottom: 29px;
}

.project-details__get-started-points {
    position: relative;
    display: block;
}

.project-details__get-started-points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-details__get-started-points li+li {
    margin-top: 11px;
}

.project-details__get-started-points li .icon {
    position: relative;
    display: inline-block;
    top: 5px;
}

.project-details__get-started-points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--tanspot-black);
}

.project-details__get-started-points li p {
    color: var(--tanspot-black);
}

.project-details__get-started-points li p a {
    color: var(--tanspot-black);
}

.project-details__get-started-points li p a:hover {
    color: var(--tanspot-base);
}

.project-details__get-started-btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.project-details__previous-next {
    position: relative;
    display: block;
    margin-top: 60px;
}

.project-details__previous-next ul {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--tanspot-bdr-color);
    padding: 15px 20px 15px;
    border-radius: var(--tanspot-bdr-radius);
}

.project-details__previous-next ul li {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
}

.project-details__previous-next ul li::before {
    position: absolute;
    top: -16px;
    right: 0;
    bottom: -16px;
    width: 1px;
    background: var(--tanspot-bdr-color);
    content: "";
}

.project-details__previous-next ul li:last-child:before {
    display: none;
}

.project-details__previous-next ul li:nth-child(2) {
    float: right;
    text-align: right;
}

.project-details__previous-next ul li:nth-child(2) .text-box {
    margin-left: 0px;
    margin-right: 20px;
}

.project-details__previous-next ul li:nth-child(2) .icon a {
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon {
    position: relative;
    display: block;
}

.project-details__previous-next ul li .icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: var(--tanspot-base);
    color: var(--tanspot-white);
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon a:hover {
    background: var(--tanspot-black);
}

.project-details__previous-next ul li .icon a span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
}

.project-details__previous-next ul li:nth-child(1) .icon a span {
    transform: rotate(-180deg);
}

.project-details__previous-next ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.project-details__previous-next ul li .text-box a {
    color: var(--tanspot-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.project-details__previous-next ul li .text-box a:hover {
    color: var(--tanspot-base);
}






/* Modern Fire Extinguisher Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 25px 0;
}

.thead-dark {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

tbody tr:hover {
    background: #ebf5fb;
}

.thead-dark tr {
    background: transparent;
}

.thead-dark th {
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 18px 15px;
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thead-dark th:first-child {
    background: #34495e;
}

tbody tr {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #ecf0f1;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background: #f8f9fa;
}

tbody tr:hover {
    background: #e3f2fd;
}

tbody th {
    font-weight: 600;
    color: #2c3e50;
    padding: 16px 20px;
    text-align: left;
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    font-size: 14px;
}

tbody td {
    padding: 16px 15px;
    text-align: center;
    color: #495057;
    font-size: 14px;
    border: none;
    transition: all 0.2s ease;
}

/* Highlight important specifications */
tbody tr:nth-child(6) td,  /* Capacity row */
tbody tr:nth-child(11) td, /* Fire rating row */
tbody tr:nth-child(14) td, /* Jet range row */
tbody tr:nth-child(15) td { /* Hose/Nozzle row */
    font-weight: 600;
    color: #e74c3c;
}

/* Special styling for capacity values */
td:contains("9 kg") { 
    background: #fff3e0; 
    color: #e65100;
    font-weight: 700;
}
td:contains("2 kg") { 
    background: #e8f5e8; 
    color: #2e7d32;
    font-weight: 700;
}
td:contains("4 kg") { 
    background: #e3f2fd; 
    color: #1565c0;
    font-weight: 700;
}

/* Fire rating badges */
td:contains("4A:144B"),
td:contains("1A:21B"), 
td:contains("2A:55B") {
    background: #e74c3c;
    color: white;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin: 2px 0;
}

/* Pressure values */
td:contains("15 Bar"),
td:contains("60 Bar") {
    font-weight: 600;
    color: #d35400;
}

/* PDF download section */
tbody tr:last-child {
    background: #f8f9fa;
    border-top: 2px solid #dee2e6;
}

tbody tr:last-child td {
    padding: 20px 15px;
}

.icon_pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px; 
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #495057;
}

.icon:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    text-decoration: none;
}

.far.fa-file-pdf {
    font-size: 16px;
}

.icon:hover .far.fa-file-pdf {
    color: white;
}

.icon strong {
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
        margin: 15px -10px;
        border-radius: 8px;
    }
    
    .table {
        font-size: 12px;
        min-width: 800px;
    }
    
    .thead-dark th,
    tbody th,
    tbody td {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .icon {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Header column styling */
tbody th {
    position: relative;
}

tbody th::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #dee2e6;
}

/* Subtle animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tbody tr {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Approved badges */
td:contains("BIS / CE") {
    color: #27ae60;
    font-weight: 600;
    font-size: 12px;
}

/* Weight and dimension styling */
td:contains("approx.") {
    color: #6c757d;
    font-size: 13px;
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/