body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #00000048;
    padding: 1rem;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}



.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
    color: #BE30C4;
}

.carousel-caption p {
    font-size: 24px;
    color: #fff;
}

.btn-primary {
    background-color: #BE30C4;
    border-color: #BE30C4;
}

.btn-primary:hover {
    background-color: #3B176D;
    border-color: #3B176D;
}


.about-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.about-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #BE30C4;
    border-color: #BE30C4;
}

.btn-primary:hover {
    background-color: #3B176D;
    border-color: #3B176D;
}

.services-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.services-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.animated-icon {
    font-size: 36px;
    color: #BE30C4;
    margin-bottom: 20px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-primary {
    background-color: #BE30C4;
    border-color: #BE30C4;
}

.btn-primary:hover {
    background-color: #3B176D;
    border-color: #3B176D;
}


.brands-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.brands-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

.brand-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.brand-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.brand-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}


.gallery-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.gallery-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

.gallery-card {
    position: relative;
    margin-bottom: 30px;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

form {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.map {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.footer {
    background-color: #3B176D;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #BE30C4;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}