/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/
.form-control:focus {
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #0d5fd8;
}
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    animation: floatUpDown 2s ease-in-out infinite;
}
/* Floating animation keyframes */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

p{
    color:#333;
    line-height:25px;
    text-align:justify;
}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 45px;
    height: 45px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 1, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(254, 1, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 1, 0, 0);
    }
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #fe0100;
    color: #fff !important;
    background: #fe0100 !important;
    border-color: #fe0100 !important;
    animation: pulse 2s infinite ease-in-out;
}

    .btn.btn-primary:hover {
        box-shadow: inset 0px 0 0 0 #fff !important;
        color: #ebe23d !important;
        background: #fe0100 !important;
        border-color: #fe0100 !important;
    }


.btn.btn-secondary {
    box-shadow: inset 0 0 0 0 #0d5fd8;
    color: #fff !important;
    background: #0d5fd8 !important;
    border-color: #0d5fd8;
}

    .btn.btn-secondary:hover {
        box-shadow: inset 300px 0 0 0 #fff !important;
        color: #000 !important;
        background: #0d5fd8 !important;
        border-color: #0d5fd8;
    }

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Sub Title Start ***/
.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

    .sub-title::before {
        content: "";
        width: 70px;
        position: absolute;
        top: 50%;
        right: 30px;
        border-radius:50px;
        transform: translateY(-50%);
        margin-right: -110px;
        border: 2px solid #ebb826 !important;
    }

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Yantramanav', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-light) !important;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #fff !important;
    font-size: 18px !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ebb826 !important;
}

.navbar-light .navbar-brand img {
    max-height: 170px;
    transition: .5s;
    position:absolute;
    top:0px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 115px;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 12px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 0px;
        transition: .5s;
        opacity: 0;
    }
}
.dropdown .dropdown-menu a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    transition: color 0.3s ease;
}

    .dropdown .dropdown-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #ebb826;
        z-index: -1;
        transition: left 0.3s ease;
    }

    .dropdown .dropdown-menu a:hover::before {
        left: 0;
    }

    .dropdown .dropdown-menu a:hover {
        color: #000;
    }

.dropdown .dropdown-menu a:hover {
    background: #ebb826;
    color: #000;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: rgba(254, 0, 0, 0.9)  !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 0px solid #fff;
        color: #fff;
    }
    .navbar-toggler:focus {
        box-shadow: 0px 0px 0px #000
    }

        .navbar-light .navbar-collapse {
            margin-top: 15px;
            border-top: 0px solid #DDDDDD;
        }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #fff !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 75px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #000 !important;
    }
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #000;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #000;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 #fff !important;
    color: #000 !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 120px;
        transition: 0.5s;
        font-size:12px;
        width:30px;
        height:30px;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    padding: 145px 0 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../Images/About-bnr.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 50px;
    }

}
/*** Single Page Hero Header End ***/


/*** Counter Facts Start ***/

.counter-facts {
    background: #000;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}


.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 110px;
    padding: 8px 15px;
    margin: 0 auto;
    border-radius: 0px;
    box-shadow: 0;
    background: none;
}

    .counter-facts .counter:before {
        content: "";
        position: absolute;
        height: 105px;
        width: 100%;
        left: 0;
        top: 0;
        border-radius: 0px;
        background-color: #ebb826;
        animation: bubbleZoom 3s ease-in-out infinite;
    }

/* Keyframes for bubble + zooming animation */
@keyframes bubbleZoom {
    0%, 100% {
        transform: scale(1) translateY(0);
        border-radius: 0px;
        opacity: 1;
    }

    50% {
        transform: scale(1.1) translateY(-5px);
        border-radius: 15px;
        opacity: 0.8;
    }
}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    border-radius: 10px 10px 0 0;
    font-size: 50px;
    line-height: 90px;
    color: #000 !important;
    display: flex;
    
}

