
/*** 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 ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    background-color: #5c3f8f;
    color: white;
}

/*** 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: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color:white;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color:white;
}

.btn.btn-secondary:hover {
    background: #5c3f8f;
    border: 1px solid #5c3f8f;
}

.btn.btn-light {
    color: #5c3f8f;
}

.btn.footer-btn:hover {
    color:white;
    background: #5c3f8f;
    border: 1px solid #5c3f8f;
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/


.btn.navbar-btn {
    
    background: white;
   
}

.topbar{
background-color: #5c3f8f;
color: white;
}
.nav-bar {
    background:white;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: black;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: black;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #5c3f8f;
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: #5c3f8f;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 100px;
}


.dropdown .dropdown-menu a:hover {
    background: #5c3f8f;
    color:white;
}




.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: white;
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}
@media screen and (min-width:0px) and (max-width:320px) {
    .nav-link.btn{
margin-top: 10px;
    }
}
.nav-link.btn{
    margin-left: 5px;
}
@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid #5c3f8f;
        color: #5c3f8f;
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
   
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #5c3f8f;
    border-radius: 0 30px 30px 0;
    transition: .5s;
    opacity: 1;
}


.carousel-control-next {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #5c3f8f;
    border-radius: 30px 0 0 30px;
    transition: .5s;
    opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #5D486E;
    border-radius: 24px;
    margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
    background: #5c3f8f !important;
    border: 2px solid #5c3f8f;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
        height: 400px;
    }

    .carousel-item img {
        height: 400px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
}



/*** Carousel End ***/


/*** Footer Start ***/
.footer {
    background: #212529 !important;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #5c3f8f;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: #5c3f8f;
}

.footer .footer-item .footer-btn a:hover i {
    color: #5c3f8f !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #212529;
}
/*** copyright end ***/

/* 404 page */
.bg-breadcrumb{
    background-image: url("../img/breadcrumb.jpg");
    background-size: cover;
    height: 400px;
}




/*** Contact Start ***/
.contact {
    background-color: #5c3f8f;
    border-style: dotted;
    border-color: white;
}
.contact-btn{
    background-color: white;
     color: #5c3f8f;
     border-radius: 10px;
}
.contact-btn:hover{
    background-color: #5c3f8f;
     color: white;
     border-radius: 10px;
     border: 1px solid white;
}
/*** Contact End ***/



/* cantact-form */
.success-message {
    background-color: #d4edda;
    color: #155724;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
}

/* About Section Styles */
.about-sec {
    background: #fff;
    border-left: 6px solid #5c3f8f;
    border-radius: 8px;
    padding: 48px 28px;
    margin-top: 36px;
}
.about-sec .lead {
    color: #3b2a4a;
    font-size: 1.05rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    margin-top: 18px;
}
.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 8px;
    border-radius: 8px;
    transition: background .2s ease, transform .15s ease;
}
.about-feature:hover {
    background: rgba(92,63,143,0.04);
    transform: translateY(-3px);
}
.about-feature i {
    color: #5c3f8f;
    font-size: 20px;
    margin-top: 6px;
    width: 28px;
}
.about-cta {
    margin-top: 22px;
}

@media (max-width: 991px) {
    .about-sec {
        padding: 36px 18px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}