/* Custom */

/* Hero */
.image-card::before,
.image-card::after {
    transition: .5s ease;
    animation: floating 15s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.image-card::before {
    animation-delay: 0s;
    /* Starts immediately */
}

.image-card::after {
    animation-delay: 1s;
    /* Slightly delayed to alternate with ::before */
}

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

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(10px);
    }

    75% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(20px);
    }
}

.video-section {
    position: relative !important;
    transition: .7s ease;
}

.video-section .video-content {
    opacity: 0;
    transform: translateY(60px);
    transition: .7s ease;
    transition-delay: .5s !important;
}

.video-section.animations .video-content {
    opacity: 1;
    transform: translateY(0);
}

.video-section>.container {
    z-index: 30;
}

.video-bg {
    position: absolute !important;
    left: 0;
    top: 40%;
    width: 100% !important;
    max-height: 500px !important;
    opacity: 0;
    transition: .7s ease-in-out !important;
    transition-delay: .5s !important;
}
.video-section.animations .video-bg {
    opacity: 1 ;
    max-height: 970px !important;
 
}
.video-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top;
}

.video-card {
    position: relative !important;
}

.play-btn {
    transition: .3s ease !important;
}

.play-btn a {
    width: 100px !important;
    height: 100px !important;
    background-color: transparent !important;
    border-radius: 100% !important;
    padding: 0 !important;
    background-image: url('http://drrona.academy/wp-content/uploads/2025/04/play-btn.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    font-size: 0 !important;
}

.play-btn:hover {
    transform: scale(.95);
}

.video-card .video-content {
    position: relative !important;
    z-index: 20;
}

.video-card:before {
    position: absolute !important;
    left: 0;
    bottom: 0;
    height: 400px;
    width: 100%;
    content: '';
    background-image: url('http://drrona.academy/wp-content/uploads/2025/04/video-transparent-1.png');
    background-size: cover;
    display: block;
}

.video-card .video-main {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .7s ease;
}

.video-card .video-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section.video-active .video-main {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Features section */

.features-section {
    position: relative !important;
}

.features-section>.container {
    position: relative !important;
    z-index: 50;
    transform: translateY(40px);
    opacity: 0;
    transition: .7s ease;
}

.features-section.animations>.container {
    transform: translateY(0);
    opacity: 1;
}

.features-section .marquee-container {
    position: absolute !important;
    left: 0;
    top: 200px;
    width: 100%;
    height: fit-content;
    opacity: 0;
    transform: scale(.9);
    transition: 1s ease;
    transition-delay: .5s !important;
}

.features-section.animations .marquee-container {
    opacity: 1;
    transform: scale(1);
}

.marquee-main {
    width: 100% !important;
    overflow: hidden !important;
    display: flex;
    align-items: center !important;
    gap: 60px !important;
    transition: .5s ease !important;
}

.marquee-main .marquee-inner{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    --gap: 20px;
    gap: var(--gap);
    align-items: center !important;
    justify-content: flex-start !important;
    max-width: max-content !important;
	animation: marquee 30s linear infinite;
    transition: .5s ease;
}

.marquee-main.marquee-reverse .marquee-inner{
    animation: marqueeReverse 30s linear infinite;
}

.marquee-main .marquee-inner > *{
    flex-shrink: 0 !important;
    width: fit-content !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    min-width: 100vw !important;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes marqueeReverse {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
  }
  

.marquee-main * {
    font-size: 128px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.marquee-main.marquee-bold * {
    font-weight: 600 !important;
}

.features-section .feature-img {
    position: relative !important;
    height: 970px !important;
    width: 1100px !important;
}

.features-section .features-main {
    position: relative !important;
}

.features-section .features-main:before {
    display: block;
    content: '';
    height: 340px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 10;
}

.features-section .feature-tabs {
    position: absolute !important;
    left: 0;
    bottom: 0;
    z-index: 50;
}


.features-section .feature-tabs button {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background-color: transparent !important;
    color: var(--body-text) !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.features-section .feature-tabs * {
    transition: .3s ease !important;
}

.features-section .feature-tabs .feature-tab-single {
    align-items: flex-start !important;
    cursor: pointer;
}

.features-section .feature-tabs .feature-tab-single figure {
    display: none !important;
}



.features-section .feature-tabs .feature-tab-single.active button {
    color: var(--primary-color) !important;
}



.features-section .feature-tabs .feature-tab-single.active svg path {
    fill: var(--primary-color) !important;
}

.features-section .feature-img img {
    position: absolute !important;
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: bottom center;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(.9);
    transform-origin: bottom center;
    transition: .5s ease;
}
.features-section .feature-img img:nth-child(1) {

}
.features-section .feature-img img:nth-child(2) {
    max-height: 850px;
    top: unset;
    bottom: 0;

}
.features-section .feature-img img:nth-child(3) {
    max-height: 755px;
    max-width: 715px;
    left: unset;
    bottom: 10%;
    top: unset;
}
.features-section .feature-img img:nth-child(4) {

}
.features-section .feature-img img:nth-child(5) {
    top: unset;
    max-height: 618px;
    bottom: 14%;

}
.features-section .feature-img img:nth-child(6) {
    max-height: 800px;
    top: 20%;
}
.features-section .feature-img img:nth-child(7) {
    top: unset;
    bottom: 28%;
    max-height: 437px;


}
.features-section .feature-img img:nth-child(8) {
    max-width: 515px;
    max-height: 700px;
    left: unset;
    top: unset;
}

.features-section .feature-img img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* Why Drrona */

.scroll-wrapper-main {
    overflow: hidden !important;
}

.scroll-wrapper-main .scroll-container-inner {
    height: 100vh !important;
    overflow: hidden !important;
    z-index: 999;
}

.why-drrona-card .scroll-inner {
    padding-left: 60px !important;
}

.why-drrona-main .scroll-text {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.why-drrona-main .scroll-text * {
    text-align: center !important;
}

.why-drrona-card .cards {
    width: 100% !important;
    max-width: 500px !important;
    flex-shrink: 0 !important;
    transform-origin: top left !important;
    transition: .3s ease;
}

.why-drrona-card .cards:nth-child(odd) {
    transform: rotate(-7.25deg) translateX(-60px);
}

.why-drrona-card .cards:nth-child(even) {
    transform: rotate(7.25deg) translateY(-64px);
}

.why-drrona-card .cards:nth-child(odd):hover {
    transform:rotate(-5deg) translate(-60px, 2px);
}
.why-drrona-card .cards:nth-child(even):hover {
    transform:rotate(5deg) translate(0px, -64px);
}
.scroll-slider {
    max-width: 100% !important;
    overflow: visible !important;
}

.scroll-slider .scroll-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    overflow-x: visible !important;
    width: auto !important;
    max-width: max-content !important;
}

.scroll-text {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.marquee-wraper>div {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

/* modal css */

.modal_main {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: #ffffff;
    opacity: 0;
    transform: translateY(-60px);
    pointer-events: none !important;
    visibility: hidden;
    z-index: 999;
    transition: .7s ease;

}

.modal_main::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: url('http://drrona.academy/wp-content/uploads/2025/04/REAL-BLUR.png');
    background-repeat: no-repeat;
}

.modal_main.active {
    opacity: 1;
    pointer-events: all !important;
    visibility: visible;
    transform: translateY(0px);
}

.modal_main .container {
    margin: 0 auto;
    z-index: 40;
    position: relative;
}

.modal_main .continer .modal-content {
    max-width: 692px;
}

.modal_main_wraper {
    display: grid;
    grid-template-columns: repeat(12,minmax(0,1fr));
    gap: 20px;
    padding: 85px 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100vh;
    align-items: center;
}

.modal-content {
    width: 100%;
    grid-column: span 5 / span 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.modal-header h5{
    margin-top: 28px !important;
    font-weight: 600 !important;
}
.modal-content > *{
    width: 100%;
}
.modal-content:has(.gform_confirmation_wrapper ) .modal-header{
    display: none !important;
}
.modal_main_wraper:has(.gform_confirmation_wrapper) .modal-image {
    display: none !important;

}
.modal_main_wraper:has(.gform_confirmation_wrapper) {
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.contact-form .gform_confirmation_wrapper>*{
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px !important;
    & >P{
        text-align: center !important;
    }
    & >img{
        max-width: 280px !important;
        max-height: 280px !important;
        width: 100%;
    }
    br{
        display: none;
    }
}
.contact-form .gform_confirmation_wrapper .thank-u{
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px !important;
        & >h6{
            font-size: var(--p ) !important;
            text-align: center !important;
        }   

}
.contact-form .gform_confirmation_wrapper .primary-btn.back-toHome{
    max-width: 262px !important;
    min-width: 262px !important;
    margin-top: 44px !important;
    &>a{
        color: var(--font-color-white) !important;
    }
}
.contact-form:has(.gform_confirmation_wrapper ) .form-bottom-text {
    display: none;
}
.modal-content:has(.gform_confirmation_wrapper ) {
    max-width: 45% !important;
}
.modal-image {
    grid-column: span 7 / span 7;
    width: 100%;
    max-height: 648px;
    height: 100%;
  
}

.modal_main_wraper::-webkit-scrollbar{
    width: 0px;
}

.modal_main_wraper .gform_heading {
    display: none !important;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.contact-info-btn>*:not(:last-child) {
    display: flex;
    gap: 18px;
}

.contact-info-btn>*:not(:last-child) .icon img {
    max-width: 24px;
    height: 24px;

}

.contact-info-btn .primary-btn {
    background: linear-gradient(68deg, var(--Color-Text-text-dark, #262626) 46.38%, #676767 94.54%);
    box-shadow: 19px 21px 36.5px 0px rgba(0, 0, 0, 0.15);

    &>a {
        color: var(--font-color-white) !important;
    }
}

.contact-info-btn .primary-btn.call-icon .button-img-icon::before {
    background-image: url('http://drrona.academy/wp-content/uploads/2025/04/Call.svg');
}

.primary-btn.call-icon:hover .button-img-icon::before {
    rotate: 45deg;
}

.contact-info-btn .icon {
    max-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 280px;
    background: var(--Color-Background-bg-white, #FFF);
    box-shadow: 0px 9px 8.2px 0px rgba(0, 0, 0, 0.06);
    &> a{
        padding: 15px !important;
        &:hover{
            scale: 1.1;
        }
        &:active{
            scale: 1;
        }
    }
    

}

.contact-info-btn {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}


/* endstyle */
/*------------responsive---------------  */
@media screen and (max-width:1536px) {
    .features-section .feature-tabs {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media screen and (max-width:1440px) {
    .why-drrona-card .cards {
        /* max-width: 360px !important; */
    }

    .features-section .feature-tabs button {

        font-size: var(--h5) !important;
    }

    .features-section .feature-img {
        height: 937px !important;
        width: 869px !important;
    }

    .video-card .video-content {
        padding: 0px 48px 51px !important;
    }
    .features-section .feature-img img:nth-child(5) {
        max-height: 550px;

    }
    .features-section .feature-img img:nth-child(3) {
        max-height: 680px;
    }
}

@media screen and (max-width:1366px) {
    .features-section .feature-img {
        height: 900px !important;
        width: 780px !important;
    }
}

@media screen and (max-width:1280px) {
    .video-card {
        min-height: 600px !important;
    }
}

@media screen and (max-width:1024px) {

    .marquee-main * {
        font-size: 40px !important;
    }

    .features-section .feature-img {
        height: 484px !important;
        width: 448px !important;
    }

    .features-section .marquee-container {
        top: 80px;
    }
    .hero-heading{
        max-width: 60% !important;
    }
    .hero-banner-content h2 {
        line-height: 140% !important;
    }
    .play-btn a {
		width: 60px !important;
		height: 60px !important;
	}	
    .modal-image {
        grid-column: span 6 / span 6;
    }
    .modal-content {
        grid-column: span 6 / span 6;
    }
    .contact-form .gform_confirmation_wrapper > * {
        & >img {
            max-width: 170px !important;

        }
    }
    .swiper-container .slide-inner .slide-html {
        min-height: 250px;

    }
}

@media screen and (max-width:980px) {
    .modal-content {
        grid-column: span 8 / span 8;
    }
    .modal-image {
        grid-column: span 4 / span 4;
    }
    /* .marquee-main * {
        font-size: 72px !important;
    } */
    .video-card {
        min-height: 500px !important;
    }

    .features-section .feature-tabs button {
        font-size: 18px !important;
    }

    .marquee-wraper::before,
    .marquee-wraper::after {
        width: 109px;
    }

    .site-below-footer-inner-wrap {
        flex-wrap: nowrap !important;
        gap: 40px !important;
    }
    .features-section .feature-tabs button svg {
        width: 25px !important;
        height: 26px !important;
    }
    .hero-banner-content .wp-block-buttons {
        margin-top: 16px !important;
    }
}

@media screen and (max-width:972px) {
    .video-card:before {
        height: 50%;
        background-position: 40%;
    }
}

@media screen and (max-width:840px) {
    .features-section .feature-img {
        height: 620px !important;
        max-width: 740px !important;
        width: 100% !important;
    }

    .features-section .features-main:before {
        bottom: var(--tabHeight);
    }

    .features-section .feature-tabs button {
        font-size: 18px !important;
    }

    .features-section .feature-tabs button svg {
        width: 36px !important;
        height: 36px !important;
    }

    .video-card {
        min-height: 441px !important;
    }

    .features-section .feature-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    .hero-heading {
        max-width: 75% !important;
    }
    .play-btn a {
        width: 60px !important;
        height: 60px !important;
    }

    .video-content>*:last-child>*:not(.play-btn-main) {
        max-width: 335px !important;
    }

    .video-content>*:first-child {
        max-width: 245px !important;
    }
    .animations .slide-card:nth-child(2) {
        max-width: 285px !important;
    }
    .animations .slide-card:nth-child(3) {
        max-width: 285px !important;
    }
}

@media screen and (max-width:768px) {
    .video-card:before {
        height: 76%;
        background-position: 40%;
    }
}

@media screen and (max-width:767px) {
    .modal_main_wraper{
        display: flex !important;
        flex-direction: column !important;
    }
    .modal-image {
        display: none !important;
    }
    .video-card .video-content {
        padding: 0 20px 40px !important;
    }

    .why-drrona-card .scroll-inner {
        gap: 0 !important;
    }

    .why-drrona-card .cards {
        padding: 20px !important;
    }

    .why-drrona-card .cards h4 {
        font-size: 18px !important;
    }

    .why-drrona-card .cards>* {
        row-gap: 20px !important;
    }

    .features-section .feature-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        row-gap: 16px !important;
        column-gap: 10px !important;
    }

    .features-section .feature-img {
        height: 370px !important;
        max-width: 660px !important;
    }

    .features-section .marquee-container {
        top: 60px !important;
    }

    .marquee-main * {
        font-size: 40px !important;
    }
    .why-drrona-main.mobile .swiper-container {
        padding-bottom:60px !important;
    }
    .why-drrona-main.mobile .swiper-container .swiper-pagination {
        bottom: 15px !important;
    }
    .why-drrona-main.mobile{
        padding: 50px 0 0;
    }
    .tab-slider-details>*:last-child {
        padding: 32px 24px !important;
    }
}

@media screen and (max-width:767px) and (max-height:540px) {
    .why-drrona-card .cards:nth-child(odd) {
        transform: rotate(-7.25deg) translateX(-35px);
    }

    .why-drrona-card .cards:nth-child(even) {
        transform: rotate(7.25deg) translateY(-25px);
    }

    .why-drrona-card .cards {
        max-width: 200px !important;
    }
    .ast-builder-grid-row.ast-grid-center-col-layout {
        padding-bottom: 19px;
    }
}

@media screen and (max-width:640px) {
    .ast-builder-grid-row.ast-grid-center-col-layout{
        display: flex !important ; 
        padding-top: 25px;  
    }
    .site-header-primary-section-left {
        max-width: 145px !important;
    }
    .hero-heading {
        max-width: 90% !important;
    }

    /* .swiper-nav {
        justify-content: center !important;
    } */
    .features-section .feature-tabs button svg {
        width: 25px !important;
        height: 26px !important;
    }
    .modal-content:has(.gform_confirmation_wrapper ) {
        max-width: 75% !important;
    }
}

@media screen and (max-width:540px) {
    .play-btn a {
        width: 60px !important;
        height: 60px !important;
    }
    .features-section .feature-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .video-card .video-content {
        padding: 0 20