body a {
    color: inherit;
    text-decoration: none;
}
/* Testimonials */
.testimonial {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
    overflow: hidden;
    padding: 3rem 0px 4rem;
}
.testimonial .sub-heading {
    font-size: 1.2rem;
    line-height: 1.45;
}

.testimonial p.h2 {
    font-size: 125px;
    font-weight: 700;
    color: #493fb9;
    -webkit-text-fill-color: #493fb9;
    line-height: 1
}

.testimonial-heading {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px
}
.testimonialSlider {
    width: 100%;
    padding: 50px 0;
    position: relative;
}
.testimonial .testimonialSlide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        z-index 0.3s ease;
    height: 300px;
    box-sizing: border-box;
}
.testimonial .swiper-slide-active {
    /*background: #00a79d;*/
    background: #8a5bf5;
    transform: scale(1);
    z-index: 10;
    filter: blur(0);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.testimonial .swiper-slide-active h4{
    color: #fff;
    font-weight: 700;
}
.testimonial .swiper-slide-active p{
    color: #fff;
}
.testimonial .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    z-index: 1;
    filter: blur(3px);
    transition:
        transform 0.3s ease,
        z-index 0.3s ease,
        filter 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
/* contact us */
@keyframes ip-contact-card-accent-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

body .ip-contact {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.25rem) 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -8%, rgba(248, 250, 252, 0.22), transparent 58%),
        radial-gradient(ellipse 75% 50% at 12% 30%, rgba(120, 75, 210, 0.2), transparent 55%),
        radial-gradient(ellipse 65% 45% at 92% 70%, rgba(94, 234, 212, 0.14), transparent 52%),
        linear-gradient(168deg, #352454 0%, #2a1a4e 40%, #1a0f32 100%);
    color: #e8e0f5;
}

body .ip-contact__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

body .ip-contact__glow--1 {
    width: min(42vw, 380px);
    height: min(42vw, 380px);
    top: -15%;
    right: -5%;
    background: radial-gradient(circle at 40% 40%, rgba(235, 228, 247, 0.35), transparent 68%);
}

body .ip-contact__glow--2 {
    width: min(48vw, 420px);
    height: min(48vw, 420px);
    bottom: -25%;
    left: -12%;
    background: radial-gradient(circle at 50% 50%, rgba(94, 234, 212, 0.28), transparent 70%);
}

body .ip-contact .container {
    position: relative;
    z-index: 1;
}

body .ip-contact__kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1rem;
    padding: 0.38rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-blue-bright), var(--accent-blue));
    /*border: 1px solid var(--accent-blue-bright);*/
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

body .ip-contact__title {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

body .ip-contact__lead {
    font-size: clamp(1.02rem, 1.85vw, 1.12rem);
    line-height: 1.65;
    color: rgba(235, 228, 247, 0.88);
    margin: 0;
    max-width: 34rem;
}

body .ip-contact-card {
    position: relative;
    max-width: none;
    margin: 0;
    padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.35rem, 3.5vw, 2rem);
    border-radius: 22px;
    border: 1px solid rgba(94, 234, 212, 0.45);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 255, 0.96) 55%, rgba(235, 228, 247, 0.94) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 4px 24px rgba(94, 234, 212, 0.12),
        0 24px 56px rgba(15, 6, 29, 0.28);
}

body .ip-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 5px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(135deg, var(--accent-blue-bright), var(--accent-purple), var(--accent-blue-bright));
    background-size: 220% 100%;
    background-position: 0% 50%;
    opacity: 0.95;
    pointer-events: none;
    animation: ip-contact-card-accent-shift 3.5s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    body .ip-contact-card::before {
        animation: none;
        background-size: 100% 100%;
        background-position: 50% 50%;
    }
}

body .ip-contact-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 55%;
    height: 45%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body .ip-contact-form {
    position: relative;
    z-index: 1;
}

body .ip-contact-card__eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #68da23;
    margin: 0 0 0.35rem;
}

body .ip-contact-card__hint {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #4a3f5c;
    margin: 0 0 1.5rem;
    max-width: 36rem;
}

