/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

.about-img img {
  animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
}

.pro-row {
    padding: 50px 22px 50px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    position: relative;
    min-height: 322px;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s linear;
}

.pro-row:hover {
    background: #f4aa36;
    background: -moz-linear-gradient(to bottom, rgb(244 170 54) 2%, rgb(243 115 53) 100%);
    background: -webkit-linear-gradient(to bottom, rgb(244 170 54) 2%, rgb(243 115 53) 100%);
   background: linear-gradient(to bottom, rgb(244 170 54) 2%, rgb(243 115 53) 100%);
}
.pro-row:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -135px 0 0 -135px;
    background-image: url(https://ticketdost.in/spiritual/wp-content/uploads/2026/01/service-circle.png);
    width: 271px;
    height: 270px;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
    z-index: -1;
}
.pro-row:hover:after {
    visibility: visible;
    opacity: 1;
}
.pro-row:hover h3.elementor-image-box-title {
    color: #fff;
}
.pro-row .elementor-image-box-img img {
    margin: auto;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}
.pro-col p {
    font-family: 'Poppins';
    color: #240429;
    font-size: 16px;
}

.pro-col ul li {
    font-size: 16px;
    font-family: 'Poppins';
    padding-bottom: 7px;
    letter-spacing: 0.2px;
    color: #2d0e31;
    list-style: circle;
    list-style-position: inside;
}
.pro-col ul {
    padding: 0;
    margin: 0;
}
.pro-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 25px;
}
.pro-btn a {
    background: #13325a;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
}
.pro-row:hover .pro-col p{
	color: #fff !important;
}
.pro-row:hover .pro-col ul li{
	color: #fff !important;
}

.contact-row .col-6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-row .col-6 input, .contact-row .col-12 textarea {
    float: left;
    width: 100%;
    height: 45px;
    padding: 0px 15px;
    border: 1px solid #e1e1e1;
    margin-bottom: 15px;
}
.contact-row .col-12 textarea{
	height:100px;
}
.contact-row .wpcf7-submit {
    background: #ff4500 !important;
    border: none;
    padding: 15px 35px !important;
    color: #fff !important;
    font-size: 18px !important;
    border-radius: 50px !important;
}
/* Multiple Floating background text */
        .floating-bg {
            position: fixed;
            width: 200%;
            height: 100px;
            font-size: 28px;
            font-weight: 600;
            z-index: -1;
            pointer-events: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

        .floating-bg-1 {
            top: 10%;
            color: rgba(255, 69, 0, 0.08);
            animation: floatText1 45s linear infinite;
            transform: rotate(-10deg);
        }

        .floating-bg-2 {
            top: 30%;
            color: rgba(255, 99, 71, 0.06);
            animation: floatText2 55s linear infinite reverse;
            transform: rotate(8deg);
        }

        .floating-bg-3 {
            top: 50%;
            color: rgba(255, 140, 0, 0.07);
            animation: floatText3 65s linear infinite;
            transform: rotate(-12deg);
        }

        .floating-bg-4 {
            top: 70%;
            color: rgba(255, 165, 0, 0.05);
            animation: floatText4 50s linear infinite reverse;
            transform: rotate(15deg);
        }

        .floating-bg-5 {
            top: 85%;
            color: rgba(255, 69, 0, 0.09);
            animation: floatText5 40s linear infinite;
            transform: rotate(-8deg);
        }
.red-om {
    filter: hue-rotate(0deg) saturate(1.5) brightness(1.2);
}
        @keyframes floatText1 {
            0% { transform: translateX(-100%) rotate(-10deg); }
            100% { transform: translateX(100%) rotate(-10deg); }
        }

        @keyframes floatText2 {
            0% { transform: translateX(-100%) rotate(8deg); }
            100% { transform: translateX(100%) rotate(8deg); }
        }

        @keyframes floatText3 {
            0% { transform: translateX(-100%) rotate(-12deg); }
            100% { transform: translateX(100%) rotate(-12deg); }
        }

        @keyframes floatText4 {
            0% { transform: translateX(-100%) rotate(15deg); }
            100% { transform: translateX(100%) rotate(15deg); }
        }

        @keyframes floatText5 {
            0% { transform: translateX(-100%) rotate(-8deg); }
            100% { transform: translateX(100%) rotate(-8deg); }
        }

.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.95), rgba(255, 140, 0, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}
.welcome-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.welcome-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}
.enter-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white !important;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    backdrop-filter: blur(10px);
}
.music-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 69, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
	display: none !important;
}
.music-wave {
    width: 3px;
    height: 15px;
    background: white;
    border-radius: 2px;
    animation: musicWave 1s ease-in-out infinite alternate;
}
.music-wave:nth-child(2) {
    animation-delay: 0.1s;
}
.music-wave:nth-child(3) {
    animation-delay: 0.2s;
}
.music-wave:nth-child(4) {
    animation-delay: 0.3s;
}

        @keyframes musicWave {
            0% { transform: scaleY(0.3); }
            100% { transform: scaleY(1); }
        }

.floating-text-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.floating-jai-shri-ram {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.08);
            white-space: nowrap;
            animation: floatAcross 15s linear infinite;
        }

        .floating-ram-ram {
            position: absolute;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.06);
            white-space: nowrap;
            animation: floatDiagonal 12s linear infinite;
        }

        .floating-jai-shri-ram:nth-child(1) { top: 10%; animation-delay: 0s; }
        .floating-jai-shri-ram:nth-child(2) { top: 30%; animation-delay: 5s; }
        .floating-jai-shri-ram:nth-child(3) { top: 50%; animation-delay: 10s; }
        .floating-jai-shri-ram:nth-child(4) { top: 70%; animation-delay: 7s; }

        .floating-ram-ram:nth-child(5) { top: 15%; animation-delay: 3s; }
        .floating-ram-ram:nth-child(6) { top: 35%; animation-delay: 8s; }
        .floating-ram-ram:nth-child(7) { top: 55%; animation-delay: 1s; }
        .floating-ram-ram:nth-child(8) { top: 75%; animation-delay: 6s; }
 @keyframes floatAcross {
            0% { 
                transform: translateX(-100%) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { 
                transform: translateX(100vw) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes floatDiagonal {
            0% { 
                transform: translateX(-100%) translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { 
                transform: translateX(100vw) translateY(-100px) rotate(180deg);
                opacity: 0;
            }
        }

.our-service-cont ul {
/*     padding: 0;
    list-style: none; */
    color: #000;
}
.our-service-cont .jeg-elementor-kit:hover ul li {
    color: #fff;
}

.our-service-cont:hover h2.title, .our-service-cont:hover .jeg-elementor-kit ul li {
    color: #fff !important;
}
.dark-color {
    background: #FF4500;
}
.dark-color h2.title, .dark-color .jeg-elementor-kit ul li{
	color: #fff !important;
}
.dark-color img, .our-service-cont:hover img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(238deg) brightness(102%) contrast(101%);
}
.our-service-cont {
    border: 1px solid #cacaca;
}
.our-service-cont:hover {
    background:#FF4500;
}
.pro-row .pro-btn a:hover {
    color: #fff;
}
a.whts-btn {
    background: green;
}

@media screen and (max-width: 767px) {
.contact-row .col-6 input, .contact-row .col-12 textarea {
    margin-bottom: 0;
}
	.contact-row .col-6 {
    grid-template-columns: 1fr;
}
	.contact-row .col-12 textarea {
    margin-bottom: 20px;
}
	a.jkit-button-wrapper {
    white-space: normal !important;
}
	div#why-this-con::before {
    background: #af3407;
    opacity: 1 !IMPORTANT;
}
}