.counter-facts .counter h3 {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    display: flex;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** Training Start ***/
.training-carousel .owl-stage-outer {
    margin-top: 30px;
}

.training-carousel .owl-nav .owl-prev,
.training-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.training-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.training-carousel .owl-nav .owl-next {
    right: 0;
}

.training-carousel .owl-nav .owl-prev:hover,
.training-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.training .training-item .training-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.training .training-item .training-img img {
    transition: 0.5s;
}

.training .training-item:hover .training-img img {
    transform: scale(1.2);
}
/*** Training End ***/



/*** Dance Class Start ***/
.class-carousel .owl-stage-outer {
    margin-top: 30px;
}

.class-carousel .owl-nav .owl-prev,
.class-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.class-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.class-carousel .owl-nav .owl-next {
    right: 0;
}

.class-carousel .owl-nav .owl-prev:hover,
.class-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.class .class-item .class-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.class .class-item .class-img img {
    transition: 0.5s;
}

.class .class-item:hover .class-img img {
    transform: scale(1.3);
}
/*** Dance Class End ***/


/*** Blog Start ***/
.blog-carousel .owl-stage-outer {
    margin-top: 30px;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.blog-carousel .owl-nav .owl-next {
    right: 0;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}
/*** Blog End ***/

/*** Team Start ***/
.team-carousel .owl-stage-outer {
    margin-top: 30px;
}
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.team-carousel .owl-nav .owl-next {
    right: 0;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.team .team-carousel .team-item .team-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.team .team-carousel .team-item .team-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .01);
    transition: 0.5s;
    z-index: 2;
}

.team .team-carousel .team-item .team-img .team-icon {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px;
    display: flex;
    opacity: 0;
    transition: 0.5s;
    z-index: 3;
}

.team .team-carousel .team-item:hover .team-img .team-icon {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.team .team-carousel .team-item .team-content {
    position: relative;
    background: var(--bs-secondary);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    z-index: 1;
    transition: 0.5s;
}

    .team .team-carousel .team-item .team-content::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #0d5fd8 !important;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        transition: 0.5s;
        z-index: -1;
    }
.team .team-carousel .team-content p {
    text-align:center;
}
.team .team-carousel .team-item:hover .team-content a,
.team .team-carousel .team-item:hover .team-content p {
    color: var(--bs-white) !important;
    text-align: center;
}

.team .team-carousel .team-item:hover .team-content::after {
    height: 100% !important;
}

.team .team-carousel .team-item .team-img img {
    transition: 0.5s;
}

.team .team-carousel .team-item:hover .team-img img {
    transform: scale(1.1);
}
/*** Team End ***/


/*** Vidie Gallery Start ***/
/*** Youtube Video start ***/
.gallery .tab-class {
    text-align: start !important;
}

.gallery .nav-item {
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.gallery .nav-item a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .nav-item a.active span {
    color: var(--bs-white) !important;
}


.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 23px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 70px;
    height: 70px;
    background: var(--bs-white);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 23px solid var(--bs-primary);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/

/*** Vidieo Gallery End ***/

/*** Testimonial Start ***/
.testimonial{
    background:#f5f5f5;
}
.testimonial-carousel .owl-stage-outer {
    margin-top: 30px;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact button.btn.btn-primary.w-100:hover {
    box-shadow: inset 700px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    position: relative;
    background: #000; /* fallback */
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: url('../images/dancing-bg.png') repeat-x bottom;
        opacity: 0.6; /* adjust opacity here */
        animation: scrollBackground 40s linear infinite;
        pointer-events: none; /* allows clicks through the pseudo-element */
    }

@keyframes scrollBackground {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.footer .footer-item .footer-link {
    line-height: 30px;
    color: #fff;
    transition: 0.5s;
}

    .footer .footer-item .footer-link:hover {
        padding-left:5px;
        color: #ebb826 !important;
    }
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #000 !important;
}
/*** copyright end ***/
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animated-dance-img {
    animation: float 3s ease-in-out infinite;
}
/* Gradient Animation */
.animated-bg {
    position: relative;
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fbc2eb, #a1c4fd);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating particles */
.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px) 0 0 / 20px 20px repeat;
    animation: floatParticles 30s linear infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 200px;
    }
}

/* Content stays above particles */
.animated-bg > * {
    position: relative;
    z-index: 1;
}
.event-item {
    background:#fff;
}
.event-item .position-relative {
    overflow: hidden; /* Ensures zoom doesn't overflow */
}

.event-item img {
    transition: transform 0.5s ease;
}

.event-item:hover img {
    transform: scale(1.1);
}
.floating-squares {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

    .floating-squares .square {
        position: absolute;
        background: rgba(255, 255, 255, 0.5);
        animation-name: floatSquare;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        top: 100%;
        z-index: -1;
        border-radius: 4px;
    }

@keyframes floatSquare {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
    }
}
/*Our Journey CSS*/
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(45deg, transparent, black, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ebb826;
    border: 0px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    z-index: 2;
    margin-right: 20px;
    flex-shrink: 0;
    color: #0d5fd8;
    transform: unset;
}

.timeline-content {
    flex: 1;
    margin-left: 60px;
    margin-top: -40px;
    padding-top: 10px;
}

    .timeline-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
        font-weight: 600;
    }

    .timeline-content p {
        color: #666;
        font-size: 16px;
        margin-bottom: 15px;
        max-width: 100%;
    }

