.elementor-1345 .elementor-element.elementor-element-8b8d538{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}@media(min-width:768px){.elementor-1345 .elementor-element.elementor-element-8b8d538{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-5e86368 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(168.41deg, #fff, #ffbc78);
    color: #1c1c1c;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(168.41deg, #fff, #ffbc78);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #e17100;
    margin-bottom: 20px;
    text-align: center;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.loading-logo span {
    color: #1c1c1c;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(225, 113, 0, 0.3);
    border-radius: 50%;
    border-top-color: #e17100;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    color: #666;
    font-family: 'Manrope', sans-serif;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.new-service {
    width: 100%;

    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Header Section */
.container3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(225, 113, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 61px;
    height: 61px;
    border-radius: 14px;
    object-fit: cover;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #1c1c1c;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    color: #1c1c1c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #e17100;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e17100;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1c1c1c;
    font-size: 13px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #e17100;
}

.phone-icon {
    width: 16px;
    height: 16px;
}

.book-appointment {
    background: #e17100;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.book-appointment:hover {
    background: #d16600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 113, 0, 0.3);
}

.book-appointment::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.book-appointment:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Hero Section */
.section {
    padding: 80px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heading-1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative;
}

.svg-underline {
    position: absolute;
    bottom: 30px;
    left: -8px;
    width: 554px;
    height: 160px;
    opacity: 0.6;
}

.subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 48px;
    max-width: 448px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: #fe7b02;
    color: #050505;
    border: none;
    padding: 16px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 123, 2, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-image {
    flex: 1;
    max-width: 630px;
    height: 626px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* What is Vahan Muhurat Section */
.container9 {
    max-width: 1336px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: left;
}

.heading-2 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.vahan-muhurat {
    color: #e17100;
    position: relative;
    display: inline-block;
}

.description {
    font-size: 20px;
    line-height: 1.6;
    color: #222;
    max-width: 1216px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Authentic Experience Section */
.container11 {
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.heading-22 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.container13 {
    font-size: 44px;
    color: rgba(28, 28, 28, 0.9);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.trusted-text {
    font-size: 18px;
    color: #57534d;
    line-height: 1.8;
    max-width: 656px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Features Section */
.container15 {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 32px;
    animation: fadeInUp 1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #1c1c1c;
}

.feature-item {
    padding: 40px;
    text-align: left;
    border-right: 1px solid #1c1c1c;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    background: rgba(254, 123, 2, 0.05);
    transform: translateY(-5px);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.feature-description {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

/* Auspicious Timings Section */
.container21 {
    max-width: 1198px;
    margin: 100px auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.timing-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e17100;
    border-radius: 9999px;
    color: #e17100;
    font-size: 13px;
    margin-bottom: 24px;
}

.timing-icon {
    width: 16px;
    height: 16px;
}

.heading-23 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #222;
    line-height: 68px;
}

.timing-subtitle {
    font-size: 23px;
    color: #666;
    line-height: 1.6;
    max-width: 656px;
    margin: 0 auto;
}

/* Month Filter */
.container24 {
    max-width: 1368px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 1s ease-out;
}

.month-button {
    padding: 10px 24px;
    border-radius: 9999px;
    border: 2px solid #fff2e6;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff2e6;
    color: #2e2e2e;
    min-width: 80px;
}

.month-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.month-button.active {
    background: #fe7b02;
    color: white;
    border-color: #fe7b02;
    box-shadow: 0 10px 20px rgba(254, 123, 2, 0.3);
    position: relative;
}

.month-button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fe7b02;
    border-radius: 50%;
}

/* Table - Fixed Icons */
.table-container {
    max-width: 1368px;
    margin: 0px !important;
    background: #fdfdfc;
    border: 1px solid #ffe3c2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.5s ease-out;
}

.main-calender {
    padding-left: 90px;
    padding-right: 90px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    background: #ffedd6;
}

.table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 56px;
}

.table-header-row {
    display: flex;
    width: 100%;
}

.header-cell {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.table-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.table-data-row {
    display: flex;
    width: 100%;
    border-top: 1px solid #ffe3c2;
}

.table-data-row:nth-child(even) {
    background: #fff2e6;
}

.data-cell {
    padding: 18px 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex: 1;
}

.table tbody {
    display: flex;
    flex-direction: column;
}

.nakshatra-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #ffedd6;
    border-radius: 9999px;
    font-size: 14px;
    transition: all 0.3s;
}

.nakshatra-tag:hover {
    background: #fe7b02;
    color: white;
    transform: scale(1.05);
}

/* Note Box */
.note-box {
    max-width: 1360px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(251, 251, 251, 0.34);
    border: 1.6px solid #ffd6a7;
    border-radius: 16px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.note-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    font-style: italic;
}

/* Testimonials - Single Scroll Carousel */
.testimonials-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #e17100;
    border-radius: 9999px;
    color: #e17100;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Single Scroll Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 391px;
    height: 280px;
    background: white;
    border: 0.5px solid rgba(103, 111, 126, 0.44);
    border-radius: 6px;
    padding: 24px;
    margin-right: 51px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.client-name {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.stars {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #FFD700;
}

.testimonial-date {
    font-size: 14px;
    color: #676f7e;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 23px;
    color: #222;
    margin-bottom: 20px;
    height: 105px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.verified-client {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.57px;
    color: #676f7e;
    padding-top: 12px;
    border-top: 0.5px solid rgba(103, 111, 126, 0.33);
}

.verified-icon {
    width: 19.2px;
    height: 19.2px;
    color: #4CAF50;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e17100;
    color: #e17100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #e17100;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #e17100;
    transform: scale(1.2);
}

/* Consultation CTA */
.consultation-cta {
    max-width: 1360px;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #fff8f0, #ffe8d1);
    border-radius: 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-button-large {
    background: #e17100;
    color: #faf8f5;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(225, 113, 0, 0.3);
}

.cta-button-large:active {
    transform: translateY(-1px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.cta-button-large:hover .arrow-icon {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: white;
    padding: 80px 40px 40px;
    margin-top: 100px;
    animation: fadeInUp 1s ease-out;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e7e5e4;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: #1c1917;
}

.logo-subtitle {
    color: #bb4d00;
    font-size: 16px;
    font-weight: 500;
}

.logo-tagline {
    color: #57534d;
    font-size: 14px;
}

.footer-description {
    color: #57534d;
    font-size: 15px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connect-with-us {
    font-size: 16px;
    font-weight: 600;
    color: #44403b;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.facebook {
    background: linear-gradient(135deg, #155dfc, #1447e6);
}

.instagram {
    background: linear-gradient(135deg, #e60076, #ec003f);
}

.twitter {
    background: linear-gradient(135deg, #00a6f4, #2b7fff);
}

.youtube {
    background: linear-gradient(135deg, #e7000b, #c10007);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1c1917;
}

.column-icon {
    width: 18px;
    height: 18px;
    color: #e17100;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: #57534d;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-link:hover {
    color: #e17100;
    padding-left: 5px;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-main {
    font-weight: 700;
    font-size: 15px;
    color: #1c1917;
}

.contact-sub {
    font-size: 12px;
    color: #79716b;
}

.phone-icon-bg {
    background: linear-gradient(135deg, #d0fae5, #a4f4cf);
}

.email-icon-bg {
    background: linear-gradient(135deg, #dbeafe, #bedbff);
}

.location-icon-bg {
    background: linear-gradient(135deg, #fef3c6, #fee685);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    color: #57534d;
    font-size: 12px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 24px;
}

.certification {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #79716b;
    font-size: 12px;
}

.cert-dot {
    width: 4px;
    height: 4px;
    background: #a6a09b;
    border-radius: 50%;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

/* Page Reload Animation */
.page-reload-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(168.41deg, #fff, #ffbc78);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.page-reload-effect.active {
    opacity: 1;
    visibility: visible;
}

.reload-animation {
    text-align: center;
}

.reload-spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(225, 113, 0, 0.1);
    border-radius: 50%;
    border-top-color: #e17100;
    border-bottom-color: #e17100;
    animation: spinReload 0.8s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spinReload {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.reload-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #e17100;
    animation: textPulse 1s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Floating Refresh Button */
.floating-refresh-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #e17100;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(225, 113, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    overflow: hidden;
}

.floating-refresh-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(225, 113, 0, 0.4);
}

.floating-refresh-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.floating-refresh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.floating-refresh-btn:hover::before {
    animation: shine 0.8s ease-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff7b02, #ff5500);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Page Transition Effects */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e17100;
    z-index: 9997;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    transform: scaleY(1);
    transform-origin: bottom;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .heading-1 {
        font-size: 60px;
    }

    .heading-2,
    .heading-22,
    .heading-23 {
        font-size: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonial-card {
        flex: 0 0 350px;
        margin-right: 30px;
    }

    .testimonials-carousel {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        padding: 140px 20px 60px;
    }

    .heading-1 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .heading-2,
    .heading-22,
    .heading-23 {
        font-size: 36px;
    }

    .container3 {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #1c1c1c;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .testimonial-card {
        flex: 0 0 300px;
        margin-right: 20px;
        height: 250px;
    }

    .testimonials-carousel {
        height: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .floating-refresh-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .table-header-row {
        flex-wrap: wrap;
    }

    .header-cell {
        flex: 1 1 50%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .table-data-row {
        flex-wrap: wrap;
    }

    .data-cell {
        flex: 1 1 50%;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .heading-1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .heading-2,
    .heading-22,
    .heading-23 {
        font-size: 28px;
    }

    .cta-heading {
        font-size: 36px;
    }

    .month-button {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 60px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px;
        margin-right: 15px;
    }

    .testimonials-carousel {
        height: 260px;
    }

    .header-cell {
        flex: 1 1 100%;
    }

    .data-cell {
        flex: 1 1 100%;
    }

    .floating-refresh-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Reset and Base Styles */


/* Container */
.container {
    width: 100%;
    max-width: 100%;
    background-color: transparent;

    /* flex hatao */
    position: absolute;
    /* absolute hatao */
    padding-left: 20px;
    /* padding zero */
    margin-top: -40px;
}

/* SVG always full width of parent */
.container svg {
    width: 100%;
    height: auto;
    display: block;
    /* left-right gap remove */
}

/* Ellipse animation */
.ellipse-path {
    fill: none;
    stroke: #ff8c00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawEllipse 2.4s ease-in-out forwards;
}

@keyframes drawEllipse {
    from {
        stroke-dashoffset: 2000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ellipse-path {
        stroke-width: 4;
    }
}


/* second single line css */

.containerwave {
    width: auto;
    height: 80px;
    padding: 0;
    overflow: hidden;
    position: relative;
}



/* SVG */
.containerwave svg {
    margin-top: -10px;
    width: 60%;

}

/* PATH */
.containerwave-path {
    fill: none;
    stroke: #ff8c00;
    stroke-width: 2;
    stroke-linecap: round;
}

@keyframes drawWave {
    to {
        stroke-dashoffset: 0;
    }
}

.containerwave.active .containerwave-path {
    animation: drawWave 3s ease forwards;
}


/* for third walla  */

/* WRAPPER */
.ellipse-wrap {
    width: 100%;
    line-height: 0;
    /* 👈 vertical gap remove */

    /* 👈 heading ke paas chipkane ke liye */
    position: absolute;
    top: 0;

}

/* SVG */
.ellipse-svg {
    width: 60%;

    /* 👈 only required height */
    display: block;
}

/* PATH */
.ellipse-draw-path {
    fill: none;
    stroke: #ff8c00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: ellipseDrawAnim 2.2s ease forwards;
}

@keyframes ellipseDrawAnim {
    to {
        stroke-dashoffset: 0;
    }
}

/* Mobile */
@media(max-width:768px) {
    .ellipse-svg {
        height: 100px;
    }
}

/* MAIN DIV — YAHI SABSE IMPORTANT HAI */
.ellipse-parent {
    position: relative;
    /* 👈 REFERENCE POINT */
}

/* ELLIPSE POSITION */
.ellipse-top {
    position: absolute;

    /* 👈 heading ke upar adjust */
    left: 50%;
    top: 49%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    line-height: 0;
    pointer-events: none;
}

/* SVG */
.ellipse-svg {
    width: 100%;
    height: 160px;
    display: block;
}

/* this for left start and full with css  */
.waveWrapX {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 130px;

}

/* SVG */
.waveSvgX {
    width: 100%;

    display: block;
}

/* PATH */
.wavePathX {
    fill: none;
    stroke: #ff8c00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

/* ANIMATION */
@keyframes waveDrawX {
    to {
        stroke-dashoffset: 0;
    }
}

/* ACTIVE STATE */
.waveWrapX.waveActiveX .wavePathX {
    animation: waveDrawX 3s ease forwards;
}

.carousel-controls {
    display: none !important;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}/* End custom CSS */