body{
    overflow-x: hidden;
}

.bannerwidth{
    width:100%;
    height:100vh !important;
}
@media(max-width:768px){
    .bannerwidth{
        width:100%;
        height:30vh !important;
    }
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.zero{
    margin: 0;
    padding: 0;
}
/* .......................2nd section */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px;
    background-color: #f4f4f8;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.countdown-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* Space between the number box and text */
}

.countdown-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.countdown-box small {
    font-size: 12px;
    color: red;
    font-weight: bold;
}

/* ...........................3rd sectionb marqueee........... */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;


    padding: 10px;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 15s linear infinite;
    gap: 70px; /* Spacing between images */
}

.marquee-content img {
    height: 50px; /* Set height for the images */
    width: auto;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* ....................................corosula section */
.carousel-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;

}

.carousel-title {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.carousel {
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-track-container {
    overflow: hidden;
    width: 80%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.carousel-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    width: 250px;
    flex: 0 0 auto;

}

.carousel-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.carousel-card h4 {
    margin: 10px 0;
    color: #333;
}

.carousel-card p {
    font-size: 14px;
    color: #555;
}

.carousel-btn {
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: #5a4bcf;
}

.view-all-btn {
    margin-top: 20px;
    padding: 10px 20px;
   background-color:  #F8F9FC;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
}
.view-all-btn2 {
    margin-top: 20px;
    padding: 10px 20px;
   background-color:  rgb(238,234,249);
    color: #5a4bcf;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    font-weight: bold;
}

.view-all-btn:hover {
    background-color: #5a4bcf;
}
.rowwidth{
    width:80%;
}
.flex2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media(max-width:768px){
    .rowwidth{
        width:100%;
    }
    .flex2{
        display: block;
    }
}

/* ======================================================================testimonials */

#carousel {
   width: 100%;
   margin: 0 auto;
   padding-bottom: 50px;
   position: relative; /* Make carousel container relative */
}

#carousel .carousel-inner {
   position: relative; /* Ensure carousel items are positioned correctly */
}

#carousel .carousel-item {
   color: #999;
   font-size: 14px;
   text-align: center;
   overflow: hidden;
   position: relative; /* Ensure items do not overlap */
}

#carousel .carousel-item a {
   color: #eb7245;
}

#carousel .img-box {
   width: 100px;
   height: 100px;
   margin: 0 auto;
   border-radius: 50%;
}

#carousel .img-box img {
   width: 100%;
   height: 100%;
   display: block;
   border-radius: 50%;
}

#carousel .testimonial {
   padding: 30px 0 10px;
}

#carousel .overview {
   text-align: center;
   padding-bottom: 5px;
}

#carousel .overview b {
   color: #333;
   font-size: 15px;
   text-transform: uppercase;
   display: block;
   padding-bottom: 5px;
}

#carousel .star-rating i {
   font-size: 18px;
   color: #ffdc12;
}

#carousel-controls {
   position: absolute;
   bottom: 10px; /* Adjust this value if needed */
   width: 100%;
   display: flex;
   justify-content: center !important;
   align-items: center !important;
   gap: 10px;
   z-index: 2; /* Ensure it stays above the carousel */
}

#carousel-control-prev, #carousel-control-next {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background: #5a4bcf00;
   text-shadow: none;
   border: 1px solid rgb(0, 0, 0);
   background-color: rgb(89, 79, 117);
   top: 4px;
   position: relative; /* Ensure buttons stay in place */
}

#carousel-control-prev,
#carousel-control-next {
   width: auto;
   height: auto;
}

#carousel .carousel-indicators {
   bottom: 15px;
}

#carousel .carousel-indicators li, #carousel .carousel-indicators li.active {
   width: 11px;
   height: 11px;
   margin: 1px 5px;
   border-radius: 50%;
}

#carousel .carousel-indicators li {
   background: #e2e2e2;
   border: none;
}

#carousel .carousel-indicators li.active {
   background: #888;
}

.bold {
   font-weight: bold;
}

.colorblack {
   color: black;
}

.shadow {
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

   padding: 2%;
}
.bluecolor{
    color:#5a4bcf;
    font-weight: bold;
}
.end{
    display: flex;justify-content: end;align-items: end;flex-direction: column;
}
.herodisplay2{
display:none;
}
@media(max-width:768px){
    .end{
        display: block;
    }
    .mobilehidden{
        display:none;
    }
.herodisplay1{
    display:none;
}
.herodisplay2{
    display:block;
    }
}
.button1{
    background-color: #582bc4;
    color: white;
}
.button1:hover{
    background-color: #401f8b;
    color: white;
}
/* Apply styles when the navigation link is dynamically active */
.nav-link.dynamic-active {
    color: #582bc4 !important;
    font-weight: bold;
}

.bg-footer{
    background-color: #2c1054;
    color: white;
    padding: 5%;
}
/* Apply styles when the navigation link is dynamically active */
.nav-link.footer-active {
    color: #ffffff !important;
    font-weight: bold;
}
.borderfooter{
    border-top: 1px solid white;
}
.abslte{
    position: absolute;z-index:2000;width:100%;
}
@media(max-width:768px) {
    .abslte{
     position:relative;
        z-index:2000;width:100%;
    }



}


/*...................signup....*/
.colorpuple{
    background-color: #401f8b !important;
    padding: 2% 5% !important;
    color: white;
    border-top-right-radius: 70px;
}

@media (max-width: 767px) {
    .paddsign{
        padding: 50% 0;
    }
}

/*................competition..........*/
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}
.category-btns .btn {
    border: 2px solid #401f8b;
    color: #401f8b;
    background-color: white;
    margin: 0 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.category-btns .btn.active {
    background-color: #401f8b;
    color: white;
}

/*===================================================================================================admin dashboard*/

.sidebar {
    width: 250px;
    background-color: #2c1054;
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
}
.bottm{
    position: fixed;
    bottom: 10px;
    background-color: #2c1054;

    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}
.widthicon{
    width: 20px;
}
.active-icon {
    display: inline-block;
}

.inactive-icon {
    display: none;
}
.sidebar a {
    text-decoration: none;
    color: white;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.3s;
}

.sidebar a:hover, .sidebar a.active {
    background-color: #ffffff;
    color: black;
}

.content {
    margin-left: 250px;
    padding: 20px;
    flex-grow: 1;
}

/* Hide the sidebar by default on small screens */
@media (max-width: 768px) {
    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background-color: #2c1054;
        z-index: 1050;
        overflow-y: auto;
        padding-top: 20px;
    }
    .first{
        margin-top: 50px;
    }
    .sidebar a {
        display: block;
        text-decoration: none;
        color: white;
        padding: 15px 20px;
    }

    .content {
        margin-left: 0;
    }

    .toggle-btn {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1100;
    }
}
.widthprofile{
    width: 40px;
}
.button1{
    background-color: white !important;
    color: #4c1a91 !important;
    border: 2px solid #4c1a91;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}
.button1:hover{
    background-color: #4c1a91 !important;
    color: white !important;
}
.table-actions button {
    margin-right: 5px;
}