body .ip-contact-form input,
body .ip-contact-form select,
body .ip-contact-form textarea {
    width: 100%;
    margin-bottom: 0;
    padding: 0.88rem 1.05rem;
    border-radius: 14px;
    border: 1px solid rgba(66, 48, 122, 0.16);
    background: #ffffff;
    color: #1e1630;
    font-family: var(--ip-font-sans);
    font-size: 0.98rem;
    box-shadow: 0 1px 2px rgba(30, 22, 48, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

body .ip-contact-form input::placeholder,
body .ip-contact-form textarea::placeholder {
    color: #7c6f92;
}

body .ip-contact-form select {
    cursor: pointer;
    appearance: none;
    color: #1e1630;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2342307a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

body .ip-contact-form select:invalid {
    color: #7c6f92;
}

body .ip-contact-form select option {
    color: #0f172a;
    background: #f8fafc;
}

body .ip-contact-form input:hover,
body .ip-contact-form select:hover,
body .ip-contact-form textarea:hover {
    border-color: rgba(94, 234, 212, 0.55);
    background: #fefefe;
}

body .ip-contact-form input:focus-visible,
body .ip-contact-form select:focus-visible,
body .ip-contact-form textarea:focus-visible {
    outline: none;
    border-color: var(--ip-accent);
    box-shadow:
        0 0 0 3px rgba(94, 234, 212, 0.28),
        0 1px 2px rgba(30, 22, 48, 0.06);
    background: #ffffff;
}

body .ip-contact-form .error {
    margin-top: 0.35rem;
}

body .ip-contact-form__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.25rem;
}

body .ip-contact-form__submit {
    padding-inline: 1.75rem;
    min-height: 3rem;
}

body .ip-contact-form .ip-btn {
    margin-top: 0;
}

body .error {
    color: red !important;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
body .ip-footer {
    background: #080212;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    /*color: var(--ip-muted);*/
    font-size: 0.9rem;
}

body .ip-footer h3 {
    font-size: 25px;
    font-weight: 600;
    color: #00f0ff;
    margin-bottom: 1rem;
}

body .ip-footer a {
    color: #e8e0f5;
    font-size: 22px;
    line-height: 34px;
    display: inline-block;
    color: #fff;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
}

body .ip-footer a:hover {
    color: #8a5bf5;
    transition: text-decoration 0.5s cubic-bezier(.645, .045, .355, 1);
}

body .ip-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body .ip-footer li {
    margin-bottom: 0.45rem;
    font-size: 22px;
    color: #fff;
}

body .ip-footer .our-moto {
    color: #fff;
    font-style: italic;
    margin: 0.75rem 0;
    font-size: 22px;
    font-weight: 700;
}

.footer-widget-social {
    gap: 10px;
    margin: 18px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 0;
    text-align: center;
    width: 73%;
}

body .ip-footer .footer-widget-social a {
    display: inline-block;
    margin-right: 0.5rem;
    /**/
    height: auto;
    width: 43px;
    line-height: 46px;
    border-radius: 50%;
    font-size: 22px;
    color: #42307a;
    transition: all 1s ease-out;
}

.ip-footer p.small {
    font-size: 20px;
    color: #fff;
}

body .ip-footer .footer-widget-social a:hover {
    transform: scale(1.3);
}

/* Gallery */
#gallery {
    /*background: linear-gradient(135deg, #f0f0f0, #e8e8e8);*/
    padding: 60px 0;
    overflow: hidden
}

#gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #07133b
}

#gallery .swiper-container {
    width: 100%;
    padding: 40px 0
}

#gallery .swiper-slide {
    width: 300px;
    height: 300px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 16px;
    overflow: hidden
}

#gallery .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block
}

#gallery .swiper-slide-shadow-left,
#gallery .swiper-slide-shadow-right {
    border-radius: 16px
}

/* Agenda */

#agenda {
    position: relative;
}
#agenda .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: 8;
}

#agenda .popup-overlay.blurred::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 1;
}
#agenda .popup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
    z-index: 9;
    width: 500px;
    border-radius: 10px;
}
#agenda .popup-form h4 {
    color: #0f172a;
    font-weight: bold;
}
.agend-btn {
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background-color: #0b3c5d;
    margin: 5px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(11 60 93 / 0.2);
}
.bundles {
    color: #36c576;
    font-size: 19px;
}
.agenda-container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
#agenda .agenda-wrap.agenda-locked {
    position: relative;
    height: 34rem;
    overflow: hidden;
}
#agenda .agenda-wrap {
    height: auto;
    overflow: visible;
}
#agenda .agenda-locked .agenda-card:nth-child(n + 4) {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}
#agenda .agenda-locked::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    /*background: rgba(255, 255, 255, 0.6);*/
    z-index: 5;
    pointer-events: none;
}
#agenda .agenda-card {
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
#agenda .popup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 9;
}

#agenda .agenda-locked .popup-form{
    top: 48%;
}

@media (max-width: 991px) {
    body .ip-hero {
        min-height: unset;
        padding-top: 7rem;
    }
    body .ip-audience__sticky {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1399px){
    .testimonial-heading {
        font-size: 27px;
    }
    .testimonial-heading br{
        display: none;
    }
}
@media (max-width: 767px){
    .hero-section h1 br{
        display: none;
    }
    .testimonial .swiper-slide-active h4 {
        font-size: 17px;
    }
    .testimonial .swiper-slide-active p {
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    /*.site-navbar .container {*/
    /*    padding-left: 0;*/
    /*    padding-right: 0;*/
    /*}*/
    body {
        overflow-x: hidden !important;
    }
}
@media (min-width: 576px) {
    body .ip-contact-form__actions {
        justify-content: flex-end;
    }
}