/*Shree Ganeshay Namah*/

/* index.php */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}
.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.navbar .nav-link {
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}
.navbar .nav-link:hover {
    color: #ff6a00 !important;
}
.hero-section {
    background: url('/images/hero-banner.jpg') no-repeat center center/cover;
    height: 500px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.product-card:hover img {
    transform: scale(1.1) rotateY(10deg);
}
.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.product-card {
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff6a00, #ee0979, #ff6a00, #ff0099) 1;
}
.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: #ff6a00;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #222;
}
.contact-section .card {
    background: #f8f9fa;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.multicolor-border {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff6a00, #ee0979, #ff6a00, #ff0099) 1;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.highlight-text {
    color: #ff6a00;
    font-weight: 600;
}
.highlight-button {
    background-color: #ff6a00;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.highlight-button:hover {
    background-color: #ee0979;
}
.card-body h5 {
    color: #ff6a00;
    font-weight: 600;
}
/* AOS Scroll Animations */
.aos-animate {
    opacity: 1 !important;
}
.testimonial-card {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.testimonial-card .customer-name {
    font-weight: bold;
    color: #ff6a00;
}
.testimonial-card .testimonial-text {
    font-style: italic;
    color: #555;
}
.news-card {
    border-radius: 15px;
    background: #f8f9fa;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}