.timeline-image {
    width: calc(100% - 60px);
    height: 180px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px;
    margin-top: 20px;
    flex-shrink: 0;
}

    .timeline-image img {
        max-width: 100%;
        max-height: 100%;
    }

@media (min-width: 769px) {
    .timeline {
        margin: 60px 0;
    }

    .timeline-line {
        left: 40px;
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: row;
        margin-bottom: 80px;
    }

    .timeline-number {
        margin-right: 40px;
        width: 40px;
        height: 40px;
        transform: translateX(20px);
    }

    .timeline-content {
        margin-left: 0;
        margin-top: 0;
        padding-top: 0;
    }

        .timeline-content h2 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .timeline-content p {
            font-size: 16px;
            margin-bottom: 20px;
            max-width: 1005;
        }

    .timeline-image {
        width: 300px;
        height: 200px;
        margin-left: 40px;
        margin-top: 0;
    }

        .timeline-image img {
            max-width: 120px;
            max-height: 120px;
        }
}
.image-container {
    position: relative;
    display: inline-block;
    overflow: visible;
}

    .image-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(#0d5fd8 1px, transparent 1px);
        background-size: 10px 10px;
        animation: moveDots 8s linear infinite;
        z-index: 0;
        pointer-events: none; /* ensures no interaction */
    }

    .image-container img {
        position: relative;
        z-index: 1;
    }

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}
.fixed-background-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #fff;
}
.founder{height:100vh;}
.fixed-background-content {
    height: 100vh;
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.image-container img {
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .fixed-background-section {
        position: relative;
        height: auto;
        z-index: auto;
    }
    .founder {
        height: auto;
    }
    .fixed-background-content {
        height: auto;
        overflow: visible;
    }

    .image-container img {
        width: 100%;
        height: auto;
    }

    .display-3 {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }
}
/*Events command Activities Animation*/
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: floatUp 10s linear infinite;
}

.circle {
    border-radius: 50%;
}

.square {
    border-radius: 10%;
}

.red {
    background-color: #fe0100;
}

.yellow {
    background-color: #ebb826;
}

/* Randomized position, size, and delay */
.shape:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 5%;
    bottom: -50px;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 25px;
    height: 25px;
    left: 15%;
    bottom: -60px;
    animation-delay: 1s;
}

.shape:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 25%;
    bottom: -70px;
    animation-delay: 2s;
}

.shape:nth-child(4) {
    width: 35px;
    height: 35px;
    left: 35%;
    bottom: -80px;
    animation-delay: 3s;
}

.shape:nth-child(5) {
    width: 20px;
    height: 20px;
    left: 45%;
    bottom: -90px;
    animation-delay: 4s;
}

.shape:nth-child(6) {
    width: 25px;
    height: 25px;
    left: 55%;
    bottom: -100px;
    animation-delay: 5s;
}

.shape:nth-child(7) {
    width: 30px;
    height: 30px;
    left: 65%;
    bottom: -110px;
    animation-delay: 6s;
}

.shape:nth-child(8) {
    width: 35px;
    height: 35px;
    left: 75%;
    bottom: -120px;
    animation-delay: 7s;
}

