body {
    overflow: hidden;
}

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0999999;
    height: 100vh;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -50px;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(150vh);
    }
}


.lights {
    --color-1: 255, 45, 53;
    --color-2: 50, 162, 90;
    --color-3: 255, 201, 67;
    display: flex;
    justify-content: space-between;
    flex-flow: nowrap;
    gap: 50px;
    padding: 6px 0 30px 0;
    overflow: hidden;
    pointer-events: none;
    color: rgb(255, 201, 67);
    margin-top: -10px;
}

.lights li {
    flex: none;
    position: relative;
    list-style: none;
    width: 15px;
    height: 30px;
    border-radius: 50%;
}


/* General Section Styling */
.our-services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.service-item {
  position: relative;
  width: 30%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-image img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.service-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.service-item:hover .service-info {
  opacity: 1;
}

.service-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 14px;
}





/* Icons */
.service-image {
  position: relative;
}

.service-image::before {
  content: '\f015'; /* FontAwesome icon code for hotel (example) */
  font-family: 'FontAwesome';
  font-size: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
}



.lights li:before {
    position: absolute;
    content: "";
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #777777;
    border-radius: 100%;
}

.lights li:after {
    position: absolute;
    content: "";
    z-index: -1;
    top: -2px;
    left: 50%;
    width: 70px;
    height: 5px;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}

.lights li:last-child:after {
    display: none;
}

.lights li {
    background-color: rgba(var(--color-1), 1);
    box-shadow: 0 3px 18px 2px rgba(var(--color-1), 1);
    animation: lighting-1 1.25s infinite linear;
}

@keyframes lighting-1 {
    50% {
        background-color: rgba(var(--color-1), 0.25);
        box-shadow: 0 5px 24px 3px rgba(var(--color-1), 0.25);
    }
}

.lights li:nth-child(odd) {
    /* 1, 3, 5, ... */
    background-color: rgba(var(--color-2), 1);
    box-shadow: 0 3px 18px 2px rgba(var(--color-2), 0.8);
    animation: lighting-2 1.5s infinite linear;
}

@keyframes lighting-2 {
    50% {
        background-color: rgba(var(--color-2), 0.4);
        box-shadow: 0 3px 18px 2px rgba(var(--color-2), 0.3);
    }
}

.lights li:nth-child(4n + 2) {
    /* 2, 6, 10, 14, ... */
    background-color: rgba(var(--color-3), 1);
    box-shadow: 0 3px 18px 2px rgba(var(--color-3), 1);
    animation: lighting-3 1.5s infinite linear;
    animation-delay: 1.25s;
}

@keyframes lighting-3 {
    50% {
        background-color: rgba(var(--color-3), 0.25);
        box-shadow: 0 3px 18px 2px rgba(var(--color-3), 0.25);
    }
}

.quick-enqiry-form-wrapper .commonForm {
    max-height: calc(80vh - 160px);
}.swal2-actions button.swal2-confirm {
    background: var(--darkred-color) !important;
    border: 1px solid var(--darkred-color) !important;
    box-shadow: none !important;
}

.top-txtde {
    font-weight: 500 !important;
}
    .filters {
    border-radius: 8px;
    
    padding: 5px;
    background-color: #fff;
    
}

.content {
    max-width: 300px;
    margin: 0 auto;
}

.filter-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    display: flex;
    align-items: center;  /* Align the icon and text */
    font-size: 12px;
    font-weight: 600;
    color: #555;
    padding: 4px 0px;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-left: 4px solid transparent;  /* Initial left border */
    margin: 6px 0; /* Space between list items */
}

.filter-item i {
    margin-right: 10px;  /* Space between icon and text */
    font-size: 16px;
    color: #555;
}

.filter-item:hover {
    color: #007bff;  /* Hover text color */
    background-color: #f0f0f0;  /* Background on hover */
    border-left: 4px solid #007bff;  /* Change left border color on hover */
}

.filter-item:active {
    color: #0056b3; /* Active color */
}

/* Responsive design */
.product-items{
    width: 18% !important;
}
/* General Section Styling */
.product-section {
    padding: 40px 0;
}

.header-box {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d7dd2;
    border-bottom: 4px solid #2d7dd2;
    display: inline-block;
    padding-bottom: 10px;
}

/* Flexbox Layout */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* spacing between items */
    justify-content: center;
}

