/* styles.css */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #222;
}

/* Colors */
.text-success,
.btn-outline-success:hover {
    color: #39FF14 !important; /* Neon Green */
}

.btn-success {
    background-color: #39FF14; /* Neon Green */
    border-color: #39FF14; /* Neon Green */
    color: #000;
}

.btn-success:hover {
    background-color: #32CD32;
    border-color: #32CD32;
    color: #000;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 600;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #39FF14; /* Neon Green */
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Hero Section Styles */
.hero-carousel-item {
    height: 80vh; /* Adjust height as needed */
    min-height: 500px;
    position: relative;
}

.hero-carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darkens image for better text readability */
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

/* About Section Styles */
#about i {
    transition: color 0.3s ease;
}

#about i:hover {
    color: #32CD32;
}

/* Product Card Styles */
.product-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Services Section Styles */
#services i {
    transition: color 0.3s ease;
}

#services i:hover {
    color: #32CD32;
}

/* Contact Section Styles */
#contactForm .form-control:focus {
    border-color: #39FF14;
    box-shadow: 0 0 0 0.2rem rgba(57, 255, 20, 0.25); /* Neon Green */
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #39FF14; /* Neon Green */
}

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