.shape:nth-child(9) {
    width: 20px;
    height: 20px;
    left: 85%;
    bottom: -130px;
    animation-delay: 8s;
}

.shape:nth-child(10) {
    width: 25px;
    height: 25px;
    left: 95%;
    bottom: -140px;
    animation-delay: 9s;
}

.shape:nth-child(11) {
    width: 20px;
    height: 20px;
    left: 12%;
    bottom: -150px;
    animation-delay: 1s;
}

.shape:nth-child(12) {
    width: 30px;
    height: 30px;
    left: 22%;
    bottom: -160px;
    animation-delay: 2.5s;
}

.shape:nth-child(13) {
    width: 35px;
    height: 35px;
    left: 32%;
    bottom: -170px;
    animation-delay: 3.5s;
}

.shape:nth-child(14) {
    width: 25px;
    height: 25px;
    left: 42%;
    bottom: -180px;
    animation-delay: 4.5s;
}

.shape:nth-child(15) {
    width: 30px;
    height: 30px;
    left: 52%;
    bottom: -190px;
    animation-delay: 5.5s;
}

.shape:nth-child(16) {
    width: 20px;
    height: 20px;
    left: 62%;
    bottom: -200px;
    animation-delay: 6.5s;
}

.shape:nth-child(17) {
    width: 25px;
    height: 25px;
    left: 72%;
    bottom: -210px;
    animation-delay: 7.5s;
}

.shape:nth-child(18) {
    width: 30px;
    height: 30px;
    left: 82%;
    bottom: -220px;
    animation-delay: 8.5s;
}

.shape:nth-child(19) {
    width: 35px;
    height: 35px;
    left: 92%;
    bottom: -230px;
    animation-delay: 9.5s;
}

.shape:nth-child(20) {
    width: 20px;
    height: 20px;
    left: 50%;
    bottom: -240px;
    animation-delay: 0.5s;
}
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-1200px) rotate(360deg);
        opacity: 0;
    }
}


/*Photo Gallery*/
.lightboxpreview {
    transition: all .3s linear;
    padding-top: 60%;
    cursor: pointer;
    background-size: cover;
}

.lightbox-content {
    max-height: 75svh;
    height: 75svh;
}

.lightbox-close {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.modalscale {
    transform: scale(0);
    opacity: 0;
}



.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled {
    transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
    padding-top: 65%;
    position: relative;
    overflow: hidden;
}

.lightbox-enabled:hover {
    transform: scale(1.1)
}

.lightbox-enabled {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    cursor: pointer;
}

.lightbox-container {
    width: 100svw;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.9);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

    .lightbox-container.active {
        opacity: 1;
        pointer-events: all;
        z-index:9999;
    }
    .lightbox-container.active1 {
        opacity: 1;
        pointer-events: all;
        z-index: 9999;
    }

.lightbox-image-wrapper {
    display: flex;
    transform: scale(0);
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
    transform: scale(1);
}
.lightbox-container.active1 .lightbox-image-wrapper {
    transform: scale(1);
}
.lightbox-btn, #close {
    color: white;
    z-index: 9999999;
    cursor: pointer;
    position: absolute;
    font-size: 25px;
}

.left {
    left: 50px;
    font-size:25px;
}

.right {
    right: 50px;
    font-size: 25px;
}

#close {
    top: 50px;
    right: 50px;
}

.lightbox-image {
    width: 100%;
    max-height: 95vh;
    object-fit: cover;
}

@keyframes slideleft {
    33% {
        transform: translateX(-300px);
        opacity: 0;
    }

    66% {
        transform: translateX(300px);
        opacity: 0;
    }
}


.slideleft {
    animation-name: slideleft;
    animation-duration: .5s;
    animation-timing-function: ease;
}

@keyframes slideright {
    33% {
        transform: translateX(300px);
        opacity: 0;
    }

    66% {
        transform: translateX(-300px);
        opacity: 0;
    }
}