/* Product Item Styling */
.product-item {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Wrapper with border radius */
.image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Product Image Styling */
.product-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover Effect for Image */
.product-item:hover .product-image {
    transform: scale(1.1); /* Zoom effect */
}

.product-item:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

/* Title Styling */
.product-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

/* Responsive Layout Adjustments */
@media (min-width: 576px) {
    .product-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (min-width: 768px) {
    .product-item {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (min-width: 992px) {
    .product-item {
      /*  flex: 1 1 calc(20% - 20px);  5 items per row */
    }
}

@media (max-width: 575px) {
    .product-title {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .content {
        max-width: 100%;
    }

    .filter-title {
        font-size: 16px;
    }

    .filter-item {
        font-size: 14px;
    }
    .product-items{
    width: 100% !important;
    }.product-item-product{
        width: 49% !important;
    }
}
header.fixed .inner-content {
    padding: 18px 0 !important;
}.blogListing .img-wrapper {
     height: 100% !important; 
}.icon-star-fill:before {
    color: #ebac09 !important;
}header .top-bar .top-row .top-right {
    width: 58% !important;
}header .top-bar .top-row .top-left {
    width: 20% !important;
}.projects-pg .item {

     filter: grayscale(0) !important; 

}    .brochure-section {
    padding: 10px;
}

/* General Styling for the Section 
.brochure-item {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.brochure-item span {
    flex: 1; /* This will make the text take the available space */
}

/* Button Container to align buttons properly */
.button-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Button Styling */
.brochure-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #1d3557;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    
    text-align: center; /* Ensure the text is centered */
}

.brochure-btn:hover {
    background-color: #457b9d;
    transform: translateY(-3px);
}

.brochure-btn i {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .brochure-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .button-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .brochure-btn {
        width: 100%; /* Make buttons full width on smaller screens */
        text-align: center;
    }
}.testimonials-section {
        padding: 50px 20px;
        background-color: #f8f9fa;
    }

    .section-title {
        font-size: 2rem;
        color: #1d3557;
        margin-bottom: 30px;
    }

    /* Swiper Container */
    .testimonial-slider {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Testimonial Item */
    .testimonial-item {
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    /* Testimonial Content */
    .testimonial-content p {
        font-size: 1.1rem;
        font-style: italic;
        color: #333;
        margin-bottom: 20px;
    }

    /* Testimonial Author */
    .testimonial-author h4 {
        font-size: 1.2rem;
        color: #00b360;
    }

    .testimonial-author p {
        color: #777;
        font-size: 1rem;
    }

    /* Swiper Navigation and Pagination */
    .swiper-button-next, .swiper-button-prev {
        color: #1d3557;
    }

    .swiper-pagination-bullet {
        background-color: #1d3557;
    }

.gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr); /* 3 items on desktop */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1); /* Zoom effect on hover */
}

/* Overlay styles */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  /*opacity: 0;*/
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1; /* Show overlay on hover */
}

.overlay p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 items on tablet */
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr; /* 1 item on mobile */
  }
}
.uniqueSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .uniqueSwiper .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .uniqueSwiper .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for zoom and filter */
}

.uniqueSwiper .swiper-slide:hover img {
  transform: scale(1.1);  /* Zoom effect */
  filter: brightness(1.2); /* Optional: Increase brightness when hovered */
}
.our-clients{
    padding-top: 20px;
}
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 15px !important; 
  }  .swiper-button-next, .swiper-button-prev {
    color: #000; /* Button color */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    border-radius: 50%; /* Rounded button */
    padding: 10px;
  }

  .swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Lighter background on hover */
  }

  .featured-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .featured-title span {
    font-weight: bold;
  }
