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%;
}

.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;

}

.custom-category-section {
    display: flex;

}

.custom-category-right {
    width: 50%;
    text-align: center;
}

.custom-category-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.custom-category-name {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 24px;
    font-weight: bold;
    background-color: #f8b400;
    color: white;

    margin-top: 10px;
    border-radius: 5px;
}

.custom-category-left {
    width: 40%;
    display: flex;
    flex-direction: column;

}

.custom-category-left-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 500px;
    /* Ensures all three images match the height of the right-side image */
}

.custom-category-left-image {
    width: 100%;
    height: 33.33%;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.custom-category-left-image:hover {
    transform: scale(1.1);
    border-color: #f8b400;
}

.custom-category-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #f8b400;
    color: white;

    border-radius: 5px;
    text-decoration: none;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: flex;
    align-items: center;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-category-button i {
    font-size: 18px;
}

.custom-category-left-item:hover .custom-category-button {
    opacity: 1;
}






.content {
    max-width: 450px;
    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: 48% !important;
}

@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: 100% !important;
    }
}

header.fixed .inner-content {
    padding: 5px 0 !important;
}

.blogListing .img-wrapper {
    height: 100% !important;
}

.icon-star-fill:before {
    color: #ebac09 !important;
}

.product-items {
    width: 32% !important;
}

@media (max-width: 768px) {
    .product-items {
        width: 49% !important;
    }
}

header .inner-content {
    padding: 6px 0 !important;
}

.enqary-inner-box {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 20px;
}

@media (max-width:480px) {
    .enqary-inner-box {
        display: flex;
        flex-direction: column;
    }
}

.enqary-inner-box .calling-box {
    width: 30%;
    padding: 10px;
    background: #ff0000b3;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15px;
}

.enqary-inner-box .calling-box i {
    color: white;
    font-size: 19px;
}

@media (max-width:480px) {
    .enqary-inner-box .calling-box {
        width: 100%;
        font-size: 19px;
        margin-bottom: 16px;
    }
}

.enqary-inner-box .enquiry-box {
    /*width: 30%;*/
    /*padding: 10px;*/
    /*background: #ffff0085;*/
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
}



/*---------------------------------- modal-------------------------- */
.enquiry-box {
    text-align: center;
}

.btn1 {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.btn1:hover {
    background-color: #0056b3;
}


@media (max-width:480px) {
    .enqary-inner-box .enquiry-box {
        width: 100%;
        margin-bottom: 16px;

    }

    .btn1 {
        font-size: 19px !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 23px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    background-color: #ff0000b3;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}


/*--------------------------------------- modal end ------------------ */

.enquiry-box .btn1 {
    height: 0;
    width: 100%;
    color: black;
    background: #ffff0085;
    font-size: 15px;
}

.enqary-inner-box .whatapps-box {
    width: 30%;
    padding: 10px;
    background: green;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15px;
}

@media (max-width:480px) {
    .enqary-inner-box .whatapps-box {
        width: 100%;
        font-size: 19px;

    }

}


.enqary-inner-box .whatapps-box i {
    color: white;
    font-size: 19px;
}

.items .item {
    width: 20%;
  
    /*background:red;*/
}

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: #e97523;
}

@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; */
    }
}

.whatsappWrapper .whatsappIconBox .whatsappStickyIcon {
    align-items: center;
    background: #2db742;
    border-radius: 50%;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
    margin-bottom: 1rem !important;
}

