/* Lists */
.custom-list {
		margin: 0;
		padding: 0;
	  }
	  
	  .custom-list-item {
		display: flex;
		align-items: center;
		list-style: none;
		gap: 10px;
	  }
	  
	  .plus-sign {
		color: red;
		font-size: 24px;
		line-height: 1;
	  }
	  
	  .text-block {
		display: block;
		font-size: 16px;
	  }
	  
	  .text-block strong {
		color: red;
	  }

      .text-color-red {
        color: red;
      }

/* itinerary page */
.itin-about {
	padding-left:30px;
}
.itin-about h1 {
	text-align: left;
	font-weight: 700;
	font-size: 30px;
	line-height:30px;
	color: #ff0000;
	padding-bottom: 30px;
	position: relative;
}

.itin-about h2 {
	text-align: left;
	font-weight: 700;
	font-size: 20px;
	line-height:30px;
	color: #ff0000;
	padding-bottom: 5px;
	position: relative;
}

.itin-about h2 p {
	text-align: left;
	font-size: 18px;
	line-height:30px;
	color: #ffffff;
	padding-bottom: 5px;
	position: relative;
}

.itin-about h3 {
	text-align: left;
	font-weight: 700;
	font-size: 18px;
	line-height:30px;
	color: #ff0000;
	padding: 5px;
	position: relative;
}

.itin-about p {
	text-align: left;
	font-size: 14px;
	line-height:30px;
	color: #d8d8d8;
	padding: 5px;
	position: relative;
}

.itin-about h2 span {
	color: #ff0000;
}
.itin-about h2:before {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 50px;
	height: 2px;
}
.itin-about h2 a {
	color: #ff0000;
}
.itin-about p  {
	text-align: left;
	text-align:justify;
    color: rgb(180, 180, 180);
}

/* Section Title */
.block-title {
    margin-top: 10px;
    padding-bottom: 10px;
    position: relative;
}
.block-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 30px;
}
.block-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 1px;
    width: 55%;
    background: #eee;
}
.block-title h3 {
    font-size: 18px;
    text-align: left;
    text-transform: uppercase;
    color: #000;
    font-weight: 800;
    float: left;
    width: 100%;
    letter-spacing: 2px;
    padding-bottom: 10px;
    line-height: 24px;
}

/* Block List */
.block-list {
    margin: 0;
    padding: 0;
}
.block-list-item {
    display: flex;
    align-items: center; /* Aligns plus sign inline with text */
    list-style: none;
    gap: 0.625rem; /* ~10px at 16px root font */
    margin-bottom: 0.625rem; /* Adds spacing between list items */
}
.block-list-plus {
    color: red;
    font-size: 1.5rem; /* ~24px, scales with root font */
    line-height: 1; /* Aligns with text baseline */
    flex-shrink: 0; /* Prevents plus sign from shrinking */
}
.block-list-text {
    display: block;
    font-size: 0.875rem; /* ~14px, scales with root font */
    margin: 0; /* Resets <p> margins */
    line-height: 1.5; /* Improves text readability */
}
.block-list-text strong {
    color: red;
}
/* Video Background Styles for Web Design Page */
.content[data-pagetitle="Web Design"] .swiper-slide .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the slide area */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Ensure overlay and other elements remain on top */
.content[data-pagetitle="Web Design"] .fixed-column-wrap .overlay {
    z-index: 3;
}

.content[data-pagetitle="Web Design"] .fixed-column-wrap_title,
.content[data-pagetitle="Web Design"] .fixed-column-dec,
.content[data-pagetitle="Web Design"] .scroll-notifer,
.content[data-pagetitle="Web Design"] .section-counter,
.content[data-pagetitle="Web Design"] .fcwc-pagination {
    z-index: 4;
}

/* Gallery Filters */
.gallery-filters-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gallery-filters {
    display: flex;
    flex-direction: row;
    gap: 20px; /* Spacing between filter items */
    flex-wrap: nowrap; /* Prevent wrapping to keep items in a single row */
    justify-content: center;
}

.fixed-bottom-panel .gallery-filters a {
    height: 75px;
    line-height: 75px;
    display: inline-flex; /* Use inline-flex for proper alignment */
    padding: 0 20px; /* Adjusted padding for better spacing */
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s linear;
}