.slideright {
    animation-name: slideright;
    animation-duration: .5s;
    animation-timing-function: ease;
}
#reg_login {
    position: relative;
    min-height: 100vh;
    background: #bdd6fb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
}

    #reg_login::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0); /* Black overlay with 50% opacity */
        z-index: -1;
    }


    #reg_login .container1 {
        position: relative;
        width: 800px;
        height: 550px;
        background: #fff;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

        #reg_login .container1 .user {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
        }

            #reg_login .container1 .user .imgBx {
                position: relative;
                width: 50%;
                height: 100%;
                transition: 0.5s;
                background: #faebd7;
            }

                #reg_login .container1 .user .imgBx img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            #reg_login .container1 .user .formBx {
                position: relative;
                width: 50%;
                height: 100%;
                background: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 40px;
                transition: 0.5s;
            }

                #reg_login .container1 .user .formBx form h2 {
                    font-size: 18px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    text-align: center;
                    width: 100%;
                    margin-bottom: 10px;
                    color: #555;
                }

                #reg_login .container1 .user .formBx form input {
                    position: relative;
                    width: 100%;
                    padding: 10px;
                    background: #f5f5f5;
                    color: #333;
                    border: 1px solid #ddd;
                    outline: none;
                    box-shadow: none;
                    margin: 8px 0;
                    font-size: 14px;
                    letter-spacing: 1px;
                    font-weight: 300;
                }

                    #reg_login .container1 .user .formBx form input:hover {
                        border: 1px solid #cde8fc;
                    }

                    #reg_login .container1 .user .formBx form input[type="submit"] {
                        max-width: 100px;
                        background: #eeba5e;
                        color: #000;
                        cursor: pointer;
                        font-size: 14px;
                        border: none;
                        font-weight: 500;
                        letter-spacing: 1px;
                    }

                        #reg_login .container1 .user .formBx form input[type="submit"]:hover {
                            transition: 0.5s;
                            background: #e9a527;
                        }

                #reg_login .container1 .user .formBx form .signup {
                    position: relative;
                    margin-top: 20px;
                    font-size: 12px;
                    letter-spacing: 1px;
                    color: #555;
                    text-transform: uppercase;
                    font-weight: 300;
                }

                    #reg_login .container1 .user .formBx form .signup a {
                        font-weight: 600;
                        text-decoration: none;
                        color: #0c85de;
                    }

        #reg_login .container1 .signupBx {
            pointer-events: none;
        }

        #reg_login .container1.active2 .signupBx {
            pointer-events: initial;
        }

        #reg_login .container1 .signupBx .formBx {
            left: 100%;
        }

        #reg_login .container1.active2 .signupBx .formBx {
            left: 0;
        }

        #reg_login .container1 .signupBx .imgBx {
            left: -100%;
        }

        #reg_login .container1.active2 .signupBx .imgBx {
            left: 0%;
        }

        #reg_login .container1 .signinBx .formBx {
            left: 0%;
        }

        #reg_login .container1.active2 .signinBx .formBx {
            left: 100%;
        }

        #reg_login .container1 .signinBx .imgBx {
            left: 0%;
        }

        #reg_login .container1.active2 .signinBx .imgBx {
            left: -100%;
        }

@media (max-width: 991px) {
    #reg_login .container1 {
        max-width: 400px;
    }

        #reg_login .container1 .imgBx {
            display: none;
        }

        #reg_login .container1 .user .formBx {
            width: 100%;
        }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.imgBx img {
    animation: float 3s ease-in-out infinite;
}
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 0rem; /* Match Bootstrap's .rounded */
}

    .img-container img {
        transition: transform 0.5s ease;
        display: block;
        width: 100%;
        height: auto;
        border-radius:0px;
    }

    .img-container:hover img {
        transform: scale(1.1);
    }

    .img-container .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); /* black overlay with opacity */
        opacity: 0;
        transition: opacity 0.5s ease;
        border-radius: 0.5rem; /* match image rounding */
    }

    .img-container:hover .overlay {
        opacity: 1;
    }
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px;
    padding: 10px 0;
    text-align: center;
}

