/* General Body and Font */
*{
    margin: 0px;
    padding: 0px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #6894b8, #6610f2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 100px; /* Adjust as needed */
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6894b8, #6610f2);
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url("https://placehold.co/600x400");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
#heroCarousel .carousel-inner {
    pointer-events: none;
}
#heroCarousel .carousel-item * {
    pointer-events: auto;
}

/* Navbar */
.navbar {
    /* background-color: #007bff; */
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
}


.navbar-brand, .nav-link {
    color: #fff !important;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    /* background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4'); */
    /* background: rgb(34,193,195); */
background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

/* Adding Animations */
.wow {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #007bff, #6610f2);
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
    
    padding: 50px 0;
    text-align: center;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Service Section */
.service-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.service-description {
    font-size: 18px;
    color: #6c757d;
}

/* Product Cards (for dynamic products) */
.product-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
/* AOS Fix */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

#hero1{

    background-image: url("{% static 'images/hero1.png' %}");
    background-size: cover;
    background-position: center;
    height: 100vh;
}