*{
    margin: 0;
    padding: 0;
}
body{
    font-family: sans-serif;
}

#nav-bar{
    position: sticky;
    top: 0;
    z-index:10;
}

.navbar{
    padding: 0 !important;
    background-color: black !important;
}

.navbar-brand img{
    height: 100px;
    padding-left: 20px;
}

.navbar-nav li{
    padding: 0 10px;

}

.navbar-nav li a {

    color: #fff !important;
    font-weight: 600;
    float: right;
    text-align: left;
}

.fa-bars {
    color: #fff;
    font-size: 30px !important;
}

.navbar-toggler{
    outline: none !important;
}


/* General carousel styling */
.carousel-inner img {
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Add a background for better visibility */
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background-color: rgba(0, 0, 0, 0.1); /* Slight background to make controls visible */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}


/* services */

#services{

    padding: 80px 0;
}

.service-img{
    width: 100px;
    margin-top: 20px;
}

.services{
    padding: 20px;
}

.services h4 {

    padding: 5px;
    margin-top: 25px;
    text-transform: uppercase;
}

.title::before{

    content: '';
    background: #7b1798;
    height: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(63px);
}

.title::after{

    content: '';
    background: #7b1798;
    height: 10px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: block;
    transform: translateY(8px);
}

#services .btn-primary{
    box-shadow: none;
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right,#a517ba,#5f1782);
}


/* ABOUT US  */


#about-us{
   background: #f8f9fa;
   padding-bottom:50px;
   padding-top: 50px;
}

.about-title{
    font-size: 40px;
    font-weight: 600;
    margin-top: 8%;
}
#about-us ul li {
    margin: 10px 0;
}

#about-us ul {
    margin-left: 10px;
}
/* task list */








/*                TESTIMONIALS                */

#testimonials{
    margin-top: 100px;
}

.testimonials{
    border-left: 4px solid #7b1798;
    margin-top: 50px;
    margin-bottom: 50px;
}
.testimonials img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin: 0 10px;
}
.user-details{
    display: inline-block;
    font-size: 12px;
}





/*    --------------footer------------ */

#footer{
    background: black !important;
    color: #fff;
    margin-top: 30px;
}

.mt-3{
    margin-top: 2rem !important;
}

.footer-img{
    width: 100%;
}

.footer-box{
    padding: 10px;
}
.footer-box img{
    width: 120px;
    margin-bottom: 1px;
}

.footer-box  .fa {
       
    margin-right: 8px;
    font-size: 25px;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 7px;
    border-radius: 2px;
    
}

.footer-box .form-control {
    box-shadow: none !important;
    border: none;
    border-radius: 0;
    margin-top: 25px;
    max-width: 250px;

}



html {
    scroll-behavior: smooth;
}


@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}




/* Basic card styling */
.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
}
.card img{
    width: 10vw;
}
.card-body {
    padding: 20px;
    gap: 2rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    margin-top: 10px;
}

/* Hover effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Optional: Add a subtle animation to the card */
@keyframes card-hover {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.card {
    animation: card-hover 2s infinite ease-in-out;
}
@media only screen and (max-width: 600px) {
    /* Basic card styling */
.card-container {
    margin: auto;
}
.card-body {
    gap: 0.2rem;
    flex-direction: column;
}
.card img{
    width: 30vw;
    margin: auto;
}
  }