.social-button {
    flex: 1 1 250px; /* Grow, shrink, and base width */
    max-width: 300px;
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: start;
    justify-content: start;
    transition: background-color 0.3s ease;
}

    .social-button i {
        margin-right: 8px;
        font-size: 1.2em;
    }

    /* Platform Colors */
    .social-button.instagram {
        background-color: #E1306C;
    }

        .social-button.instagram:hover {
            background-color: #c1275e;
            color: white;
        }

    .social-button.facebook {
        background-color: #3b5998;
    }

        .social-button.facebook:hover {
            background-color: #2d4373;
            color: white;
        }

    .social-button.youtube {
        background-color: #FF0000;
    }

        .social-button.youtube:hover {
            background-color: #cc0000;
            color: white;
        }
.img-wrapper {
    width: 100%;
    height: 400px; /* Set to whatever height fits your design */
    overflow: hidden;
    border-radius: 0px;
    position: relative;
}

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fills container and crops excess */
        display: block;
        transition: transform 0.5s ease; /* Smooth transition */
    }

    /* Hover effect */
    .img-wrapper:hover img {
        transform: scale(1.1); /* Zooms in slightly on hover */
    }

.event-list {
    list-style: none;
    padding: 20px;
    margin: 0 auto;
    background: #ebb826; /* light transparent white */
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #333;
    height: 150px;
    font-family: 'Segoe UI', sans-serif;
    transition: transform 0.3s ease;
}

    .event-list:hover {
        transform: scale(1.03);
    }

    .event-list li {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .event-list strong {
        display: block;
        font-size: 1.25rem;
        margin-bottom: 0px;
        color: #fe0100; /* Gold color for highlight */
    }
.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    gap: 15px;
    list-style: none;
    margin: 30px 0;
}

    .category-list li {
        background-color: #ff416c; /* gradient base color */
        background-image: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
        color: white;
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        text-align: center;
        min-width: 200px;
    }

        .category-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            background-image: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
        }

@media (max-width: 768px) {
    .category-list li {
        width: 100%;
        min-width: unset;
    }
}
.testimonial-slider {
  position: relative;
  width: 100%;
  margin: 0px auto;
  overflow: hidden;
  padding: 30px 20px;
  background-color: #fff5f5;
  /*border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
  text-align: center;
  min-height: 280px; /* ensure consistent height */
}


.testimonial-slide {
    display: none;
    transition: opacity 0.5s ease;
}
    .testimonial-slide p {
        text-align:center;
    }
    .testimonial-slide.active {
        display: block;
    }

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #ff4b2b;
}

.blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin: 0;
}

.blockquote-footer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
}

.arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background-color: #ebb826;
    color: #000;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 0;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .arrow:hover {
        background-color: #fe0100;
        color:#fff;
    }

    .arrow.prev {
        left: 10px;
    }

    .arrow.next {
        right: 10px;
    }

@media (max-width: 600px) {
    .testimonial-slider {
        padding: 20px;
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
    }

    .arrow {
        padding: 8px 12px;
    }
}
.testimonial-slide {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
    width: 100%;
    top: 0;
    left: 0;
}

    .testimonial-slide.active {
        opacity: 1;
        position: relative;
        z-index: 1;
    }
.owl-carousel.version-1 {
    position: relative;
    padding: 15px 35px 0;
}

.logo-slider-1 {
    width: 100%;
    margin: 0 auto 40px;
    text-align: center;
}

.owl-carousel .owl-item {
    background: #fff;
    padding: 0 0px;
}
    .owl-carousel .owl-item img {
        display: block;
        text-align: center;
        margin: auto;
    }


.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background-color: #f5fbff;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex: 0 0 100%;
}

.sponsor-item {
    flex: 0 0 22%;
    margin: 1%;
    text-align: center;
}

.sponsor-card {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .sponsor-card:hover {
        transform: translateY(-5px);
    }

    .sponsor-card img {
        width: 75%;
        height: auto;
        object-fit: contain;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    color: #000;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 0px 20px;
    height: 50px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

    .slider-btn.left {
        left: 10px;
    }

    .slider-btn.right {
        right: 10px;
    }

@media (max-width: 768px) {
    .sponsor-item {
        flex: 0 0 45%;
    }
}

@media (max-width: 480px) {
    .sponsor-item {
        flex: 0 0 100%;
    }

    .slider-slide {
        justify-content: center;
    }
}