.social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.social-bar a {
    display: block;
    text-align: center;
    padding-top: 10px;
    padding: 10px;
    margin: 5px 0;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-bar a.facebook {
    background: #3b5998;
}

.social-bar a.twitter {
    background: #1da1f2;
}

.social-bar a.youtube {
    background: #ff0000;
}

.social-bar a.linkedin {
    background: #0077b5;
}

.social-bar a.instagram {
    background: #e4405f;
}

.social-bar a:hover {
    opacity: 0.8;
}/* Add styling for the image wrapper */
.img-wrapper {
    position: relative;
    overflow: hidden;
}

/* Hover overlay that appears on image hover */
.img-wrapper .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(12 44 102 / 38%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

/* When hovering over the image, show the overlay */
.img-wrapper:hover .hover-overlay {
    opacity: 1;
}

/* Style the "Read More" button */
.read-more-btn {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.read-more-btn:hover {
    background-color: #007bff;
    color: #fff;
}

/* Optional: Add a slight shadow to the button */
.read-more-btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
a, button{
    font-weight: 700 !important;
}/* Call Now Button */
.enquiry-call-now-btn {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 12px 20px;
    background-color: #4CAF50;  /* Green */
    color: white;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.enquiry-call-now-btn i {
    margin-right: 8px;
}

.enquiry-call-now-btn:hover {
    background-color: #45a049;  /* Darker green on hover */
    transform: scale(1.05);
}

/* Enquiry Now Button */
.enquiry-form-btn {
    padding: 12px 20px;
    background-color: #007bff;  /* Blue */
    color: white;
    border-radius: 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.enquiry-form-btn:hover {
    background-color: #0056b3;  /* Darker blue on hover */
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #25d366;  /* WhatsApp Green */
    color: white;
    border-radius: 30px;
    height: 44px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn i {
    margin-right: 8px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;  /* Darker green on hover */
    transform: scale(1.05);
}

/* Responsive Design for Small Screens */
@media (max-width: 600px) {
    .enquiry-call-now-btn,
    .enquiry-form-btn,
    .whatsapp-btn {
        width: 100%;  /* Full width buttons on mobile */
        font-size: 14px;  /* Slightly smaller font on small screens */
    }
	
	
}

.feature-box1{
	width: 18%;
}

.corporate-office {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    .corporate-office h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #333;
    }

    .card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 90px;
    }

  @media(max-width:480px) {
       .card-container {
        gap: 20px;
    }
  }


    .card {
        border: 2px solid #e97523;
        border-radius: 8px;
        padding: 20px;
        background-color: #fff;
        width: 320px;
        /*text-align: left;*/
        position: relative;
        transition: box-shadow 0.3s ease-in-out;
    }

    .card:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .card .icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
    }

    .card p {
        font-size: 0.9rem;
        color: #555;
        margin-bottom: 15px;
    }

    .card .action-link {
        text-decoration: none;
        font-weight: bold;
        color: #e97523;
        border-bottom: 1px solid #e97523;
        padding-bottom: 2px;
        transition: color 0.3s ease-in-out;
    }

    .card .action-link:hover {
        color: #e97523;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .card-container {
            flex-direction: column;
            align-items: center;
        }

        .card {
            width: 90%;
        }
    }
    
    
      .contact-section {
        /*max-width: 1200px;*/
        /*margin: 0 auto;*/
        padding: 20px;
        text-align: center;
        margin-bottom:2.5rem;
    }

    .contact-section h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #333;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .form-box,
    .map-box {
        border: 2px solid #1d6fa1;
        border-radius: 8px;
        background-color: #fff;
        padding: 20px;
        width: 45%;
        min-width: 300px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    form input,
    form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        /*border: 0px solid red;*/
        border-radius: 4px;
        font-size: 0.9rem;
        box-sizing: border-box;
    }

    form textarea {
        resize: none;
    }

    form .submit-btn {
        width: 100%;
        padding: 10px;
        background-color: #e97523;
        color: #fff;
        font-size: 1rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    form .submit-btn:hover {
        background-color: #e97523;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-container {
            flex-direction: column;
        }

        .form-box,
        .map-box {
            width: 100%;
        }
    }


.bl-ink {
    animation: blink 1s infinite;
}

@keyframes blink {
	0%, 100% {
		transform: scale(0.9);
	}
	50% {
		transform: scale(1);
	}
}

.page-header {
    background-image: url( "../images/page-header-bg.png");
    background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
    width: 100%;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-header:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000075;
    z-index: -1;
}

.page-header-info h4 {
    background: #1d6fa1;
    color: var(--white-color);
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    border-radius: 2px;
}