.coreValue .items .item .icon-wrapper, .quick-enqiry-form-wrapper,footer .bottom-section .call-section .icon-wrapper ,.brochure-btn,.right-side-box a {
        background: #00b360 !important;
    }
    footer .bottom-section .call-section .link, .contact-icon-box i{
        color: #e27d28 !important;
    } .about-inner-section {
        padding: 2rem 5rem;
        display: flex;
        justify-content: space-between;
    }

    @media (max-width: 480px) {
        .about-inner-section {
            flex-direction: column;
        }

        .about-inner-section {
            padding: 2rem 1rem;
            display: flex;
            justify-content: space-between;
        }
    }

    .about-inner-section .left-side-box {
        width: 45%;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
    }

    @media (max-width: 480px) {
        .about-inner-section .left-side-box {
            width: 100%;

        }
    }

    .left-side-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease-in-out;
        border-radius: 15px;
    }

    .left-side-box:hover img {
        transform: scale(1.1);
       border-radius: 15px;
        /* Zoom in on hover */
    }

    .about-inner-section .left-side-box img {
        width: 100%;
    }

    .about-inner-section .right-side-box {
        width: 52%;
    }

    .right-side-box p {
        margin-bottom: 1.2rem;

    }

    @media (max-width: 480px) {
        .about-inner-section .right-side-box {
            width: 100%;
        }

        .right-side-box p {
            margin-top: 1.2rem;
            margin-bottom: 1.2rem;
            

        }
        .swiper-button-next{
            display:none;
        }
        .swiper-button-prev{
            display:none;
        }

    }

    .right-side-box a {
        background-color: red;
        padding: 0.6rem 1rem;
        FONT-SIZE: 15PX;
    FONT-WEIGHT: 900;
        color: white;
        text-decoration: none;
        border-radius: 20px;

    }

    .home-about-heading {
        text-align: center;
        margin-top: 2rem;
    }
    
 .home-about-heading h2 {
        font-size: 2rem;
        margin:0;
    }
    .swiper-pagination{
        display:none;
    }
    .img-wrapper{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    }
    
    
        #container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #e27d28;
            margin-bottom: 5rem;
            color: white;
        }

        .image-section {
            flex: 1;
            max-width: 50%;
            display: flex;
            justify-content: center;
        }

        .image-section img {
            max-width: 100%;
            height: auto;
            /*border-radius: 8px;*/
        }

        .content-section {
            flex: 1;
            max-width: 48%;
            /*padding: 20px;*/
        }

        .content-section h2 {
            color: #d71a21;
            font-size: 2rem;
            margin-bottom: 10px;
             margin: 0px;
        }

        .content-section p {
            line-height: 1.6;
            margin-bottom: 20px;
        }

            @media(max-width:480px) {
              .content-section p {  
                text-align: center;
                padding: 0 0.5rem;
            }
            .content-section h2 {
           text-align: center;
            padding: 1rem 0;
}
        }


        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .feature {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 10px;
            /*background-color: #333;*/
            color: white;
            border-radius: 8px;
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            #container {
                flex-direction: column;
            }

            .image-section,
            .content-section {
                max-width: 100%;
            }

            .features {
                flex-direction: column;
            }
        }
   .box {
	position: relative;
	margin: 0 auto;
	background: #FFF;
	max-width: 500px;
}
.ribbon {
	background: #e27d28;
	color: #FFF;
	padding: 6px 50px;
	text-align: center;
	margin-left: -20px;
	margin-right: -20px;
	/*border-radius: 3px 3px 0 0;*/
	position: relative;
}
.ribbon:before, .ribbon:after {
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	top: 100%;
}
.ribbon.red-gradient {
	background: rgb(234,67,53); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(234,67,53,1) 0%, rgba(178,0,0,1) 100%, rgba(125,185,232,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(234,67,53,1) 0%,rgba(178,0,0,1) 100%,rgba(125,185,232,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(234,67,53,1) 0%,rgba(178,0,0,1) 100%,rgba(125,185,232,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea4335', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}
.ribbon.red-gradient:before {
	border-top: 20px solid #861F1A;
	border-left: 20px solid transparent;
	left: 0;
}
.ribbon.red-gradient:after {
	border-top: 20px solid #861F1A;
	border-right: 20px solid transparent;
	left: calc(100% - 20px);
}
.ribbon.blue {
	background: #e27d28;
}
.ribbon.blue.top:before{
	top: -20px;
	left: 0;
	border-bottom: 20px solid #e27d28;
	border-left: 20px solid transparent;
}
.ribbon.blue.top:after{
	top: -20px;
	left: calc(100% - 20px);
	border-bottom: 20px solid #e27d28;
	border-right: 20px solid transparent;
}
.ribbon.blue.bottom:before{
	border-top: 20px solid #e27d28;
	border-left: 20px solid transparent;
	left: 0;
}
.ribbon.blue.bottom:after{
	border-top: 20px solid #e27d28;
	border-right: 20px solid transparent;
	left: calc(100% - 20px);
}
.ribbon.blue.crossed:before{
	top: -20px;
	left: 0;
	border-bottom: 20px solid #e27d28;
	border-left: 20px solid transparent;
}
.ribbon.blue.crossed:after{
	border-top: 20px solid #e27d28;
	border-right: 20px solid transparent;
	left: calc(100% - 20px);
}
.ribbon.expand {
	position: relative;
	padding: 0;
	background: #e27d28;
}
.ribbon.expand:after {
	border-top: 20px solid #e27d28;
	border-right: 20px solid transparent;
	left: calc(100% - 20px);
}
.ribbon.expand:before{
	border-top: 20px solid #e27d28;
	border-left: 20px solid transparent;
	left: 0;
}
.ribbon.expand span {
	position: relative;
	padding: 18px 0;
	display: inline-block;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.ribbon.expand span:before, .ribbon.expand span:after {
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	top: 100%;
}
.ribbon.expand span:after {
	top: -20px;
	left: calc(100% - 20px);
	border-bottom: 20px solid #e27d28;
	border-right: 20px solid transparent;
}
.ribbon.expand span:before{
	border-bottom: 20px solid #e27d28;
	border-left: 20px solid transparent;
	left: 0;
	top: -20px;
} .items .item {
        width: 20%;
        padding: 5px;
    }

    footer .items {
        -moz-column-gap: .5rem;
        column-gap: 0rem !important;
        row-gap: 30px;
    }

    #padding-space {
        text-align: justify;
        width: 95% !important;
    }


    footer .bottom-section .social-icons .items {
        -moz-column-gap: 15px;
        column-gap: 15px !important;
    }

    .contact-icon-box i {
        color: red;
    }

    @media (max-width:480px) {
        footer .items {
            /*-moz-column-gap: .5rem;*/
            column-gap: 0rem !important;
            row-gap: 30px;
            flex-direction: column;
        }

        .items .item {
            width: 100%;
            /* background: red; */
        }
    }