/* =========================
   New Header Css
========================= */

.new-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 20px;
    margin-top: 0px;
    display: flex;
    justify-content: space-around;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.new-header.scrolled {
    background: #ffffffb3;
    border: 1px solid #ffffff4d;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* =========================
   Common Css
========================= */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
        /* float up */
    }

    100% {
        transform: translateY(0px);
        /* float back down */
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
    /* 3s duration, smooth */
}

.gradient-text {
    -webkit-text-fill-color: #0000;
    animation: gradient-shift 4s ease infinite;
    background: linear-gradient(135deg, #0068b5, #00a896 50%, #00c9b3);
    background: linear-gradient(135deg, #0068b5 0, #00a896 50%, #00c9b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-pattern {
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 168, 150, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 150, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.shine-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shine-effect:hover {
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
    transform: translateY(-3px);
}

.testimonial-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px #0000001a;
    transform: translateY(-8px);
}

.gsbp-1e950d3ee82d88 {
    margin-bottom: 48px !important;
}

@media (max-width: 768px) {
    .main-heading-text {
        font-size: 36px !important;
        text-align: center;
    }
}

.gsbp-fc7e7b4fca0d {
    margin-bottom: 20px !important;
}

.lead-form .wpcf7-form input[type="submit"] {
    border-radius: 50px !important;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700 !important;
    padding: 14px 32px;
}


.lead-form .wpcf7-form input[type="submit"]:hover {
    background: var(--wp--preset--color--primary, #00a896);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 15px 0 #00a89666 !important;
}

/* Disable ONLY animation, keep logic intact */
.gs_tabs_93 .gs_content {
    transition: none !important;
}

/* Remove animation on inner elements if any */
.gs_tabs_93 .gs_content * {
    transition: none !important;
}

/* =========================
   Accordian Css
========================= */

/* ACCORDION WRAPPER*/
.gs-accordion {
    max-width: 720px;
    margin: auto;
}

/* EACH ITEM (CARD) */
.gs-accordion-item {
    background: #f3f4f6;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* TITLE BAR */
.gs-accordion-item__title {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

/* Question text */
.gs-accordion-item__heading {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* CONTENT */
.gs-accordion-item__content {
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Answer text */
.gs-accordion-item__text p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* OPEN STATE */
.gs-accordion-item.active .gs-accordion-item__content {
    padding: 0 20px 16px 20px;
    max-height: 200px;
}

/* minus when open */
.gs-accordion-item.active .iconfortoggle::after {
    transform: translateX(-50%) scaleY(0);
}

/* =========================
   Pricing Css
========================= */

.pricing-cards .non-popular-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.pricing-cards .non-popular-card:hover {
    box-shadow: 0 20px 40px #0000001a;
    transform: translateY(-8px);
}

.gs_tabs_list {
    box-shadow: 0 20px 40px #0000001a;
}

.gs_tabs_93 .gs_tab.active {
    background-color: #001F37 !important;
    color: #fff;
}

.gs_tabs_93 .gs_tab {
    background-color: #ffffff !important;
}

.gs_tabs_93 .gs_tab_content,
.gs_tabs_93 .gs_tab_content * {
    animation: none !important;
    transition: none !important;
}

/* =========================
   Blogs Css
========================= */

.wp-block-post-template .swiper-slide {
    border-radius: 20px !important;
}