.fixed-bottom-panel .gallery-filters a:hover,
.fixed-bottom-panel .gallery-filters a.gallery-filter-active {
    color: #fff;
}

.fixed-bottom-panel .gallery-filters a:after {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    z-index: 1;
    top: 0; /* Adjusted to match .hfw styling */
    transition: all 200ms linear;
    background: #fff; /* Match active state */
}

.fixed-bottom-panel.hfw .gallery-filters a:after {
    top: 0; /* Ensure top underline for horizontal layout */
}

.fixed-bottom-panel .gallery-filters a.gallery-filter-active:after {
    width: 100%;
}

.psn_button {
    margin-left: 20px; /* Space between filters and filter button */
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    display: none; /* Hidden by default, shown in responsive */
    height: 75px;
    line-height: 75px;
    background: #3C3C3C;
    width: 220px;
}

.psn_button i {
    margin-right: 10px;
}

/* Responsive adjustments */
@media only screen and (max-width: 564px) {
    .gallery-filters-wrap {
        justify-content: flex-start; /* Align to left for mobile */
    }

    .gallery-filters {
        flex-direction: column; /* Stack vertically on mobile */
        width: 100%;
        padding: 50px 40px 30px;
        background: #313131;
        position: absolute;
        bottom: 100%;
        left: 0;
        display: none; /* Hidden by default, toggled by .psn_button */
    }

    .gallery-filters.init_hidden_filter {
        display: none; /* Ensure initial hidden state for mobile */
    }

    .gallery-filters a {
        text-align: left;
        padding-left: 20px;
        height: auto;
        line-height: normal;
        margin-bottom: 20px;
    }

    .fixed-bottom-panel .gallery-filters a:after {
        left: -10px;
        bottom: 8px;
        height: 1px;
    }

    .fixed-bottom-panel .gallery-filters a.gallery-filter-active:after {
        width: 20px;
    }

    .psn_button {
        display: block; /* Show filter button on mobile */
    }

    .gallery-filters.vis-filter {
        display: block; /* Show filters when toggled */
    }
}

/* Responsive adjustments */
@media only screen and (max-width: 1500px) {
    .content[data-pagetitle="Web Design"] .slideshow-container {
        position: relative;
        height: auto;
    }
    .content[data-pagetitle="Web Design"] .background-video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media only screen and (max-width: 764px) {
    .content[data-pagetitle="Web Design"] .slideshow-container {
        height: 50vh; /* Adjust height for smaller screens */
    }
}

a{
  color: #ff0000;
}

/* List 2 */
/* Base styles for lists, left-justified with no background */
.list-container {
    position: relative;
    padding: 20px 0;
    color: #000;
    z-index: 10;
    margin: 20px 0;
    overflow: hidden;
}

.list-container h2 {
    font-size: 20px;
    color: red;
    font-weight: 600;
    padding: 10px 0;
    margin: 0 0 10px 0;
    text-align: left;
}

/* Unordered list styles */
.list-unordered {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.list-unordered li {
    position: relative;
    padding: 10px 0 10px 40px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.list-unordered li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s linear;
}

.list-unordered li:hover {
    padding-left: 50px;
    color: #333;
}

.list-unordered li:hover:before {
    width: 30px;
    background: #000;
}

/* Ordered list styles */
.list-ordered {
    list-style: none;
    counter-reset: list-counter;
    padding: 0;
    margin: 0;
    text-align: left;
}

.list-ordered li {
    position: relative;
    padding: 10px 0 10px 50px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    counter-increment: list-counter;
    transition: all 0.3s ease-in-out;
}

.list-ordered li:before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    letter-spacing: 2px;
    color: #000;
    z-index: 2;
}

.list-ordered li:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    width: 10px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s linear;
}

.list-ordered li:hover {
    padding-left: 60px;
    color: #333;
}

.list-ordered li:hover:after {
    width: 20px;
    background: #000;
}

/* Optional decorative wrapper for lists */
.list-decor-wrap {
    position: relative;
    z-index: 11;
}

.list-decor-wrap:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.list-decor-wrap:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 30px;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

